main window files
[lttv.git] / ltt / branches / poly / lttv / modules / gui / mainWin / src / gtkcustom.h
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
13 extern "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
25 typedef struct _GtkCustom GtkCustom;
26 typedef struct _GtkCustomClass GtkCustomClass;
27
28 struct _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
44 struct _GtkCustomClass
45 {
46 GtkPanedClass parent_class;
47 };
48
49
50 GType gtk_custom_get_type (void) G_GNUC_CONST;
51 GtkWidget* gtk_custom_new (void);
52
53 void gtk_custom_set_focus (GtkWidget * widget, gpointer user_data);
54 void gtk_custom_widget_add(GtkCustom * custom, GtkWidget * widget1);
55 void gtk_custom_widget_delete(GtkCustom * custom);
56 void gtk_custom_widget_move_up(GtkCustom * custom);
57 void 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.030691 seconds and 4 git commands to generate.