Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libjava / javax / swing / colorchooser / AbstractColorChooserPanel.java
blob4ecfab4a3f31bf129a1ff7ef8ad4eb3693826be7
1 /* AbstractColorChooserPanel.java --
2 Copyright (C) 2002, 2004 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package javax.swing.colorchooser;
41 import java.awt.Color;
42 import java.awt.Graphics;
44 import javax.swing.Icon;
45 import javax.swing.JColorChooser;
46 import javax.swing.JPanel;
48 /**
49 * AbstractColorChooserPanel
51 * @author Andrew Selkirk
52 * @version 1.0
54 public abstract class AbstractColorChooserPanel extends JPanel
56 /** DOCUMENT ME! */
57 private static final long serialVersionUID = -977469671210173863L;
59 /** The chooser associated with this panel. */
60 private JColorChooser chooser;
62 /**
63 * This is the constructor for the AbstractColorChooserPanel.
65 public AbstractColorChooserPanel()
67 } // AbstractColorChooserPanel()
69 /**
70 * This method returns the name displayed in the tab for this chooser panel.
72 * @return The name displayed in the JTabbedPane's tabs.
74 public abstract String getDisplayName();
76 /**
77 * This method updates the chooser panel when the JColorChooser's color has
78 * changed.
80 public abstract void updateChooser();
82 /**
83 * This method constructs and does any initialization necessary for the
84 * chooser panel.
86 protected abstract void buildChooser();
88 /**
89 * This method sets the small icon used in the JTabbedPane for this chooser
90 * panel.
92 * @return The small icon used in the JTabbedPane.
94 public abstract Icon getSmallDisplayIcon();
96 /**
97 * This method sets the large icon useed in the jTabbedPane for this chooser
98 * panel.
100 * @return The large icon.
102 public abstract Icon getLargeDisplayIcon();
105 * This method installs the chooser panel for the given JColorChooser.
107 * @param chooser The JColorChooser that will have this panel installed.
109 public void installChooserPanel(JColorChooser chooser)
111 this.chooser = chooser;
112 buildChooser();
113 } // installChooserPanel()
116 * This method removes the chooser panel from the given JColorChooser and
117 * does any necessary clean up for the chooser panel.
119 * @param chooser The JColorChooser that is having this panel removed.
121 public void uninstallChooserPanel(JColorChooser chooser)
123 this.chooser = null;
124 } // uninstallChooserPanel()
127 * This method returns the ColorSelectionModel for the JColorChooser
128 * associated with this chooser panel.
130 * @return The ColorSelectionModel for the JColorChooser associated with
131 * this chooser panel.
133 public ColorSelectionModel getColorSelectionModel()
135 if (chooser != null)
136 return chooser.getSelectionModel();
137 return null;
138 } // getColorSelectionModel()
141 * This method returns the current color stored in the model for this
142 * chooser panel.
144 * @return The current color.
146 protected Color getColorFromModel()
148 if (chooser != null)
149 return chooser.getColor();
150 return null;
151 } // getColorFromModel()
154 * This method paints the chooser panel.
156 * @param graphics The Graphics object to paint with.
158 public void paint(Graphics graphics)
160 super.paint(graphics);
161 } // paint()
162 } // AbstractColorChooserPanel