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 this library. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20/* Color picker button for GNOME
21 *
22 * Author: Federico Mena <federico@nuclecu.unam.mx>
23 *
24 * Modified by the GTK+ Team and others 2003. See the AUTHORS
25 * file for a list of people on the GTK+ Team. See the ChangeLog
26 * files for a list of changes. These files are distributed with
27 * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
28 */
29
30#ifndef __GTK_COLOR_BUTTON_H__
31#define __GTK_COLOR_BUTTON_H__
32
33
34#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
35#error "Only <gtk/gtk.h> can be included directly."
36#endif
37
38#include <gtk/gtkbutton.h>
39
40G_BEGIN_DECLS
41
42
43#define GTK_TYPE_COLOR_BUTTON (gtk_color_button_get_type ())
44#define GTK_COLOR_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_COLOR_BUTTON, GtkColorButton))
45#define GTK_COLOR_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_COLOR_BUTTON, GtkColorButtonClass))
46#define GTK_IS_COLOR_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_COLOR_BUTTON))
47#define GTK_IS_COLOR_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_COLOR_BUTTON))
48#define GTK_COLOR_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_COLOR_BUTTON, GtkColorButtonClass))
49
50typedef struct _GtkColorButton GtkColorButton;
51typedef struct _GtkColorButtonClass GtkColorButtonClass;
52typedef struct _GtkColorButtonPrivate GtkColorButtonPrivate;
53
54struct _GtkColorButton {
55 GtkButton button;
56
57 /*< private >*/
58 GtkColorButtonPrivate *priv;
59};
60
61struct _GtkColorButtonClass {
62 GtkButtonClass parent_class;
63
64 void (* color_set) (GtkColorButton *cp);
65
66 /* Padding for future expansion */
67 void (*_gtk_reserved1) (void);
68 void (*_gtk_reserved2) (void);
69 void (*_gtk_reserved3) (void);
70 void (*_gtk_reserved4) (void);
71};
72
73
74GDK_AVAILABLE_IN_ALL
75GType gtk_color_button_get_type (void) G_GNUC_CONST;
76GDK_AVAILABLE_IN_ALL
77GtkWidget * gtk_color_button_new (void);
78GDK_AVAILABLE_IN_ALL
79GtkWidget * gtk_color_button_new_with_rgba (const GdkRGBA *rgba);
80GDK_AVAILABLE_IN_ALL
81void gtk_color_button_set_title (GtkColorButton *button,
82 const gchar *title);
83GDK_AVAILABLE_IN_ALL
84const gchar *gtk_color_button_get_title (GtkColorButton *button);
85
86GDK_DEPRECATED_IN_3_4_FOR(gtk_color_button_new_with_rgba)
87GtkWidget *gtk_color_button_new_with_color (const GdkColor *color);
88GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_set_rgba)
89void gtk_color_button_set_color (GtkColorButton *button,
90 const GdkColor *color);
91GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_get_rgba)
92void gtk_color_button_get_color (GtkColorButton *button,
93 GdkColor *color);
94GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_set_rgba)
95void gtk_color_button_set_alpha (GtkColorButton *button,
96 guint16 alpha);
97GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_get_rgba)
98guint16 gtk_color_button_get_alpha (GtkColorButton *button);
99GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_set_use_alpha)
100void gtk_color_button_set_use_alpha (GtkColorButton *button,
101 gboolean use_alpha);
102GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_get_use_alpha)
103gboolean gtk_color_button_get_use_alpha (GtkColorButton *button);
104GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_set_rgba)
105void gtk_color_button_set_rgba (GtkColorButton *button,
106 const GdkRGBA *rgba);
107GDK_DEPRECATED_IN_3_4_FOR(gtk_color_chooser_get_rgba)
108void gtk_color_button_get_rgba (GtkColorButton *button,
109 GdkRGBA *rgba);
110
111G_END_DECLS
112
113#endif /* __GTK_COLOR_BUTTON_H__ */
114

source code of include/gtk-3.0/gtk/gtkcolorbutton.h