Hook TildaTerminal and TildaWindow together
[tilda-gobject.git] / tilda-window.c
index 6b2c674..fdf2376 100644 (file)
@@ -1,5 +1,44 @@
 #include "tilda-window.h"
 
+static gboolean
+tilda_window_add_term (TildaWindow *tw)
+{
+       // FIXME: this is totally bad, but it's a good hack for feasability
+       static gint mynumber = 0;
+       TildaTerminal *tt = g_object_new (TILDA_TYPE_TERMINAL, "number", mynumber++, NULL);
+       g_ptr_array_add (tw->terms, tt);
+
+       GtkWidget *label = gtk_label_new ("Tilda");
+       gint index = gtk_notebook_prepend_page (GTK_NOTEBOOK(tw->notebook), tt->hbox, label);
+       gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK(tw->notebook), tt->hbox, TRUE, TRUE, GTK_PACK_END);
+       //gtk_notebook_set_current_page (GTK_NOTEBOOK(tw->notebook), index);
+
+       if (gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)) > 1)
+               gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), TRUE);
+
+       return TRUE;
+}
+
+static gboolean
+tilda_window_remove_term (TildaWindow *tw, int number)
+{
+       int i;
+
+       for (i=0; i<tw->terms->len; ++i)
+       {
+               TildaTerminal *tt = g_ptr_array_index (tw->terms, i);
+
+               if (tt->number == number)
+                       g_print ("Need to remove window %d terminal %d\n", tw->number, tt->number);
+       }
+
+       return TRUE;
+}
+
+/*******************************************************************************
+ * ALL GOBJECT STUFF BELOW PLEASE
+ ******************************************************************************/
+
 static GObjectClass *parent_class = NULL;
 
 enum tilda_window_properties {
@@ -15,8 +54,10 @@ tilda_window_instance_init (GTypeInstance *instance,
 
        /* Initialize all properties */
        self->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+       self->notebook = gtk_notebook_new ();
        self->terms = g_ptr_array_new ();
 
+       /* Somewhat of a "poison" value, incase we don't set this */
        self->number = 0xdeadbeef;
 }
 
@@ -69,6 +110,7 @@ tilda_window_constructor (GType                  type,
                                                  GObjectConstructParam *construct_properties)
 {
        GObject *obj;
+       TildaWindow *self;
 
        /* Invoke parent constructor */
        TildaWindowClass *klass;
@@ -81,10 +123,23 @@ tilda_window_constructor (GType                  type,
         * ctor properties have been set.
         *
         * TODO: This is the place to do DBus-init */
+       self = TILDA_WINDOW(obj);
+
+       gtk_container_add (GTK_CONTAINER(self->window), self->notebook);
+       gtk_widget_show (self->notebook);
+
+       tilda_window_add_term (self);
+       gtk_widget_show_all (self->window);
 
        return obj;
 }
 
+static void
+my_unref (gpointer data, gpointer user_data)
+{
+       g_object_unref (G_OBJECT(data));
+}
+
 static void
 tilda_window_dispose (GObject *obj)
 {
@@ -99,7 +154,12 @@ tilda_window_dispose (GObject *obj)
         * object which might themselves hold a reference to self. Generally,
         * the most simple solution is to unref all members on which you own a
         * reference.
+        *
+        * NOTE: See the following for how to deal with GtkObject-derived things:
+        * http://library.gnome.org/devel/gtk/unstable/GtkObject.html
         */
+       g_ptr_array_foreach (self->terms, my_unref, NULL);
+       gtk_widget_destroy (self->window);
 
        /* Chain up to the parent class */
        G_OBJECT_CLASS (parent_class)->dispose (obj);
@@ -115,6 +175,7 @@ tilda_window_finalize (GObject *obj)
         * You might not need to do much...
         */
        // TODO: g_free() any primitives here
+       g_ptr_array_free (self->terms, TRUE);
 
 
        /* Chain up to the parent class */
@@ -182,7 +243,6 @@ tilda_window_get_type (void)
        return type;
 }
 
-
 int main (int argc, char *argv[])
 {
        GObject *tw;
@@ -202,6 +262,8 @@ int main (int argc, char *argv[])
        g_object_get (G_OBJECT (tw), "number", &test_number, NULL);
        g_assert (test_number == 22);
 
+       gtk_main ();
+
        g_object_unref (G_OBJECT (tw));
 
        return 0;