List of usage examples for javax.swing JToggleButton setBackground
@BeanProperty(preferred = true, visualUpdate = true, description = "The background color of the component.") public void setBackground(Color bg)
From source file:com.maxl.java.amikodesk.AMiKoDesk.java
private static void setupToggleButton(JToggleButton button) { button.setBackground(m_but_color_bg); button.setFocusPainted(false);/*from w ww. ja v a2 s . c om*/ button.setBorder(new CompoundBorder(new LineBorder(m_but_color_bg), new EmptyBorder(0, 3, 0, 0))); button.setHorizontalAlignment(SwingConstants.LEFT); }
From source file:com.maxl.java.amikodesk.AMiKoDesk.java
private static void setupButton(JToggleButton button, String toolTipText, String rolloverImg, String selectedImg) {//from w ww. ja v a 2 s . c om button.setFont(new Font("Dialog", Font.PLAIN, 12)); button.setVerticalTextPosition(SwingConstants.BOTTOM); button.setHorizontalTextPosition(SwingConstants.CENTER); button.setText(toolTipText); button.setRolloverIcon(new ImageIcon(Constants.IMG_FOLDER + rolloverImg)); button.setSelectedIcon(new ImageIcon(Constants.IMG_FOLDER + selectedImg)); button.setBackground(m_selected_but_color); button.setToolTipText(toolTipText); // Remove border Border emptyBorder = BorderFactory.createEmptyBorder(); button.setBorder(emptyBorder); // Set adequate size button.setPreferredSize(new Dimension(32, 32)); }
From source file:org.datacleaner.windows.AnalysisJobBuilderWindowImpl.java
private JToggleButton createViewToggleButton(final String text, final String iconPath) { final ImageIcon icon = imageManager.getImageIcon(iconPath); final JToggleButton button = new JToggleButton(text, icon); button.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)); button.setFont(WidgetUtils.FONT_SMALL); button.setForeground(WidgetUtils.BG_COLOR_BRIGHTEST); button.setBackground(WidgetUtils.BG_COLOR_DARK); button.setBorderPainted(false);/*from w ww . j a v a 2s . c om*/ button.setBorder(new CompoundBorder(WidgetUtils.BORDER_THIN, new EmptyBorder(0, 4, 0, 4))); return button; }
From source file:org.tinymediamanager.ui.dialogs.ImageChooserDialog.java
@SuppressWarnings({ "unchecked", "rawtypes" })
private void addImage(BufferedImage originalImage, final MediaArtwork artwork) {
Point size = null;/*w ww . j av a 2 s . c om*/
GridBagLayout gbl = new GridBagLayout();
switch (type) {
case FANART:
case CLEARART:
case THUMB:
case DISC:
gbl.columnWidths = new int[] { 130 };
gbl.rowHeights = new int[] { 180 };
size = ImageCache.calculateSize(300, 150, originalImage.getWidth(), originalImage.getHeight(), true);
break;
case BANNER:
case LOGO:
case CLEARLOGO:
gbl.columnWidths = new int[] { 130 };
gbl.rowHeights = new int[] { 120 };
size = ImageCache.calculateSize(300, 100, originalImage.getWidth(), originalImage.getHeight(), true);
break;
case POSTER:
default:
gbl.columnWidths = new int[] { 180 };
gbl.rowHeights = new int[] { 270 };
size = ImageCache.calculateSize(150, 250, originalImage.getWidth(), originalImage.getHeight(), true);
break;
}
gbl.columnWeights = new double[] { Double.MIN_VALUE };
gbl.rowWeights = new double[] { Double.MIN_VALUE };
JPanel imagePanel = new JPanel();
imagePanel.setLayout(gbl);
GridBagConstraints gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.BOTH;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.gridwidth = 3;
gbc.insets = new Insets(5, 5, 5, 5);
JToggleButton button = new JToggleButton();
button.setBackground(Color.white);
button.setUI(toggleButtonUI);
button.setMargin(new Insets(10, 10, 10, 10));
ImageIcon imageIcon = new ImageIcon(Scalr.resize(originalImage, Scalr.Method.BALANCED, Scalr.Mode.AUTOMATIC,
size.x, size.y, Scalr.OP_ANTIALIAS));
button.setIcon(imageIcon);
button.putClientProperty("MediaArtwork", artwork);
buttonGroup.add(button);
buttons.add(button);
imagePanel.add(button, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 1;
gbc.anchor = GridBagConstraints.LAST_LINE_START;
gbc.insets = new Insets(0, 5, 0, 0);
JComboBox cb = null;
if (artwork.getImageSizes().size() > 0) {
cb = new JComboBox(artwork.getImageSizes().toArray());
} else {
cb = new JComboBox(new String[] { originalImage.getWidth() + "x" + originalImage.getHeight() });
}
button.putClientProperty("MediaArtworkSize", cb);
imagePanel.add(cb, gbc);
// should we provide an option for extrathumbs
if (mediaType == MediaType.MOVIE && type == ImageType.FANART
&& MovieModuleManager.MOVIE_SETTINGS.isImageExtraThumbs()) {
gbc = new GridBagConstraints();
gbc.gridx = 1;
gbc.gridy = 1;
gbc.anchor = GridBagConstraints.LINE_END;
JLabel label = new JLabel("Extrathumb");
imagePanel.add(label, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 2;
gbc.gridy = 1;
gbc.anchor = GridBagConstraints.LINE_END;
JCheckBox chkbx = new JCheckBox();
button.putClientProperty("MediaArtworkExtrathumb", chkbx);
imagePanel.add(chkbx, gbc);
}
// should we provide an option for extrafanart
if (mediaType == MediaType.MOVIE && type == ImageType.FANART
&& MovieModuleManager.MOVIE_SETTINGS.isImageExtraFanart()) {
gbc = new GridBagConstraints();
gbc.gridx = 1;
gbc.gridy = MovieModuleManager.MOVIE_SETTINGS.isImageExtraThumbs() ? 2 : 1;
gbc.anchor = GridBagConstraints.LINE_END;
JLabel label = new JLabel("Extrafanart");
imagePanel.add(label, gbc);
gbc = new GridBagConstraints();
gbc.gridx = 2;
gbc.gridy = MovieModuleManager.MOVIE_SETTINGS.isImageExtraThumbs() ? 2 : 1;
gbc.anchor = GridBagConstraints.LINE_END;
JCheckBox chkbx = new JCheckBox();
button.putClientProperty("MediaArtworkExtrafanart", chkbx);
imagePanel.add(chkbx, gbc);
}
/* show image button */
gbc.gridx = 0;
gbc.gridy++;
gbc.anchor = GridBagConstraints.LAST_LINE_START;
gbc.gridwidth = 3;
gbc.insets = new Insets(0, 0, 0, 0);
JButton btnShowImage = new JButton("<html><font color=\"#0000CF\"><u>"
+ BUNDLE.getString("image.showoriginal") + "</u></font></html>");
btnShowImage.setBorderPainted(false);
btnShowImage.setFocusPainted(false);
btnShowImage.setContentAreaFilled(false);
btnShowImage.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
ImagePreviewDialog dialog = new ImagePreviewDialog(artwork.getDefaultUrl());
dialog.setVisible(true);
}
});
imagePanel.add(btnShowImage, gbc);
panelImages.add(imagePanel);
panelImages.validate();
panelImages.getParent().validate();
}