[Window] Make TildaWindow respect size changes
[tilda-gobject.git] / tilda-window.c
1 #include "tilda.h"
2 #include "tilda-window.h"
3 #include "tilda-window-dbus-glue.h"
4
5 /**
6  * Find the TildaTerminal corresponding to the currently selected
7  * tab in self->notebook. This could go away if TildaTerminal were
8  * a proper subclass of GtkWidget.
9  */
10 static TildaTerminal *
11 tilda_window_find_current_terminal (TildaWindow *self)
12 {
13         gint i;
14         TildaTerminal *ret;
15         gint current_page = gtk_notebook_get_current_page (GTK_NOTEBOOK(self->notebook));
16         GtkWidget *box = gtk_notebook_get_nth_page (GTK_NOTEBOOK(self->notebook), current_page);
17
18         for (i=0; i<self->terms->len; ++i)
19         {
20                 ret = g_ptr_array_index (self->terms, i);
21
22                 if (ret->hbox == box)
23                         return ret;
24         }
25
26         g_printerr ("FIXME: unable to find current terminal!\n");
27         return NULL;
28 }
29
30 static gint
31 tilda_window_find_next_free_terminal_number (TildaWindow *tw)
32 {
33         gint i, j;
34         gboolean found;
35
36         for (i=0; i<INT_MAX; ++i)
37         {
38                 found = FALSE;
39
40                 for (j=0; j<tw->terms->len; ++j)
41                 {
42                         TildaTerminal *tt = g_ptr_array_index (tw->terms, j);
43
44                         if (tt->number == i)
45                         {
46                                 found = TRUE;
47                                 break;
48                         }
49                 }
50
51                 if (!found)
52                         return i;
53         }
54
55         return 0;
56 }
57
58 static gboolean
59 tilda_window_add_term (TildaWindow *tw)
60 {
61         gint number;
62         TildaTerminal *tt;
63
64         number = tilda_window_find_next_free_terminal_number (tw);
65         tt = g_object_new (TILDA_TYPE_TERMINAL,
66                                            "number", number,
67                                            "window-number", tw->number,
68                                            "parent-window", tw,
69                                            NULL);
70         g_ptr_array_add (tw->terms, tt);
71
72         GtkWidget *label = gtk_label_new ("Tilda");
73         gint index = gtk_notebook_prepend_page (GTK_NOTEBOOK(tw->notebook), tt->hbox, label);
74         gtk_notebook_set_tab_label_packing (GTK_NOTEBOOK(tw->notebook), tt->hbox, TRUE, TRUE, GTK_PACK_END);
75         //gtk_notebook_set_current_page (GTK_NOTEBOOK(tw->notebook), index);
76
77         if (gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)) > 1)
78                 gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), TRUE);
79
80         return TRUE;
81 }
82
83 /**
84  * Remove the TildaTerminal with the given number from the given
85  * TildaWindow.
86  *
87  * Return: TRUE on success, FALSE otherwise.
88  */
89 gboolean
90 tilda_window_remove_term (TildaWindow *tw, gint terminal_number)
91 {
92         gint i;
93
94         for (i=0; i<tw->terms->len; ++i)
95         {
96                 TildaTerminal *tt = g_ptr_array_index (tw->terms, i);
97
98                 if (tt->number == terminal_number)
99                 {
100                         gint notebook_index = gtk_notebook_page_num (GTK_NOTEBOOK(tw->notebook), tt->hbox);
101
102                         /* Make sure the index was valid */
103                         if (notebook_index == -1)
104                         {
105                                 g_printerr ("DEBUG ERROR: Bad Notebook Tab\n");
106                                 return FALSE;
107                         }
108
109                         /* Actually remove the terminal */
110                         gtk_notebook_remove_page (GTK_NOTEBOOK (tw->notebook), notebook_index);
111
112                         /* We should hide the tabs if there is only one tab left */
113                         if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) == 1)
114                                 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (tw->notebook), FALSE);
115
116 #if 0
117                         // FIXME FIXME FIXME: need to actually do the stuff below
118                         /* With no pages left, it's time to leave the program */
119                         if (gtk_notebook_get_n_pages (GTK_NOTEBOOK (tw->notebook)) < 1)
120                                 gtk_main_quit ();
121 #endif
122
123                         /* Remove the term from our lists, then free it */
124                         g_ptr_array_remove_fast (tw->terms, tt);
125                         g_object_unref (G_OBJECT(tt));
126
127                         /* Leave the loop, we're done */
128                         break;
129                 }
130         }
131
132         return TRUE;
133 }
134
135 /**
136  * This sets up the given TildaWindow for the capability of real
137  * transparency, if the X server is capable of it. */
138 static void
139 tilda_window_setup_real_transparency (TildaWindow *self)
140 {
141         GdkScreen *screen;
142         GdkColormap *colormap;
143
144         screen = gtk_widget_get_screen (GTK_WIDGET(self->window));
145         colormap = gdk_screen_get_rgba_colormap (screen);
146
147         /* If possible, set the RGBA colormap so VTE can use real alpha
148          * channels for transparency. */
149         if (colormap != NULL && gdk_screen_is_composited (screen))
150         {
151                 gtk_widget_set_colormap (GTK_WIDGET(self->window), colormap);
152                 self->have_real_transparency = TRUE;
153                 return;
154         }
155
156         self->have_real_transparency = FALSE;
157 }
158
159 static void
160 tilda_window_keybinding_cb (const gchar *keystr, gpointer data)
161 {
162         TildaWindow *self = TILDA_WINDOW(data);
163         TildaTerminal *tt;
164         g_print ("tilda_window_keybinding_cb() called! -- window %d\n", self->number);
165
166         // FIXME: this doesn't handle animation!
167
168         switch (self->state)
169         {
170                 case WINDOW_UP:
171                         /* Pull Down */
172                         tomboy_window_present_hardcore (GTK_WINDOW(self->window));
173                         self->state = WINDOW_DOWN;
174
175                         // Focusing the term here works perfectly, near as I can tell
176                         tt = tilda_window_find_current_terminal (self);
177                         gtk_widget_grab_focus (GTK_WIDGET(tt->vte_term));
178                         break;
179
180                 case WINDOW_DOWN:
181                         /* Pull Up */
182                         gtk_widget_hide (GTK_WIDGET(self->window));
183                         self->state = WINDOW_UP;
184                         break;
185
186                 default:
187                         g_printerr ("FIXME: the window is in a bad state!\n");
188
189                         /* Pretend we're down, for good measure.... */
190                         self->state = WINDOW_DOWN;
191                         break;
192         }
193 }
194
195 /**
196  * Attempt to bind the new_key to show this window.
197  *
198  * Return: TRUE if successful, FALSE otherwise.
199  */
200 static gboolean
201 tilda_window_try_to_bind_key (TildaWindow *self, const gchar *new_key)
202 {
203         gboolean ret = FALSE;
204
205         /* Make sure the new key is not null in any way */
206         if (new_key == NULL || strcmp("", new_key) == 0)
207                 return FALSE;
208
209         /* Unbind if we were set */
210         if (self->key)
211                 tomboy_keybinder_unbind (self->key, tilda_window_keybinding_cb, self);
212
213         ret = tomboy_keybinder_bind (new_key, tilda_window_keybinding_cb, self);
214
215         /* If it was successful, update the self->key variable and be done with it */
216         if (ret)
217         {
218                 g_free (self->key);
219                 self->key = g_strdup (new_key);
220                 return TRUE;
221         }
222
223         g_printerr ("Keybinding unsuccessful. Reverting to original key\n");
224
225         /* Not successful, so rebind the old key, and return FALSE */
226         if (self->key != NULL && strcmp("",self->key) != 0)
227         {
228                 ret = tomboy_keybinder_bind (self->key, tilda_window_keybinding_cb, self);
229
230                 /* Check that it went ok */
231                 if (!ret)
232                         g_printerr ("Unable to bind original key as well! Oh shit...\n");
233         }
234         else
235                 g_printerr ("No original key to revert to!\n");
236
237         return FALSE;
238 }
239
240 static void
241 tilda_window_dbus_register_object (TildaWindow *tw)
242 {
243         gchar *object_path;
244
245         // Register this object with DBus
246         object_path = g_strdup_printf ("/net/sourceforge/Tilda/Window%d", tw->number);
247         dbus_g_connection_register_g_object (dbus_connection, object_path, G_OBJECT(tw));
248         g_free (object_path);
249 }
250
251 /*******************************************************************************
252  * ALL GOBJECT STUFF BELOW PLEASE
253  ******************************************************************************/
254
255 static GObjectClass *parent_class = NULL;
256
257 enum tilda_window_properties {
258         TILDA_WINDOW_NUMBER = 1,
259
260         TILDA_WINDOW_KEY,
261
262         TILDA_WINDOW_HEIGHT,
263         TILDA_WINDOW_WIDTH,
264         TILDA_WINDOW_X_POSITION,
265         TILDA_WINDOW_Y_POSITION,
266
267         TILDA_WINDOW_TAB_POSITION,
268         TILDA_WINDOW_ANIMATION_ORIENTATION,
269         TILDA_WINDOW_ANIMATION_DELAY,
270
271         TILDA_WINDOW_KEEP_ABOVE,
272         TILDA_WINDOW_SHOW_IN_TASKBAR,
273         TILDA_WINDOW_PINNED,
274         TILDA_WINDOW_HIDDEN_AT_START,
275         TILDA_WINDOW_CENTERED_HORIZONTALLY,
276         TILDA_WINDOW_CENTERED_VERTICALLY,
277
278         TILDA_WINDOW_HAVE_REAL_TRANSPARENCY,
279 };
280
281 static void
282 tilda_window_instance_init (GTypeInstance *instance,
283                                                         gpointer       g_class)
284 {
285         TildaWindow *self = (TildaWindow *) instance;
286         self->dispose_has_run = FALSE;
287
288         /* Initialize all properties */
289         self->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
290         self->notebook = gtk_notebook_new ();
291         self->terms = g_ptr_array_new ();
292
293         /* Somewhat of a "poison" value, incase we don't set this */
294         self->number = 0xdeadbeef;
295
296         self->state = WINDOW_UP;
297 }
298
299 static void
300 tilda_window_set_property (GObject      *object,
301                                                    guint         property_id,
302                                                    const GValue *value,
303                                                    GParamSpec   *pspec)
304 {
305         TildaWindow *self = (TildaWindow *) object;
306
307         switch (property_id) {
308
309                 case TILDA_WINDOW_NUMBER:
310                         self->number = g_value_get_int (value);
311                         g_print ("window number: %d\n", self->number);
312                         break;
313
314                 case TILDA_WINDOW_KEY:
315                         tilda_window_try_to_bind_key (self, g_value_get_string (value));
316                         g_print ("window key: %s\n", self->key);
317                         break;
318
319                 case TILDA_WINDOW_HEIGHT:
320                         self->height = g_value_get_int (value);
321                         gtk_widget_set_size_request (self->window, self->width, self->height);
322                         gtk_window_resize (GTK_WINDOW(self->window), self->width, self->height);
323                         g_print ("window height: %d\n", self->height);
324                         break;
325
326                 case TILDA_WINDOW_WIDTH:
327                         self->width = g_value_get_int (value);
328                         gtk_widget_set_size_request (self->window, self->width, self->height);
329                         gtk_window_resize (GTK_WINDOW(self->window), self->width, self->height);
330                         g_print ("window width: %d\n", self->width);
331                         break;
332
333                 case TILDA_WINDOW_X_POSITION:
334                         self->x_position = g_value_get_int (value);
335                         gtk_window_move (GTK_WINDOW(self->window), self->x_position, self->y_position);
336                         g_print ("window x position: %d\n", self->x_position);
337                         break;
338
339                 case TILDA_WINDOW_Y_POSITION:
340                         self->y_position = g_value_get_int (value);
341                         gtk_window_move (GTK_WINDOW(self->window), self->x_position, self->y_position);
342                         g_print ("window y position: %d\n", self->y_position);
343                         break;
344
345                 case TILDA_WINDOW_TAB_POSITION:
346                         self->tab_position = g_value_get_int (value);
347                         g_print ("window tab position: %d\n", self->tab_position);
348                         break;
349
350                 case TILDA_WINDOW_ANIMATION_ORIENTATION:
351                         self->animation_orientation = g_value_get_int (value);
352                         g_print ("window animation orientation: %d\n", self->animation_orientation);
353                         break;
354
355                 case TILDA_WINDOW_ANIMATION_DELAY:
356                         self->animation_delay = g_value_get_int (value);
357                         g_print ("window animation delay: %d\n", self->animation_delay);
358                         break;
359
360                 case TILDA_WINDOW_KEEP_ABOVE:
361                         self->keep_above = g_value_get_boolean (value);
362                         g_print ("window keep above: %d\n", self->keep_above);
363                         break;
364
365                 case TILDA_WINDOW_SHOW_IN_TASKBAR:
366                         self->show_in_taskbar = g_value_get_boolean (value);
367                         g_print ("window show in taskbar: %d\n", self->show_in_taskbar);
368                         break;
369
370                 case TILDA_WINDOW_PINNED:
371                         self->pinned = g_value_get_boolean (value);
372                         g_print ("window pinned: %d\n", self->pinned);
373                         break;
374
375                 case TILDA_WINDOW_HIDDEN_AT_START:
376                         self->hidden_at_start = g_value_get_boolean (value);
377                         g_print ("window hidden at start: %d\n", self->hidden_at_start);
378                         break;
379
380                 case TILDA_WINDOW_CENTERED_HORIZONTALLY:
381                         self->centered_horizontally = g_value_get_boolean (value);
382                         g_print ("window centered horizontally: %d\n", self->centered_horizontally);
383                         break;
384
385                 case TILDA_WINDOW_CENTERED_VERTICALLY:
386                         self->centered_vertically = g_value_get_boolean (value);
387                         g_print ("window centered vertically: %d\n", self->centered_vertically);
388                         break;
389
390                 case TILDA_WINDOW_HAVE_REAL_TRANSPARENCY:
391                         self->have_real_transparency = g_value_get_boolean (value);
392                         g_print ("window have real transp: %d\n", self->have_real_transparency);
393                         break;
394
395                 default:
396                         /* We don't have this property */
397                         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
398                         break;
399         }
400 }
401
402 static void
403 tilda_window_get_property (GObject    *object,
404                                                    guint       property_id,
405                                                    GValue     *value,
406                                                    GParamSpec *pspec)
407 {
408         TildaWindow *self = (TildaWindow *) object;
409
410         switch (property_id) {
411
412                 case TILDA_WINDOW_NUMBER:
413                         g_value_set_int (value, self->number);
414                         break;
415
416                 case TILDA_WINDOW_KEY:
417                         g_value_set_string (value, self->key);
418                         break;
419
420                 case TILDA_WINDOW_HEIGHT:
421                         g_value_set_int (value, self->height);
422                         break;
423
424                 case TILDA_WINDOW_WIDTH:
425                         g_value_set_int (value, self->width);
426                         break;
427
428                 case TILDA_WINDOW_X_POSITION:
429                         g_value_set_int (value, self->x_position);
430                         break;
431
432                 case TILDA_WINDOW_Y_POSITION:
433                         g_value_set_int (value, self->y_position);
434                         break;
435
436                 case TILDA_WINDOW_TAB_POSITION:
437                         g_value_set_int (value, self->tab_position);
438                         break;
439
440                 case TILDA_WINDOW_ANIMATION_ORIENTATION:
441                         g_value_set_int (value, self->animation_orientation);
442                         break;
443
444                 case TILDA_WINDOW_ANIMATION_DELAY:
445                         g_value_set_int (value, self->animation_delay);
446                         break;
447
448                 case TILDA_WINDOW_KEEP_ABOVE:
449                         g_value_set_boolean (value, self->keep_above);
450                         break;
451
452                 case TILDA_WINDOW_SHOW_IN_TASKBAR:
453                         g_value_set_boolean (value, self->show_in_taskbar);
454                         break;
455
456                 case TILDA_WINDOW_PINNED:
457                         g_value_set_boolean (value, self->pinned);
458                         break;
459
460                 case TILDA_WINDOW_HIDDEN_AT_START:
461                         g_value_set_boolean (value, self->hidden_at_start);
462                         break;
463
464                 case TILDA_WINDOW_CENTERED_HORIZONTALLY:
465                         g_value_set_boolean (value, self->centered_horizontally);
466                         break;
467
468                 case TILDA_WINDOW_CENTERED_VERTICALLY:
469                         g_value_set_boolean (value, self->centered_vertically);
470                         break;
471
472                 case TILDA_WINDOW_HAVE_REAL_TRANSPARENCY:
473                         g_value_set_boolean (value, self->have_real_transparency);
474                         break;
475
476                 default:
477                         /* We don't have this property */
478                         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
479                         break;
480         }
481 }
482
483 static GObject *
484 tilda_window_constructor (GType                  type,
485                                                   guint                  n_construct_properties,
486                                                   GObjectConstructParam *construct_properties)
487 {
488         GObject *obj;
489         TildaWindow *self;
490
491         /* Invoke parent constructor */
492         TildaWindowClass *klass;
493         klass = TILDA_WINDOW_CLASS (g_type_class_peek (TILDA_TYPE_WINDOW));
494         obj = parent_class->constructor (type,
495                                                                          n_construct_properties,
496                                                                          construct_properties);
497
498         /* Do other stuff here. The object is ready to go now, and all
499          * ctor properties have been set.
500          *
501          * TODO: This is the place to do DBus-init */
502         self = TILDA_WINDOW(obj);
503
504         /* Register this object with DBus */
505         tilda_window_dbus_register_object (self);
506
507         /* Try to set up real transparency */
508         tilda_window_setup_real_transparency (self);
509
510         gtk_container_add (GTK_CONTAINER(self->window), self->notebook);
511         gtk_widget_show (self->notebook);
512
513         // FIXME: Remove these, and replace with reads from the config system
514         g_object_set (G_OBJECT(self), "key", "F2", NULL);
515         g_object_set (G_OBJECT(self), "x-position", 0, "y-position", 0, NULL);
516         g_object_set (G_OBJECT(self), "height", 400, "width", 1680, NULL);
517
518         gtk_window_set_decorated (GTK_WINDOW(self->window), FALSE);
519
520         tilda_window_add_term (self);
521         tilda_window_add_term (self);
522         gtk_widget_show_all (self->window);
523         self->state = WINDOW_DOWN;
524
525         return obj;
526 }
527
528 static void
529 my_unref (gpointer data, gpointer user_data)
530 {
531         g_object_unref (G_OBJECT(data));
532 }
533
534 static void
535 tilda_window_dispose (GObject *obj)
536 {
537         TildaWindow *self = (TildaWindow *) obj;
538
539         /* We don't want to run dispose twice, so just return immediately */
540         if (self->dispose_has_run)
541                 return;
542
543         /*
544          * In dispose, you are supposed to free all types referenced from this
545          * object which might themselves hold a reference to self. Generally,
546          * the most simple solution is to unref all members on which you own a
547          * reference.
548          *
549          * NOTE: See the following for how to deal with GtkObject-derived things:
550          * http://library.gnome.org/devel/gtk/unstable/GtkObject.html
551          */
552         g_ptr_array_foreach (self->terms, my_unref, NULL);
553         gtk_widget_destroy (self->window);
554
555         /* Chain up to the parent class */
556         G_OBJECT_CLASS (parent_class)->dispose (obj);
557 }
558
559 static void
560 tilda_window_finalize (GObject *obj)
561 {
562         TildaWindow *self = (TildaWindow *) obj;
563
564         /*
565          * Here, complete the object's destruction.
566          * You might not need to do much...
567          */
568         // TODO: g_free() any primitives here
569         g_ptr_array_free (self->terms, TRUE);
570
571
572         /* Chain up to the parent class */
573         G_OBJECT_CLASS (parent_class)->finalize (obj);
574 }
575
576 static void
577 tilda_window_class_init (gpointer g_class,
578                                                  gpointer g_class_data)
579 {
580         GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
581         TildaWindowClass *klass = TILDA_WINDOW_CLASS (g_class);
582         GParamSpec *pspec;
583
584         /* Hook our functions to this type */
585         gobject_class->set_property = tilda_window_set_property;
586         gobject_class->get_property = tilda_window_get_property;
587         gobject_class->dispose = tilda_window_dispose;
588         gobject_class->finalize = tilda_window_finalize;
589         gobject_class->constructor = tilda_window_constructor;
590
591         parent_class = g_type_class_peek_parent (klass);
592
593         /* Install all of the properties */
594         pspec = g_param_spec_int ("number",
595                                                           "Window number",
596                                                           "Set window's number",
597                                                           0,            // min value
598                                                           INT_MAX,      // max value
599                                                           0,            // def value
600                                                           G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
601
602         g_object_class_install_property (gobject_class,
603                                                                          TILDA_WINDOW_NUMBER,
604                                                                          pspec);
605
606         pspec = g_param_spec_string ("key",
607                                                                  "Window's drop-down keybinding",
608                                                                  NULL,
609                                                                  NULL,
610                                                                  G_PARAM_READWRITE);
611
612         g_object_class_install_property (gobject_class,
613                                                                          TILDA_WINDOW_KEY,
614                                                                          pspec);
615
616         pspec = g_param_spec_int ("height",
617                                                           "Window's height",
618                                                           NULL,
619                                                           0,
620                                                           INT_MAX,
621                                                           0,
622                                                           G_PARAM_READWRITE);
623
624         g_object_class_install_property (gobject_class,
625                                                                          TILDA_WINDOW_HEIGHT,
626                                                                          pspec);
627
628         pspec = g_param_spec_int ("width",
629                                                           "Window's width",
630                                                           NULL,
631                                                           0,
632                                                           INT_MAX,
633                                                           0,
634                                                           G_PARAM_READWRITE);
635
636         g_object_class_install_property (gobject_class,
637                                                                          TILDA_WINDOW_WIDTH,
638                                                                          pspec);
639
640         pspec = g_param_spec_int ("x-position",
641                                                           "Window's x position",
642                                                           NULL,
643                                                           0,
644                                                           INT_MAX,
645                                                           0,
646                                                           G_PARAM_READWRITE);
647
648         g_object_class_install_property (gobject_class,
649                                                                          TILDA_WINDOW_X_POSITION,
650                                                                          pspec);
651
652         pspec = g_param_spec_int ("y-position",
653                                                           "Window's y position",
654                                                           NULL,
655                                                           0,
656                                                           INT_MAX,
657                                                           0,
658                                                           G_PARAM_READWRITE);
659
660         g_object_class_install_property (gobject_class,
661                                                                          TILDA_WINDOW_Y_POSITION,
662                                                                          pspec);
663
664         pspec = g_param_spec_int ("tab-position",
665                                                           "Window's tab position",
666                                                           NULL,
667                                                           0,
668                                                           INT_MAX,
669                                                           0,
670                                                           G_PARAM_READWRITE);
671
672         g_object_class_install_property (gobject_class,
673                                                                          TILDA_WINDOW_TAB_POSITION,
674                                                                          pspec);
675
676         pspec = g_param_spec_int ("animation-orientation",
677                                                           "Window's animation orientation",
678                                                           NULL,
679                                                           0,
680                                                           INT_MAX,
681                                                           0,
682                                                           G_PARAM_READWRITE);
683
684         g_object_class_install_property (gobject_class,
685                                                                          TILDA_WINDOW_ANIMATION_ORIENTATION,
686                                                                          pspec);
687
688         pspec = g_param_spec_int ("animation-delay",
689                                                           "Amount of time in milliseconds between animation intervals",
690                                                           NULL,
691                                                           0,
692                                                           INT_MAX,
693                                                           0,
694                                                           G_PARAM_READWRITE);
695
696         g_object_class_install_property (gobject_class,
697                                                                          TILDA_WINDOW_ANIMATION_DELAY,
698                                                                          pspec);
699
700         pspec = g_param_spec_boolean ("keep-above",
701                                                                   "Keep this window above all others",
702                                                                   NULL,
703                                                                   FALSE,
704                                                                   G_PARAM_READWRITE);
705
706         g_object_class_install_property (gobject_class,
707                                                                          TILDA_WINDOW_KEEP_ABOVE,
708                                                                          pspec);
709
710         pspec = g_param_spec_boolean ("show-in-taskbar",
711                                                                   "Show this window in the taskbar",
712                                                                   NULL,
713                                                                   FALSE,
714                                                                   G_PARAM_READWRITE);
715
716         g_object_class_install_property (gobject_class,
717                                                                          TILDA_WINDOW_SHOW_IN_TASKBAR,
718                                                                          pspec);
719
720         pspec = g_param_spec_boolean ("pinned",
721                                                                   "Display this window on all workspaces",
722                                                                   NULL,
723                                                                   FALSE,
724                                                                   G_PARAM_READWRITE);
725
726         g_object_class_install_property (gobject_class,
727                                                                          TILDA_WINDOW_PINNED,
728                                                                          pspec);
729
730         pspec = g_param_spec_boolean ("hidden-at-start",
731                                                                   "Hide the window when it is first created",
732                                                                   NULL,
733                                                                   FALSE,
734                                                                   G_PARAM_READWRITE);
735
736         g_object_class_install_property (gobject_class,
737                                                                          TILDA_WINDOW_HIDDEN_AT_START,
738                                                                          pspec);
739
740         pspec = g_param_spec_boolean ("centered-horizontally",
741                                                                   "Center the window horizontally",
742                                                                   NULL,
743                                                                   FALSE,
744                                                                   G_PARAM_READWRITE);
745
746         g_object_class_install_property (gobject_class,
747                                                                          TILDA_WINDOW_CENTERED_HORIZONTALLY,
748                                                                          pspec);
749
750         pspec = g_param_spec_boolean ("centered-vertically",
751                                                                   "Center the window vertically",
752                                                                   NULL,
753                                                                   FALSE,
754                                                                   G_PARAM_READWRITE);
755
756         g_object_class_install_property (gobject_class,
757                                                                          TILDA_WINDOW_CENTERED_VERTICALLY,
758                                                                          pspec);
759
760         pspec = g_param_spec_boolean ("have-real-transparency",
761                                                                   NULL, NULL, FALSE, G_PARAM_READABLE);
762
763         g_object_class_install_property (gobject_class,
764                                                                          TILDA_WINDOW_HAVE_REAL_TRANSPARENCY,
765                                                                          pspec);
766
767         /* TODO: more properties */
768
769         /* Hook the TildaWindow type into DBus */
770         dbus_g_object_type_install_info (tilda_window_get_type(), &dbus_glib_tilda_window_object_info);
771 }
772
773 GType
774 tilda_window_get_type (void)
775 {
776         static GType type = 0;
777
778         if (type == 0)
779         {
780                 static const GTypeInfo info = {
781                         sizeof (TildaWindowClass),
782                         NULL,   /* base_init */
783                         NULL,   /* base_finalize */
784                         tilda_window_class_init,        /* class_init */
785                         NULL,   /* class_finalize */
786                         NULL,   /* class_data */
787                         sizeof (TildaWindow),
788                         0,              /* n_preallocs */
789                         tilda_window_instance_init,     /* instance_init */
790                 };
791
792                 type = g_type_register_static (G_TYPE_OBJECT,
793                                                                            "TildaWindowType",
794                                                                            &info,
795                                                                            0);
796         }
797
798         return type;
799 }
800
801 #if 0
802
803 int main (int argc, char *argv[])
804 {
805         GObject *tw;
806         gint test_number = INT_MIN;
807
808         /* Initialize the GObject type system */
809         g_type_init ();
810         gtk_init (&argc, &argv);
811
812         tw = g_object_new (TILDA_TYPE_WINDOW, "number", 10, NULL);
813         g_object_get (G_OBJECT (tw), "number", &test_number, NULL);
814         g_assert (test_number == 10);
815
816         g_object_unref (G_OBJECT (tw));
817
818         tw = g_object_new (TILDA_TYPE_WINDOW, "number", 22, NULL);
819         g_object_get (G_OBJECT (tw), "number", &test_number, NULL);
820         g_assert (test_number == 22);
821
822         gtk_main ();
823
824         g_object_unref (G_OBJECT (tw));
825
826         return 0;
827 }
828
829 #endif
830
831 /* vim: set ts=4 sts=4 sw=4 noet tw=112: */