@ -1,5 +1,7 @@
package com.fr.widgettheme.designer ;
package com.fr.widgettheme.designer ;
import com.fine.theme.utils.FineUIStyle ;
import com.fine.theme.utils.FineUIUtils ;
import com.fr.design.dialog.BasicPane ;
import com.fr.design.dialog.BasicPane ;
import com.fr.design.gui.icheckbox.UICheckBox ;
import com.fr.design.gui.icheckbox.UICheckBox ;
import com.fr.design.gui.ilable.UILabel ;
import com.fr.design.gui.ilable.UILabel ;
@ -9,6 +11,7 @@ import com.fr.design.layout.FRGUIPaneFactory;
import com.fr.widgettheme.control.attr.WidgetDisplayEnhanceMarkAttr ;
import com.fr.widgettheme.control.attr.WidgetDisplayEnhanceMarkAttr ;
import javax.swing.JPanel ;
import javax.swing.JPanel ;
import javax.swing.JTextArea ;
import java.awt.BorderLayout ;
import java.awt.BorderLayout ;
import java.awt.Color ;
import java.awt.Color ;
@ -39,9 +42,8 @@ public class WidgetThemeDisplayConfigPane extends BasicPane {
northPane . add ( row ( cell ( widgetEnhance ) ) . getComponent ( ) ) ;
northPane . add ( row ( cell ( widgetEnhance ) ) . getComponent ( ) ) ;
JPanel southPane = FRGUIPaneFactory . createBorderLayout_S_Pane ( ) ;
JPanel southPane = FRGUIPaneFactory . createBorderLayout_S_Pane ( ) ;
UILabel label = new UILabel ( Toolkit . i18nText ( "Fine-Design_Widget_Display_Enhance_Tip" ) ) ;
JTextArea tipText = FineUIUtils . createAutoWrapTipLabel ( Toolkit . i18nText ( "Fine-Design_Widget_Display_Enhance_Tip" ) ) ;
label . setForeground ( Color . GRAY ) ;
southPane . add ( tipText ) ;
southPane . add ( label ) ;
this . add ( column ( 10 , cell ( northPane ) , cell ( southPane ) ) . getComponent ( ) ) ;
this . add ( column ( 10 , cell ( northPane ) , cell ( southPane ) ) . getComponent ( ) ) ;
}
}