]> Pileus Git - ~andy/gtk/blob - gtk/gtkcolorsel.h
d511b037752782eea834d0b954a9f393372aa889
[~andy/gtk] / gtk / gtkcolorsel.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_COLORSEL_H__
28 #define __GTK_COLORSEL_H__
29
30 #include <gtk/gtkwindow.h>
31 #include <gtk/gtkvbox.h>
32 #include <gtk/gtkframe.h>
33 #include <gtk/gtkpreview.h>
34 #include <gtk/gtkbutton.h>
35 #include <gtk/gtkentry.h>
36 #include <gtk/gtkhbox.h>
37 #include <gtk/gtklabel.h>
38 #include <gtk/gtkmain.h>
39 #include <gtk/gtksignal.h>
40 #include <gtk/gtkmisc.h>
41 #include <gtk/gtkrange.h>
42 #include <gtk/gtkscale.h>
43 #include <gtk/gtkhscale.h>
44 #include <gtk/gtktable.h>
45 #include <gtk/gtkeventbox.h>
46
47
48 #ifdef __cplusplus
49 extern "C" {
50 #endif /* __cplusplus */
51
52
53 #define GTK_COLOR_SELECTION(obj)          GTK_CHECK_CAST (obj, gtk_color_selection_get_type (), GtkColorSelection)
54 #define GTK_COLOR_SELECTION_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_color_selection_get_type (), GtkColorSelectionClass)
55 #define GTK_IS_COLOR_SELECTION(obj)       GTK_CHECK_TYPE (obj, gtk_color_selection_get_type ())
56
57 #define GTK_COLOR_SELECTION_DIALOG(obj)          GTK_CHECK_CAST (obj, gtk_color_selection_dialog_get_type (), GtkColorSelectionDialog)
58 #define GTK_COLOR_SELECTION_DIALOG_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_color_selection_dialog_get_type (), GtkColorSelectionDialogClass)
59 #define GTK_IS_COLOR_SELECTION_DIALOG(obj)       GTK_CHECK_TYPE (obj, gtk_color_selection_dialog_get_type ())
60
61
62 typedef struct _GtkColorSelection             GtkColorSelection;
63 typedef struct _GtkColorSelectionClass        GtkColorSelectionClass;
64
65 typedef struct _GtkColorSelectionDialog       GtkColorSelectionDialog;
66 typedef struct _GtkColorSelectionDialogClass  GtkColorSelectionDialogClass;
67
68
69 struct _GtkColorSelection
70 {
71   GtkVBox vbox;
72
73   GtkWidget *wheel_area;
74   GtkWidget *value_area;
75   GtkWidget *sample_area;
76   GtkWidget *sample_area_eb;
77
78   GtkWidget *scales[8];
79   GtkWidget *entries[8];
80   GtkWidget *opacity_label;
81
82   GdkGC *wheel_gc;
83   GdkGC *value_gc;
84   GdkGC *sample_gc;
85
86   GtkUpdateType policy;
87   gint use_opacity;
88   gint timer_active;
89   gint timer_tag;
90   gdouble values[8];
91   gdouble old_values[8];
92
93   guchar *wheel_buf;
94   guchar *value_buf;
95   guchar *sample_buf;
96 };
97
98 struct _GtkColorSelectionClass
99 {
100   GtkVBoxClass parent_class;
101
102   void (* color_changed) (GtkColorSelection *colorsel);
103 };
104
105 struct _GtkColorSelectionDialog
106 {
107   GtkWindow window;
108
109   GtkWidget *colorsel;
110   GtkWidget *main_vbox;
111   GtkWidget *ok_button;
112   GtkWidget *reset_button;
113   GtkWidget *cancel_button;
114   GtkWidget *help_button;
115 };
116
117 struct _GtkColorSelectionDialogClass
118 {
119   GtkWindowClass parent_class;
120 };
121
122
123 /* ColorSelection */
124
125 GtkType    gtk_color_selection_get_type          (void);
126
127 GtkWidget* gtk_color_selection_new               (void);
128
129 void       gtk_color_selection_set_update_policy (GtkColorSelection     *colorsel,
130                                                   GtkUpdateType          policy);
131
132 void       gtk_color_selection_set_opacity       (GtkColorSelection     *colorsel,
133                                                   gint                   use_opacity);
134
135 void       gtk_color_selection_set_color         (GtkColorSelection     *colorsel,
136                                                   gdouble               *color);
137
138 void       gtk_color_selection_get_color         (GtkColorSelection     *colorsel,
139                                                   gdouble               *color);
140
141 /* ColorSelectionDialog */
142
143 guint      gtk_color_selection_dialog_get_type   (void);
144
145 GtkWidget* gtk_color_selection_dialog_new        (const gchar *title);
146
147
148 #ifdef __cplusplus
149 }
150 #endif /* __cplusplus */
151
152
153 #endif /* __GTK_COLORSEL_H__ */