]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolbar.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtktoolbar.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * GtkToolbar copyright (C) Federico Mena
4  *
5  * Copyright (C) 2002 Anders Carlsson <andersca@gnome.org>
6  * Copyright (C) 2002 James Henstridge <james@daa.com.au>
7  * Copyright (C) 2003 Soeren Sandmann <sandmann@daimi.au.dk>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-2000.  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_TOOLBAR_H__
31 #define __GTK_TOOLBAR_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/gtkcontainer.h>
39 #include <gtk/gtktoolitem.h>
40
41 G_BEGIN_DECLS
42
43
44 #define GTK_TYPE_TOOLBAR            (gtk_toolbar_get_type ())
45 #define GTK_TOOLBAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLBAR, GtkToolbar))
46 #define GTK_TOOLBAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLBAR, GtkToolbarClass))
47 #define GTK_IS_TOOLBAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLBAR))
48 #define GTK_IS_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLBAR))
49 #define GTK_TOOLBAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLBAR, GtkToolbarClass))
50
51 typedef enum
52 {
53   GTK_TOOLBAR_SPACE_EMPTY,
54   GTK_TOOLBAR_SPACE_LINE
55 } GtkToolbarSpaceStyle;
56
57 typedef struct _GtkToolbar              GtkToolbar;
58 typedef struct _GtkToolbarPrivate       GtkToolbarPrivate;
59 typedef struct _GtkToolbarClass         GtkToolbarClass;
60
61 struct _GtkToolbar
62 {
63   GtkContainer container;
64
65   GtkToolbarPrivate *priv;
66 };
67
68 struct _GtkToolbarClass
69 {
70   GtkContainerClass parent_class;
71
72   /* signals */
73   void     (* orientation_changed) (GtkToolbar       *toolbar,
74                                     GtkOrientation    orientation);
75   void     (* style_changed)       (GtkToolbar       *toolbar,
76                                     GtkToolbarStyle   style);
77   gboolean (* popup_context_menu)  (GtkToolbar       *toolbar,
78                                     gint              x,
79                                     gint              y,
80                                     gint              button_number);
81
82   /* Padding for future expansion */
83   void (*_gtk_reserved1) (void);
84   void (*_gtk_reserved2) (void);
85   void (*_gtk_reserved3) (void);
86   void (*_gtk_reserved4) (void);
87 };
88
89 GType           gtk_toolbar_get_type                (void) G_GNUC_CONST;
90 GtkWidget *     gtk_toolbar_new                     (void);
91
92 void            gtk_toolbar_insert                  (GtkToolbar      *toolbar,
93                                                      GtkToolItem     *item,
94                                                      gint             pos);
95
96 gint            gtk_toolbar_get_item_index          (GtkToolbar      *toolbar,
97                                                      GtkToolItem     *item);
98 gint            gtk_toolbar_get_n_items             (GtkToolbar      *toolbar);
99 GtkToolItem *   gtk_toolbar_get_nth_item            (GtkToolbar      *toolbar,
100                                                      gint             n);
101
102 gboolean        gtk_toolbar_get_show_arrow          (GtkToolbar      *toolbar);
103 void            gtk_toolbar_set_show_arrow          (GtkToolbar      *toolbar,
104                                                      gboolean         show_arrow);
105
106 GtkToolbarStyle gtk_toolbar_get_style               (GtkToolbar      *toolbar);
107 void            gtk_toolbar_set_style               (GtkToolbar      *toolbar,
108                                                      GtkToolbarStyle  style);
109 void            gtk_toolbar_unset_style             (GtkToolbar      *toolbar);
110
111 GtkIconSize     gtk_toolbar_get_icon_size           (GtkToolbar      *toolbar);
112 void            gtk_toolbar_set_icon_size           (GtkToolbar      *toolbar,
113                                                      GtkIconSize      icon_size);
114 void            gtk_toolbar_unset_icon_size         (GtkToolbar      *toolbar);
115
116 GtkReliefStyle  gtk_toolbar_get_relief_style        (GtkToolbar      *toolbar);
117 gint            gtk_toolbar_get_drop_index          (GtkToolbar      *toolbar,
118                                                      gint             x,
119                                                      gint             y);
120 void            gtk_toolbar_set_drop_highlight_item (GtkToolbar      *toolbar,
121                                                      GtkToolItem     *tool_item,
122                                                      gint             index_);
123
124
125 /* internal functions */
126 gchar *         _gtk_toolbar_elide_underscores      (const gchar         *original);
127 void            _gtk_toolbar_paint_space_line       (GtkWidget           *widget,
128                                                      GtkToolbar          *toolbar,
129                                                      cairo_t             *cr);
130 gint            _gtk_toolbar_get_default_space_size (void);
131
132
133 G_END_DECLS
134
135 #endif /* __GTK_TOOLBAR_H__ */