2

カスタム ボタンを作成していますが、ほとんどの組み込み PLAF で正しく表示されません。

これが私のコードです

public MyButton(String text, Icon icon) {
    if (icon == null) icon = createDefaultIcon();

    mainButton = new JButton(text);
    popupButton = new JButton(icon);

    removeBorder(mainButton);
    removeBorder(popupButton);

    setModel(new DefaultButtonModel());
    setBorder(UIManager.getBorder("Button.border"));

    int popupButtonWidth = popupButton.getPreferredSize().width;
    int popupButtonHeight = mainButton.getPreferredSize().height;
    Dimension popupButtonSize = new Dimension(popupButtonWidth, popupButtonHeight);

    popupButton.setMinimumSize(popupButtonSize);
    popupButton.setPreferredSize(popupButtonSize);
    popupButton.setMaximumSize(popupButtonSize);

    setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
    add(mainButton);
    add(new JSeparator(VERTICAL));
    add(popupButton);
}

private void removeBorder(JButton button) {
    Border border = button.getBorder();

    if (border instanceof CompoundBorder) {
         button.setBorder(((CompoundBorder) border).getInsideBorder());
    } else {
        button.setBorder(BorderFactory.createEmptyBorder());
    }
}

私のコンピューターにインストールされたPLAFでボタンがどのように見えるかを次に示します

金属

私のカスタム ボタン メタル PLAF の例

ニンバス

私のカスタム ボタン Nimbus PLAF の例

CDE/モチーフ

私のカスタム ボタン CDE/モチーフ PLAF の例

Mac OS X

私のカスタム ボタン Mac OS PLAF の例

CDE/Motif は、正しく動作する唯一のものです。いくつかの ButtonUI のソースを調べたところ、背景色と境界線を無視できるようです。残念ながら、背景色と境界線を設定する必要があります。組み込みの PLAF を正しくサポートするカスタム ボタンを取得するにはどうすればよいですか?

編集: 要求に応じて、画像を作成するために使用したコードを次に示します

public class MyButtonDemo implements Runnable {

    public void run() {
        // Change the array index to get a different PLAF
        try {
            UIManager.setLookAndFeel(UIManager.getInstalledLookAndFeels()[0].getClassName());
        } catch (Exception ignored) { }

        JFrame frame = new JFrame();
        frame.getContentPane().setLayout(new FlowLayout());
        frame.getContentPane().add(new MyButton("My Button", null);
        frame.getContentPane().add(new JButton("Normal Button"));
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new MyButtonDemo());
    }

}
4

2 に答える 2

0

プラグイン可能なルック アンド フィールの素晴らしい世界へようこそ。私が考えることができる唯一の本当の選択肢は、提供することです。各プラットフォームの UI デリゲートを確認するか、Syththetic UIを参照してください。

于 2012-07-28T10:09:50.610 に答える
0

私が何をしたかはわかりませんが、Nimbus 以外のすべてで機能しています。これがコードです

public MyButton(String text, Icon icon) {
    arrowIcon = createDefaultArrowIcon();
    mainButton = new JButton(text, icon);
    popupButton = new JButton(arrowIcon);

    mainButton.setBorder(BorderFactory.createEmptyBorder());
    popupButton.setBorder(BorderFactory.createEmptyBorder());

    setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
    add(mainButton);
    add(new JSeparator(VERTICAL));
    add(popupButton);

    setModel(new DefaultButtonModel());
    init(null, null);
}

@Override
public void updateUI() {
    setUI((ButtonUI)UIManager.getUI(this));
}

@Override
public String getUIClassID() {
    return "ButtonUI";
}
于 2012-07-30T00:46:16.193 に答える