]> Pileus Git - ~andy/gtk/blob - gtk/gtkcolorbutton.h
define __GTK_H_INSIDE__ around including all other headers.
[~andy/gtk] / gtk / gtkcolorbutton.h
1 /*
2  * GTK - The GIMP Toolkit
3  * Copyright (C) 1998, 1999 Red Hat, Inc.
4  * All rights reserved.
5  *
6  * This Library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This Library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with the Gnome Library; see the file COPYING.LIB.  If not,
18  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 /* Color picker button for GNOME
22  *
23  * Author: Federico Mena <federico@nuclecu.unam.mx>
24  *
25  * Modified by the GTK+ Team and others 2003.  See the AUTHORS
26  * file for a list of people on the GTK+ Team.  See the ChangeLog
27  * files for a list of changes.  These files are distributed with
28  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
29  */
30
31 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
32 #error "Only <gtk/gtk.h> can be included directly."
33 #endif
34
35 #ifndef __GTK_COLOR_BUTTON_H__
36 #define __GTK_COLOR_BUTTON_H__
37
38
39 #include <gtk/gtkbutton.h>
40
41 G_BEGIN_DECLS
42
43
44 /* The GtkColorSelectionButton widget is a simple color picker in a button.  
45  * The button displays a sample of the currently selected color.  When 
46  * the user clicks on the button, a color selection dialog pops up.  
47  * The color picker emits the "color_set" signal when the color is set.
48  */
49
50 #define GTK_TYPE_COLOR_BUTTON             (gtk_color_button_get_type ())
51 #define GTK_COLOR_BUTTON(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_COLOR_BUTTON, GtkColorButton))
52 #define GTK_COLOR_BUTTON_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_COLOR_BUTTON, GtkColorButtonClass))
53 #define GTK_IS_COLOR_BUTTON(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_COLOR_BUTTON))
54 #define GTK_IS_COLOR_BUTTON_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_COLOR_BUTTON))
55 #define GTK_COLOR_BUTTON_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_COLOR_BUTTON, GtkColorButtonClass))
56
57 typedef struct _GtkColorButton          GtkColorButton;
58 typedef struct _GtkColorButtonClass     GtkColorButtonClass;
59 typedef struct _GtkColorButtonPrivate   GtkColorButtonPrivate;
60
61 struct _GtkColorButton {
62   GtkButton button;
63
64   /*< private >*/
65
66   GtkColorButtonPrivate *priv;
67 };
68
69 struct _GtkColorButtonClass {
70   GtkButtonClass parent_class;
71   
72   void (* color_set) (GtkColorButton *cp);
73   
74   /* Padding for future expansion */
75   void (*_gtk_reserved1) (void);
76   void (*_gtk_reserved2) (void);
77   void (*_gtk_reserved3) (void);
78   void (*_gtk_reserved4) (void);
79 };
80
81
82 GType      gtk_color_button_get_type       (void) G_GNUC_CONST;
83 GtkWidget *gtk_color_button_new            (void);
84 GtkWidget *gtk_color_button_new_with_color (const GdkColor *color);
85 void       gtk_color_button_set_color      (GtkColorButton *color_button, 
86                                             const GdkColor *color);
87 void       gtk_color_button_set_alpha      (GtkColorButton *color_button,
88                                             guint16         alpha);
89 void       gtk_color_button_get_color      (GtkColorButton *color_button, 
90                                             GdkColor       *color);
91 guint16    gtk_color_button_get_alpha      (GtkColorButton *color_button);
92 void       gtk_color_button_set_use_alpha  (GtkColorButton *color_button, 
93                                             gboolean        use_alpha);
94 gboolean   gtk_color_button_get_use_alpha  (GtkColorButton *color_button);
95 void       gtk_color_button_set_title      (GtkColorButton *color_button, 
96                                             const gchar    *title);
97 G_CONST_RETURN gchar *gtk_color_button_get_title (GtkColorButton *color_button);
98
99
100 G_END_DECLS
101
102 #endif  /* __GTK_COLOR_BUTTON_H__ */
103
104
105
106