1/*
2 * Copyright (c) 2014 Intel Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12 * License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 *
18 * Author:
19 * Ikey Doherty <michael.i.doherty@intel.com>
20 */
21
22#ifndef __GTK_STACK_SIDEBAR_H__
23#define __GTK_STACK_SIDEBAR_H__
24
25#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
26#error "Only <gtk/gtk.h> can be included directly."
27#endif
28
29#include <gtk/gtkstack.h>
30
31G_BEGIN_DECLS
32
33#define GTK_TYPE_STACK_SIDEBAR (gtk_stack_sidebar_get_type ())
34#define GTK_STACK_SIDEBAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_STACK_SIDEBAR, GtkStackSidebar))
35#define GTK_IS_STACK_SIDEBAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_STACK_SIDEBAR))
36
37typedef struct _GtkStackSidebar GtkStackSidebar;
38
39GDK_AVAILABLE_IN_ALL
40GType gtk_stack_sidebar_get_type (void) G_GNUC_CONST;
41GDK_AVAILABLE_IN_ALL
42GtkWidget * gtk_stack_sidebar_new (void);
43GDK_AVAILABLE_IN_ALL
44void gtk_stack_sidebar_set_stack (GtkStackSidebar *self,
45 GtkStack *stack);
46GDK_AVAILABLE_IN_ALL
47GtkStack * gtk_stack_sidebar_get_stack (GtkStackSidebar *self);
48
49G_END_DECLS
50
51#endif /* __GTK_STACK_SIDEBAR_H__ */
52

source code of gtk/gtk/gtkstacksidebar.h