]> Pileus Git - ~andy/gtk/blob - gtk/gtkbuttonprivate.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkbuttonprivate.h
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2010 Javier Jardón
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef __GTK_BUTTON_PRIVATE_H__
20 #define __GTK_BUTTON_PRIVATE_H__
21
22 #include "gtkactionhelper.h"
23 #include "gtkaction.h"
24
25 G_BEGIN_DECLS
26
27
28 struct _GtkButtonPrivate
29 {
30   GtkAction             *action;
31   GtkWidget             *image;
32   GtkActionHelper       *action_helper;
33
34   GdkDevice             *grab_keyboard;
35   GdkWindow             *event_window;
36
37   gchar                 *label_text;
38
39   gfloat                 xalign;
40   gfloat                 yalign;
41
42   guint                  activate_timeout;
43   guint32                grab_time;
44
45   GtkPositionType        image_position;
46
47   guint          align_set             : 1;
48   guint          button_down           : 1;
49   guint          constructed           : 1;
50   guint          depressed             : 1;
51   guint          depress_on_activate   : 1;
52   guint          focus_on_click        : 1;
53   guint          image_is_stock        : 1;
54   guint          in_button             : 1;
55   guint          relief                : 2;
56   guint          use_action_appearance : 1;
57   guint          use_stock             : 1;
58   guint          use_underline         : 1;
59   guint          always_show_image     : 1;
60 };
61
62 void _gtk_button_set_depressed             (GtkButton          *button,
63                                             gboolean            depressed);
64
65
66 G_END_DECLS
67
68 #endif /* __GTK_BUTTON_PRIVATE_H__ */