]> Pileus Git - ~andy/gtk/blob - gtk/gtknotebook.h
Cal gdk_window_invalidate_maybe_recurse() for recursion. (Soeren Sandmann)
[~andy/gtk] / gtk / gtknotebook.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 Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser 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-2000.  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_NOTEBOOK_H__
28 #define __GTK_NOTEBOOK_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkcontainer.h>
33
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39
40 #define GTK_TYPE_NOTEBOOK                  (gtk_notebook_get_type ())
41 #define GTK_NOTEBOOK(obj)                  (GTK_CHECK_CAST ((obj), GTK_TYPE_NOTEBOOK, GtkNotebook))
42 #define GTK_NOTEBOOK_CLASS(klass)          (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_NOTEBOOK, GtkNotebookClass))
43 #define GTK_IS_NOTEBOOK(obj)               (GTK_CHECK_TYPE ((obj), GTK_TYPE_NOTEBOOK))
44 #define GTK_IS_NOTEBOOK_CLASS(klass)       (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_NOTEBOOK))
45 #define GTK_NOTEBOOK_GET_CLASS(obj)        (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_NOTEBOOK, GtkNotebookClass))
46
47
48 typedef enum
49 {
50   GTK_NOTEBOOK_TAB_FIRST,
51   GTK_NOTEBOOK_TAB_LAST
52 } GtkNotebookTab;
53
54 typedef struct _GtkNotebook       GtkNotebook;
55 typedef struct _GtkNotebookClass  GtkNotebookClass;
56 typedef struct _GtkNotebookPage   GtkNotebookPage;
57
58 struct _GtkNotebook
59 {
60   GtkContainer container;
61   
62   GtkNotebookPage *cur_page;
63   GList *children;
64   GList *first_tab;             /* The first tab visible (for scrolling notebooks) */
65   GList *focus_tab;
66   
67   GtkWidget *menu;
68   GdkWindow *event_window;
69   
70   guint32 timer;
71   
72   guint16 tab_hborder;
73   guint16 tab_vborder;
74   
75   guint show_tabs          : 1;
76   guint homogeneous        : 1;
77   guint show_border        : 1;
78   guint tab_pos            : 2;
79   guint scrollable         : 1;
80   guint in_child           : 2;
81   guint click_child        : 2;
82   guint button             : 2;
83   guint need_timer         : 1;
84   guint child_has_focus    : 1;
85   guint have_visible_child : 1;
86 };
87
88 struct _GtkNotebookClass
89 {
90   GtkContainerClass parent_class;
91   
92   void (* switch_page)       (GtkNotebook     *notebook,
93                               GtkNotebookPage *page,
94                               guint            page_num);
95
96   /* Action signals for keybindings */
97   void (* select_page)       (GtkNotebook       *notebook,
98                               gboolean           move_focus);
99
100   void (* focus_tab)         (GtkNotebook       *notebook,
101                               GtkNotebookTab     type);
102   
103 };
104
105 /***********************************************************
106  *           Creation, insertion, deletion                 *
107  ***********************************************************/
108
109 GtkType gtk_notebook_get_type       (void) G_GNUC_CONST;
110 GtkWidget * gtk_notebook_new        (void);
111 void gtk_notebook_append_page       (GtkNotebook *notebook,
112                                      GtkWidget   *child,
113                                      GtkWidget   *tab_label);
114 void gtk_notebook_append_page_menu  (GtkNotebook *notebook,
115                                      GtkWidget   *child,
116                                      GtkWidget   *tab_label,
117                                      GtkWidget   *menu_label);
118 void gtk_notebook_prepend_page      (GtkNotebook *notebook,
119                                      GtkWidget   *child,
120                                      GtkWidget   *tab_label);
121 void gtk_notebook_prepend_page_menu (GtkNotebook *notebook,
122                                      GtkWidget   *child,
123                                      GtkWidget   *tab_label,
124                                      GtkWidget   *menu_label);
125 void gtk_notebook_insert_page       (GtkNotebook *notebook,
126                                      GtkWidget   *child,
127                                      GtkWidget   *tab_label,
128                                      gint         position);
129 void gtk_notebook_insert_page_menu  (GtkNotebook *notebook,
130                                      GtkWidget   *child,
131                                      GtkWidget   *tab_label,
132                                      GtkWidget   *menu_label,
133                                      gint         position);
134 void gtk_notebook_remove_page       (GtkNotebook *notebook,
135                                      gint         page_num);
136
137 /***********************************************************
138  *            query, set current NoteebookPage             *
139  ***********************************************************/
140
141 gint       gtk_notebook_get_current_page (GtkNotebook *notebook);
142 GtkWidget* gtk_notebook_get_nth_page     (GtkNotebook *notebook,
143                                           gint         page_num);
144 gint       gtk_notebook_page_num         (GtkNotebook *notebook,
145                                           GtkWidget   *child);
146 void       gtk_notebook_set_current_page (GtkNotebook *notebook,
147                                           gint         page_num);
148 void       gtk_notebook_next_page        (GtkNotebook *notebook);
149 void       gtk_notebook_prev_page        (GtkNotebook *notebook);
150
151 /***********************************************************
152  *            set Notebook, NotebookTab style              *
153  ***********************************************************/
154
155 void     gtk_notebook_set_show_border      (GtkNotebook     *notebook,
156                                             gboolean         show_border);
157 gboolean gtk_notebook_get_show_border      (GtkNotebook     *notebook);
158 void     gtk_notebook_set_show_tabs        (GtkNotebook     *notebook,
159                                             gboolean         show_tabs);
160 gboolean gtk_notebook_get_show_tabs        (GtkNotebook     *notebook);
161 void     gtk_notebook_set_tab_pos          (GtkNotebook     *notebook,
162                                             GtkPositionType  pos);
163 GtkPositionType gtk_notebook_get_tab_pos   (GtkNotebook     *notebook);
164
165 #ifndef GTK_DISABLE_DEPRECATED
166 void     gtk_notebook_set_homogeneous_tabs (GtkNotebook     *notebook,
167                                             gboolean         homogeneous);
168 void     gtk_notebook_set_tab_border       (GtkNotebook     *notebook,
169                                             guint            border_width);
170 void     gtk_notebook_set_tab_hborder      (GtkNotebook     *notebook,
171                                             guint            tab_hborder);
172 void     gtk_notebook_set_tab_vborder      (GtkNotebook     *notebook,
173                                             guint            tab_vborder);
174 #endif /* GTK_DISABLE_DEPRECATED */
175
176 void     gtk_notebook_set_scrollable       (GtkNotebook     *notebook,
177                                             gboolean         scrollable);
178 gboolean gtk_notebook_get_scrollable       (GtkNotebook     *notebook);
179
180 /***********************************************************
181  *               enable/disable PopupMenu                  *
182  ***********************************************************/
183
184 void gtk_notebook_popup_enable  (GtkNotebook *notebook);
185 void gtk_notebook_popup_disable (GtkNotebook *notebook);
186
187 /***********************************************************
188  *             query/set NotebookPage Properties           *
189  ***********************************************************/
190
191 GtkWidget * gtk_notebook_get_tab_label    (GtkNotebook *notebook,
192                                            GtkWidget   *child);
193 void gtk_notebook_set_tab_label           (GtkNotebook *notebook,
194                                            GtkWidget   *child,
195                                            GtkWidget   *tab_label);
196 void gtk_notebook_set_tab_label_text      (GtkNotebook *notebook,
197                                            GtkWidget   *child,
198                                            const gchar *tab_text);
199 G_CONST_RETURN gchar *gtk_notebook_get_tab_label_text (GtkNotebook *notebook,
200                                                        GtkWidget   *child);
201 GtkWidget * gtk_notebook_get_menu_label   (GtkNotebook *notebook,
202                                            GtkWidget   *child);
203 void gtk_notebook_set_menu_label          (GtkNotebook *notebook,
204                                            GtkWidget   *child,
205                                            GtkWidget   *menu_label);
206 void gtk_notebook_set_menu_label_text     (GtkNotebook *notebook,
207                                            GtkWidget   *child,
208                                            const gchar *menu_text);
209 G_CONST_RETURN gchar *gtk_notebook_get_menu_label_text (GtkNotebook *notebook,
210                                                         GtkWidget   *child);
211 void gtk_notebook_query_tab_label_packing (GtkNotebook *notebook,
212                                            GtkWidget   *child,
213                                            gboolean    *expand,
214                                            gboolean    *fill,
215                                            GtkPackType *pack_type);
216 void gtk_notebook_set_tab_label_packing   (GtkNotebook *notebook,
217                                            GtkWidget   *child,
218                                            gboolean     expand,
219                                            gboolean     fill,
220                                            GtkPackType  pack_type);
221 void gtk_notebook_reorder_child           (GtkNotebook *notebook,
222                                            GtkWidget   *child,
223                                            gint         position);
224
225 #ifndef GTK_DISABLE_DEPRECATED
226 #define gtk_notebook_current_page               gtk_notebook_get_current_page
227 #define gtk_notebook_set_page                   gtk_notebook_set_current_page
228 #endif /* GTK_DISABLE_DEPRECATED */
229
230 #ifdef __cplusplus
231 }
232 #endif /* __cplusplus */
233
234
235 #endif /* __GTK_NOTEBOOK_H__ */