git-svn-id: http://ltt.polymtl.ca/svn@247 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;
fb1a869e 42 GtkAdjustment *hAdjust;
e969fd8e 43};
44
45struct _GtkCustomClass
46{
47 GtkPanedClass parent_class;
48};
49
50
51GType gtk_custom_get_type (void) G_GNUC_CONST;
52GtkWidget* gtk_custom_new (void);
53
54void gtk_custom_set_focus (GtkWidget * widget, gpointer user_data);
55void gtk_custom_widget_add(GtkCustom * custom, GtkWidget * widget1);
56void gtk_custom_widget_delete(GtkCustom * custom);
57void gtk_custom_widget_move_up(GtkCustom * custom);
58void gtk_custom_widget_move_down(GtkCustom * custom);
59
60
61
62#ifdef __cplusplus
63}
64#endif /* __cplusplus */
65
66
67#endif /* __GTK_CUSTOM_H__ */
This page took 0.024765 seconds and 4 git commands to generate.