diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-10-02 21:21:49 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-10-02 21:30:42 +0100 |
commit | 8985ce3b7245df120659f3537214a16b144392fb (patch) | |
tree | 9f75269bcaf86d97a3b73e34349223d4875621fc /gtk/gtkboxprivate.h | |
parent | c5c392ddf9a96e09d2a539d094785156afa77e8e (diff) | |
download | gtk+-8985ce3b7245df120659f3537214a16b144392fb.tar.gz |
gtkbox: Move private functions to private header
Diffstat (limited to 'gtk/gtkboxprivate.h')
-rw-r--r-- | gtk/gtkboxprivate.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gtk/gtkboxprivate.h b/gtk/gtkboxprivate.h new file mode 100644 index 0000000000..9a4d463a4c --- /dev/null +++ b/gtk/gtkboxprivate.h @@ -0,0 +1,34 @@ +/* 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 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_BOX_PRIVATE_H__ +#define __GTK_BOX_PRIVATE_H__ + +G_BEGIN_DECLS + + +void _gtk_box_set_old_defaults (GtkBox *box); +gboolean _gtk_box_get_spacing_set (GtkBox *box); +void _gtk_box_set_spacing_set (GtkBox *box, + gboolean spacing_set); +GList *_gtk_box_get_children (GtkBox *box); + + +G_END_DECLS + +#endif /* __GTK_BOX_PRIVATE_H__ */ |