]> Pileus Git - ~andy/gtk/blob - gtk/gtknotebook.h
Add ::move-focus-out signal to handle Control[-Shift]-Tab and
[~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   guint focus_out          : 1; /* Flag used by ::move-focus-out implementation */
87 };
88
89 struct _GtkNotebookClass
90 {
91   GtkContainerClass parent_class;
92   
93   void (* switch_page)       (GtkNotebook     *notebook,
94                               GtkNotebookPage *page,
95                               guint            page_num);
96
97   /* Action signals for keybindings */
98   gboolean (* select_page)     (GtkNotebook       *notebook,
99                                 gboolean           move_focus);
100   gboolean (* focus_tab)       (GtkNotebook       *notebook,
101                                 GtkNotebookTab     type);
102   void (* change_current_page) (GtkNotebook       *notebook,
103                                 gint               offset);
104   void (* move_focus_out)      (GtkNotebook       *notebook,
105                                 GtkDirectionType   direction);
106 };
107
108 /***********************************************************
109  *           Creation, insertion, deletion                 *
110  ***********************************************************/
111
112 GtkType gtk_notebook_get_type       (void) G_GNUC_CONST;
113 GtkWidget * gtk_notebook_new        (void);
114 void gtk_notebook_append_page       (GtkNotebook *notebook,
115                                      GtkWidget   *child,
116                                      GtkWidget   *tab_label);
117 void gtk_notebook_append_page_menu  (GtkNotebook *notebook,
118                                      GtkWidget   *child,
119                                      GtkWidget   *tab_label,
120                                      GtkWidget   *menu_label);
121 void gtk_notebook_prepend_page      (GtkNotebook *notebook,
122                                      GtkWidget   *child,
123                                      GtkWidget   *tab_label);
124 void gtk_notebook_prepend_page_menu (GtkNotebook *notebook,
125                                      GtkWidget   *child,
126                                      GtkWidget   *tab_label,
127                                      GtkWidget   *menu_label);
128 void gtk_notebook_insert_page       (GtkNotebook *notebook,
129                                      GtkWidget   *child,
130                                      GtkWidget   *tab_label,
131                                      gint         position);
132 void gtk_notebook_insert_page_menu  (GtkNotebook *notebook,
133                                      GtkWidget   *child,
134                                      GtkWidget   *tab_label,
135                                      GtkWidget   *menu_label,
136                                      gint         position);
137 void gtk_notebook_remove_page       (GtkNotebook *notebook,
138                                      gint         page_num);
139
140 /***********************************************************
141  *            query, set current NoteebookPage             *
142  ***********************************************************/
143
144 gint       gtk_notebook_get_current_page (GtkNotebook *notebook);
145 GtkWidget* gtk_notebook_get_nth_page     (GtkNotebook *notebook,
146                                           gint         page_num);
147 gint       gtk_notebook_page_num         (GtkNotebook *notebook,
148                                           GtkWidget   *child);
149 void       gtk_notebook_set_current_page (GtkNotebook *notebook,
150                                           gint         page_num);
151 void       gtk_notebook_next_page        (GtkNotebook *notebook);
152 void       gtk_notebook_prev_page        (GtkNotebook *notebook);
153
154 /***********************************************************
155  *            set Notebook, NotebookTab style              *
156  ***********************************************************/
157
158 void     gtk_notebook_set_show_border      (GtkNotebook     *notebook,
159                                             gboolean         show_border);
160 gboolean gtk_notebook_get_show_border      (GtkNotebook     *notebook);
161 void     gtk_notebook_set_show_tabs        (GtkNotebook     *notebook,
162                                             gboolean         show_tabs);
163 gboolean gtk_notebook_get_show_tabs        (GtkNotebook     *notebook);
164 void     gtk_notebook_set_tab_pos          (GtkNotebook     *notebook,
165                                             GtkPositionType  pos);
166 GtkPositionType gtk_notebook_get_tab_pos   (GtkNotebook     *notebook);
167
168 #ifndef GTK_DISABLE_DEPRECATED
169 void     gtk_notebook_set_homogeneous_tabs (GtkNotebook     *notebook,
170                                             gboolean         homogeneous);
171 void     gtk_notebook_set_tab_border       (GtkNotebook     *notebook,
172                                             guint            border_width);
173 void     gtk_notebook_set_tab_hborder      (GtkNotebook     *notebook,
174                                             guint            tab_hborder);
175 void     gtk_notebook_set_tab_vborder      (GtkNotebook     *notebook,
176                                             guint            tab_vborder);
177 #endif /* GTK_DISABLE_DEPRECATED */
178
179 void     gtk_notebook_set_scrollable       (GtkNotebook     *notebook,
180                                             gboolean         scrollable);
181 gboolean gtk_notebook_get_scrollable       (GtkNotebook     *notebook);
182
183 /***********************************************************
184  *               enable/disable PopupMenu                  *
185  ***********************************************************/
186
187 void gtk_notebook_popup_enable  (GtkNotebook *notebook);
188 void gtk_notebook_popup_disable (GtkNotebook *notebook);
189
190 /***********************************************************
191  *             query/set NotebookPage Properties           *
192  ***********************************************************/
193
194 GtkWidget * gtk_notebook_get_tab_label    (GtkNotebook *notebook,
195                                            GtkWidget   *child);
196 void gtk_notebook_set_tab_label           (GtkNotebook *notebook,
197                                            GtkWidget   *child,
198                                            GtkWidget   *tab_label);
199 void gtk_notebook_set_tab_label_text      (GtkNotebook *notebook,
200                                            GtkWidget   *child,
201                                            const gchar *tab_text);
202 G_CONST_RETURN gchar *gtk_notebook_get_tab_label_text (GtkNotebook *notebook,
203                                                        GtkWidget   *child);
204 GtkWidget * gtk_notebook_get_menu_label   (GtkNotebook *notebook,
205                                            GtkWidget   *child);
206 void gtk_notebook_set_menu_label          (GtkNotebook *notebook,
207                                            GtkWidget   *child,
208                                            GtkWidget   *menu_label);
209 void gtk_notebook_set_menu_label_text     (GtkNotebook *notebook,
210                                            GtkWidget   *child,
211                                            const gchar *menu_text);
212 G_CONST_RETURN gchar *gtk_notebook_get_menu_label_text (GtkNotebook *notebook,
213                                                         GtkWidget   *child);
214 void gtk_notebook_query_tab_label_packing (GtkNotebook *notebook,
215                                            GtkWidget   *child,
216                                            gboolean    *expand,
217                                            gboolean    *fill,
218                                            GtkPackType *pack_type);
219 void gtk_notebook_set_tab_label_packing   (GtkNotebook *notebook,
220                                            GtkWidget   *child,
221                                            gboolean     expand,
222                                            gboolean     fill,
223                                            GtkPackType  pack_type);
224 void gtk_notebook_reorder_child           (GtkNotebook *notebook,
225                                            GtkWidget   *child,
226                                            gint         position);
227
228 #ifndef GTK_DISABLE_DEPRECATED
229 #define gtk_notebook_current_page               gtk_notebook_get_current_page
230 #define gtk_notebook_set_page                   gtk_notebook_set_current_page
231 #endif /* GTK_DISABLE_DEPRECATED */
232
233 #ifdef __cplusplus
234 }
235 #endif /* __cplusplus */
236
237
238 #endif /* __GTK_NOTEBOOK_H__ */