|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.fr.design.widget; |
|
|
|
|
|
|
|
|
|
import com.formdev.flatlaf.util.ScaledEmptyBorder; |
|
|
|
|
import com.fr.design.constants.UIConstants; |
|
|
|
|
import com.fr.design.gui.ibutton.UIHeadGroup; |
|
|
|
|
import com.fr.design.layout.FRGUIPaneFactory; |
|
|
|
@ -28,9 +29,10 @@ public class EastCellWidgetCardPane extends CellWidgetCardPane {
|
|
|
|
|
|
|
|
|
|
this.removeAll(); |
|
|
|
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
|
this.tabbedPane = new CardLayout(); |
|
|
|
|
|
|
|
|
|
tabbedPane = new CardLayout(); |
|
|
|
|
center = new JPanel(tabbedPane); |
|
|
|
|
this.add(center, BorderLayout.CENTER); |
|
|
|
|
|
|
|
|
|
final String[] tabTitles = new String[]{com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Attribute"), com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Event"), com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Widget_Mobile_Terminal")}; |
|
|
|
|
tabsHeaderIconPane = new UIHeadGroup(tabTitles) { |
|
|
|
|
@Override |
|
|
|
@ -38,8 +40,11 @@ public class EastCellWidgetCardPane extends CellWidgetCardPane {
|
|
|
|
|
tabbedPane.show(center, tabTitles[index]); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
tabsHeaderIconPane.setBorder(BorderFactory.createMatteBorder(1, 0, 0, 0, UIConstants.SHADOW_GREY)); |
|
|
|
|
this.add(tabsHeaderIconPane, BorderLayout.NORTH); |
|
|
|
|
JPanel wrapperPane = new JPanel(new BorderLayout()); |
|
|
|
|
wrapperPane.add(tabsHeaderIconPane, BorderLayout.NORTH); |
|
|
|
|
wrapperPane.add(center, BorderLayout.CENTER); |
|
|
|
|
wrapperPane.setBorder(new ScaledEmptyBorder(0, 10, 0, 10)); |
|
|
|
|
this.add(wrapperPane, BorderLayout.CENTER); |
|
|
|
|
Component component = initTabPane(); |
|
|
|
|
center.add(component, com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Attribute")); |
|
|
|
|
center.add(getEventTabPane(), com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Event")); |
|
|
|
|