本文整理匯總了Java中javax.swing.JColorChooser.addChooserPanel方法的典型用法代碼示例。如果您正苦於以下問題:Java JColorChooser.addChooserPanel方法的具體用法?Java JColorChooser.addChooserPanel怎麽用?Java JColorChooser.addChooserPanel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JColorChooser
的用法示例。
在下文中一共展示了JColorChooser.addChooserPanel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getStaticChooser
import javax.swing.JColorChooser; //導入方法依賴的package包/類
/** Gets <code>staticChooser</code> instance. */
public static JColorChooser getStaticChooser(ColorEditor ce) {
JColorChooser staticChooser = new JColorChooser(new SuperColorSelectionModel())
{
public void setColor (Color c) {
if (c == null) return;
super.setColor (c);
}
};
staticChooser.addChooserPanel (
new NbColorChooserPanel (AWT_PALETTE, getAWTColorNames(), awtColors,
getString ("CTL_AWTPalette"), ce)
);
initSwingConstants();
staticChooser.addChooserPanel (
new NbColorChooserPanel (SWING_PALETTE, swingColorNames, swingColors,
getString ("CTL_SwingPalette"), ce)
);
staticChooser.addChooserPanel (
new NbColorChooserPanel (SYSTEM_PALETTE, getSystemColorNames(), systemColors,
getString ("CTL_SystemPalette"), ce)
);
return staticChooser;
}
示例2: showDialog
import javax.swing.JColorChooser; //導入方法依賴的package包/類
public static Color showDialog(Component component, String title,
Color initial) {
JColorChooser choose = new JColorChooser(initial);
JDialog dialog = createDialog(component, title, true, choose, null, null);
AbstractColorChooserPanel[] panels = choose.getChooserPanels();
for (AbstractColorChooserPanel accp : panels) {
choose.removeChooserPanel(accp);
}
GrayScaleSwatchChooserPanel grayScaleSwatchChooserPanelFreeStyle = new GrayScaleSwatchChooserPanel();
GrayScalePanel grayScalePanelFreeStyle = new GrayScalePanel();
choose.addChooserPanel(grayScaleSwatchChooserPanelFreeStyle);
choose.addChooserPanel(grayScalePanelFreeStyle);
dialog.getContentPane().add(choose);
dialog.pack();
dialog.setVisible(true);//.show();
return choose.getColor();
}