git-svn-id: http://ltt.polymtl.ca/svn@204 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / include / lttv / gtkcustom.h
CommitLineData
e969fd8e 1
2#ifndef __GTK_CUSTOM_H__
3#define __GTK_CUSTOM_H__
4
5
6#include <glib.h>
7#include <glib-object.h>
8#include <gdk/gdk.h>
9#include <gtk/gtkcontainer.h>
10
11
12#ifdef __cplusplus
13extern "C" {
14#endif /* __cplusplus */
15
16
17#define GTK_TYPE_CUSTOM (gtk_custom_get_type ())
18#define GTK_CUSTOM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CUSTOM, GtkCustom))
19#define GTK_CUSTOM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CUSTOM, GtkCustomClass))
20#define GTK_IS_CUSTOM(obj ) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CUSTOM))
21#define GTK_IS_CUSTOM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CUSTOM))
22#define GTK_CUSTOM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CUSTOM, GtkCustomClass))
23
24
25typedef struct _GtkCustom GtkCustom;
26typedef struct _GtkCustomClass GtkCustomClass;
27
28struct _GtkCustom
29{
30 GtkPaned container;
31
32 /*< public >*/
33 GtkPaned * firstPane;
34 GtkPaned * lastPane;
35 GtkPaned * focusedPane;
36 guint numChildren;
37
38 GtkWidget * vbox;
39 // GtkWidget * scrollWindow;
40 // GtkWidget * viewport;
41 GtkWidget * hScrollbar;
42};
43
44struct _GtkCustomClass
45{
46 GtkPanedClass parent_class;
47};
48
49
50GType gtk_custom_get_type (void) G_GNUC_CONST;
51GtkWidget* gtk_custom_new (void);
52
53void gtk_custom_set_focus (GtkWidget * widget, gpointer user_data);
54void gtk_custom_widget_add(GtkCustom * custom, GtkWidget * widget1);
55void gtk_custom_widget_delete(GtkCustom * custom);
56void gtk_custom_widget_move_up(GtkCustom * custom);
57void gtk_custom_widget_move_down(GtkCustom * custom);
58
59
60
61#ifdef __cplusplus
62}
63#endif /* __cplusplus */
64
65
66#endif /* __GTK_CUSTOM_H__ */
This page took 0.024566 seconds and 4 git commands to generate.