File: xapp-stack-sidebar.h

package info (click to toggle)
xapp 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,688 kB
  • sloc: ansic: 11,268; python: 1,463; xml: 258; sh: 22; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _XAPP_STACK_SIDEBAR_H_
#define _XAPP_STACK_SIDEBAR_H_

#include <glib-object.h>
#include <gtk/gtk.h>

G_BEGIN_DECLS

#define XAPP_TYPE_STACK_SIDEBAR (xapp_stack_sidebar_get_type ())

G_DECLARE_FINAL_TYPE (XAppStackSidebar, xapp_stack_sidebar, XAPP, STACK_SIDEBAR, GtkBin)

XAppStackSidebar *xapp_stack_sidebar_new (void);

void xapp_stack_sidebar_set_stack (XAppStackSidebar *sidebar,
                                   GtkStack         *stack);

GtkStack *xapp_stack_sidebar_get_stack (XAppStackSidebar *sidebar);

G_END_DECLS

#endif /*_XAPP_STACK_SIDEBAR_H_ */