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/Motif 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 委托或查看Synthetic 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 回答