]> Pileus Git - ~andy/gtk/blob - gtk/gtkcontainerprivate.h
stylecontext: Do invalidation on first resize container
[~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 #include "gtkcontainer.h"
24
25 G_BEGIN_DECLS
26
27
28 GList *  _gtk_container_get_all_children       (GtkContainer *container);
29 void     _gtk_container_queue_resize           (GtkContainer *container);
30 void     _gtk_container_queue_restyle          (GtkContainer *container);
31 void     _gtk_container_resize_invalidate      (GtkContainer *container);
32 void     _gtk_container_clear_resize_widgets   (GtkContainer *container);
33 gchar*   _gtk_container_child_composite_name   (GtkContainer *container,
34                                                 GtkWidget    *child);
35 void     _gtk_container_dequeue_resize_handler (GtkContainer *container);
36 GList *  _gtk_container_focus_sort             (GtkContainer     *container,
37                                                 GList            *children,
38                                                 GtkDirectionType  direction,
39                                                 GtkWidget        *old_focus);
40 gboolean _gtk_container_get_reallocate_redraws (GtkContainer *container);
41
42 void      _gtk_container_stop_idle_sizer        (GtkContainer *container);
43 void      _gtk_container_maybe_start_idle_sizer (GtkContainer *container);
44
45 G_END_DECLS
46
47 #endif /* __GTK_CONTAINER_PRIVATE_H__ */