2011-06-05 23:31:59 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Javier Jardón
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTK_CONTAINER_PRIVATE_H__
|
|
|
|
#define __GTK_CONTAINER_PRIVATE_H__
|
|
|
|
|
2012-04-09 19:04:47 +00:00
|
|
|
#include "gtkcontainer.h"
|
2016-07-27 08:40:29 +00:00
|
|
|
#include <gsk/gsk.h>
|
2012-04-09 19:04:47 +00:00
|
|
|
|
2011-06-05 23:31:59 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2012-04-13 15:27:47 +00:00
|
|
|
void _gtk_container_queue_restyle (GtkContainer *container);
|
2018-04-10 20:20:10 +00:00
|
|
|
void gtk_container_stop_idle_sizer (GtkContainer *container);
|
|
|
|
void gtk_container_start_idle_sizer (GtkContainer *container);
|
2017-02-08 08:14:20 +00:00
|
|
|
void gtk_container_set_focus_child (GtkContainer *container,
|
|
|
|
GtkWidget *child);
|
|
|
|
|
2011-06-05 23:31:59 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_CONTAINER_PRIVATE_H__ */
|