public BottomLegendToolbar(ProjectFrame frame, LayerLegendPanel panel,
GeOxygeneApplication appli) {
super();
this.setFrame(frame);
this.setPanel(panel);
this.setAppli(appli);
this.initGeomBtn = new JButton(new ShowIniGeomAction(appli));
this.rawDisplayBtn = new JToggleButton(new RawDisplayAction());
this.idDisplayBtn = new JToggleButton(new DisplayIdAction());
this.eliminatedBtn = new JToggleButton(new ShowEliminatedAction());
this.add(rawDisplayBtn);
this.add(initGeomBtn);
this.add(idDisplayBtn);
this.add(eliminatedBtn);
this.setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
this.setFloatable(false);
this.setOrientation(HORIZONTAL);
}
BottomLegendToolbar.java 文件源码
java
阅读 34
收藏 0
点赞 0
评论 0
项目:geoxygene
作者:
评论列表
文章目录