]> Pileus Git - ~andy/gtk/blob - gtk/gtkcontainerprivate.h
Updated Norwegian bokmål translation
[~andy/gtk] / gtk / gtkcontainerprivate.h
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2011 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.1 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
20 #ifndef __GTK_CONTAINER_PRIVATE_H__
21 #define __GTK_CONTAINER_PRIVATE_H__
22
23 G_BEGIN_DECLS
24
25
26 void     _gtk_container_queue_resize           (GtkContainer *container);
27 void     _gtk_container_resize_invalidate      (GtkContainer *container);
28 void     _gtk_container_clear_resize_widgets   (GtkContainer *container);
29 gchar*   _gtk_container_child_composite_name   (GtkContainer *container,
30                                                 GtkWidget    *child);
31 void     _gtk_container_dequeue_resize_handler (GtkContainer *container);
32 GList *  _gtk_container_focus_sort             (GtkContainer     *container,
33                                                 GList            *children,
34                                                 GtkDirectionType  direction,
35                                                 GtkWidget        *old_focus);
36 gboolean _gtk_container_get_need_resize        (GtkContainer *container);
37 void     _gtk_container_set_need_resize        (GtkContainer *container,
38                                                 gboolean      need_resize);
39 gboolean _gtk_container_get_reallocate_redraws (GtkContainer *container);
40
41
42 G_END_DECLS
43
44 #endif /* __GTK_CONTAINER_PRIVATE_H__ */