/* * Copyright (c) 2006-2010 Chris Smith, Shane Mc Cormack, Gregory Holmes * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.dmdirc.addons.ui_swing.components.colours; import com.dmdirc.addons.ui_swing.components.colours.ColourPickerDialog; import com.dmdirc.ui.messages.ColourManager; import com.dmdirc.util.ListenerList; import com.dmdirc.addons.ui_swing.UIUtilities; import java.awt.Color; import java.awt.Dimension; import java.awt.Insets; import java.awt.Window; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JPanel; import net.miginfocom.swing.MigLayout; /** * Colour chooser widget. */ public final class OptionalColourChooser extends JPanel implements ActionListener { /** * A version number for this class. It should be changed whenever the class * structure is changed (or anything else that would prevent serialized * objects being unserialized with the new class). */ private static final long serialVersionUID = 1; /** Enabled checkbox. */ private JCheckBox enabled; /** Edit button. */ private JButton editButton; /** Panel to show the colour preview. */ private JPanel previewPanel; /** Colours picking dialog. */ private ColourPickerDialog cpd; /** show irc colours. */ private boolean showIRC; /** show hex colours. */ private boolean showHex; /** The value of this component. */ private String value; /** Our listeners. */ private final ListenerList listeners = new ListenerList(); /** Parent window. */ private Window window; /** Creates a new instance of ColourChooser. */ public OptionalColourChooser() { this("", false, true, true); } /** * Creates a new instance of ColourChooser. * * @param window Parent window * * @since 0.6 */ public OptionalColourChooser(final Window window) { this("", false, true, true, window); } /** * Creates a new instance of ColourChooser. * * @param initialColour Snitial colour * @param initialState Initial state * @param ircColours Show irc colours * @param hexColours Show hex colours */ public OptionalColourChooser(final String initialColour, final boolean initialState, final boolean ircColours, final boolean hexColours) { this(initialColour, initialState, ircColours, hexColours, null); } /** * Creates a new instance of ColourChooser. * * @param initialColour Snitial colour * @param initialState Initial state * @param ircColours Show irc colours * @param hexColours Show hex colours * @param window Parent window * * @since 0.6 */ public OptionalColourChooser(final String initialColour, final boolean initialState, final boolean ircColours, final boolean hexColours, final Window window) { super(); this.window = window; showIRC = ircColours; showHex = hexColours; value = initialColour; editButton = new JButton("Edit"); if (UIUtilities.isWindowsUI()) { editButton.setMargin(new Insets(2, 4, 2, 4)); } else { editButton.setMargin(new Insets(0, 2, 0, 2)); } editButton.addActionListener(this); if (!initialState) { editButton.setEnabled(false); } previewPanel = new JPanel(); previewPanel.setPreferredSize(new Dimension(40, 10)); previewPanel.setBorder(BorderFactory.createLineBorder(Color.DARK_GRAY)); enabled = new JCheckBox(); enabled.setPreferredSize(new Dimension(40, 40)); enabled.setSelected(initialState); enabled.addActionListener(this); setLayout(new MigLayout("fill, ins 0")); add(enabled, "sgy all"); add(previewPanel, "growx, pushx, sgy all"); add(editButton, "sgy all"); updateColour(initialColour); } /** Sets the colour back to white. */ public void clearColour() { value = "ffffff"; previewPanel.setBackground(ColourManager.getColour("ffffff")); previewPanel.setToolTipText(""); } /** {@inheritDoc} */ @Override public boolean isEnabled() { return enabled.isSelected(); } /** * Returns the selected colour from this component. * * @return This components colour, as a string */ public String getColour() { return value; } /** * Updates the colour panel. * @param newColour The new colour to use. */ private void updateColour(final String newColour) { if (newColour.isEmpty()) { previewPanel.setBackground(ColourManager.getColour("ffffff")); previewPanel.setToolTipText(""); } else { previewPanel.setBackground(ColourManager.parseColour(newColour)); previewPanel.setToolTipText(newColour); } } /** * {@inheritDoc}. * * @param e Action event */ @Override public void actionPerformed(final ActionEvent e) { if (e.getSource() == editButton) { cpd = new ColourPickerDialog(showIRC, showHex, window); cpd.addActionListener(this); cpd.display(editButton); } else if (e.getSource() == enabled) { editButton.setEnabled(enabled.isSelected()); fireActionEvent(); } else { value = e.getActionCommand(); updateColour(e.getActionCommand()); fireActionEvent(); cpd.dispose(); } } /** * Adds an action listener to this optional colour chooser. Action * listeners are notified whenever the state changes in some way. * * @param l The listener to be added */ public void addActionListener(final ActionListener l) { listeners.add(ActionListener.class, l); } /** * Informs all action listeners that an action has occured. */ protected void fireActionEvent() { for (ActionListener listener : listeners.get(ActionListener.class)) { listener.actionPerformed(new ActionEvent(this, 1, "stuffChanged")); } } /** * Sets the Parent window. * * @param window Parent window */ public void setWindow(final Window window) { this.window = window; } }