2 #include "tilda-window.h"
3 #include "tilda-window-dbus-glue.h"
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.
10 static TildaTerminal *
11 tilda_window_find_current_terminal (TildaWindow *self)
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);
18 for (i=0; i<self->terms->len; ++i)
20 ret = g_ptr_array_index (self->terms, i);
26 g_printerr ("FIXME: unable to find current terminal!\n");
31 tilda_window_find_next_free_terminal_number (TildaWindow *tw)
36 for (i=0; i<INT_MAX; ++i)
40 for (j=0; j<tw->terms->len; ++j)
42 TildaTerminal *tt = g_ptr_array_index (tw->terms, j);
59 tilda_window_add_term (TildaWindow *tw)
64 number = tilda_window_find_next_free_terminal_number (tw);
65 tt = g_object_new (TILDA_TYPE_TERMINAL,
67 "window-number", tw->number,
70 g_ptr_array_add (tw->terms, tt);
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);
77 if (gtk_notebook_get_n_pages (GTK_NOTEBOOK(tw->notebook)) > 1)
78 gtk_notebook_set_show_tabs (GTK_NOTEBOOK(tw->notebook), TRUE);
84 * Remove the TildaTerminal with the given number from the given
87 * Return: TRUE on success, FALSE otherwise.
90 tilda_window_remove_term (TildaWindow *tw, gint terminal_number)
94 for (i=0; i<tw->terms->len; ++i)
96 TildaTerminal *tt = g_ptr_array_index (tw->terms, i);
98 if (tt->number == terminal_number)
100 gint notebook_index = gtk_notebook_page_num (GTK_NOTEBOOK(tw->notebook), tt->hbox);
102 /* Make sure the index was valid */
103 if (notebook_index == -1)
105 g_printerr ("DEBUG ERROR: Bad Notebook Tab\n");
109 /* Actually remove the terminal */
110 gtk_notebook_remove_page (GTK_NOTEBOOK (tw->notebook), notebook_index);
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);
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)
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));
127 /* Leave the loop, we're done */
136 * This sets up the given TildaWindow for the capability of real
137 * transparency, if the X server is capable of it. */
139 tilda_window_setup_real_transparency (TildaWindow *self)
142 GdkColormap *colormap;
144 screen = gtk_widget_get_screen (GTK_WIDGET(self->window));
145 colormap = gdk_screen_get_rgba_colormap (screen);
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))
151 gtk_widget_set_colormap (GTK_WIDGET(self->window), colormap);
152 self->have_real_transparency = TRUE;
156 self->have_real_transparency = FALSE;
160 tilda_window_keybinding_cb (const gchar *keystr, gpointer data)
162 TildaWindow *self = TILDA_WINDOW(data);
164 g_print ("tilda_window_keybinding_cb() called! -- window %d\n", self->number);
166 // FIXME: this doesn't handle animation!
170 case WINDOW_UP: /* Pull the window up */
172 /* Bugfix: having this here keeps the tilda window from being
173 * hidden if you turn off "stick", pull it down on workspace 1,
174 * switch to workspace 2, then pull it up and back down. Without
175 * this, something in metacity (at least) hides the window. Stupid. */
176 gtk_window_deiconify (GTK_WINDOW(self->window));
178 /* Re-set the window properties that do not linger after hiding the
179 * window. I know this looks stupid, but it keeps all of the state-
180 * changing code in the place it belongs: the property-setting code. */
181 g_object_set (G_OBJECT(self),
182 "keep-above", self->keep_above,
183 "stick", self->stick,
185 gtk_window_present_with_time (GTK_WINDOW(self->window),
186 tomboy_keybinder_get_current_event_time());
188 /* Focusing the term here works perfectly, near as I can tell */
189 tt = tilda_window_find_current_terminal (self);
190 gtk_widget_grab_focus (GTK_WIDGET(tt->vte_term));
192 self->state = WINDOW_DOWN;
195 case WINDOW_DOWN: /* Pull the window up */
197 gtk_widget_hide (GTK_WIDGET(self->window));
199 self->state = WINDOW_UP;
203 g_printerr ("FIXME: the window is in a bad state!\n");
205 /* Pretend we're down, for good measure.... */
206 self->state = WINDOW_DOWN;
212 * Attempt to bind the new_key to show this window.
214 * Return: TRUE if successful, FALSE otherwise.
217 tilda_window_try_to_bind_key (TildaWindow *self, const gchar *new_key)
219 gboolean ret = FALSE;
221 /* Make sure the new key is not null in any way */
222 if (new_key == NULL || strcmp("", new_key) == 0)
225 /* Unbind if we were set */
227 tomboy_keybinder_unbind (self->key, tilda_window_keybinding_cb, self);
229 ret = tomboy_keybinder_bind (new_key, tilda_window_keybinding_cb, self);
231 /* If it was successful, update the self->key variable and be done with it */
235 self->key = g_strdup (new_key);
239 g_printerr ("Keybinding unsuccessful. Reverting to original key\n");
241 /* Not successful, so rebind the old key, and return FALSE */
242 if (self->key != NULL && strcmp("",self->key) != 0)
244 ret = tomboy_keybinder_bind (self->key, tilda_window_keybinding_cb, self);
246 /* Check that it went ok */
248 g_printerr ("Unable to bind original key as well! Oh shit...\n");
251 g_printerr ("No original key to revert to!\n");
257 tilda_window_dbus_register_object (TildaWindow *tw)
261 // Register this object with DBus
262 object_path = g_strdup_printf ("/net/sourceforge/Tilda/Window%d", tw->number);
263 dbus_g_connection_register_g_object (dbus_connection, object_path, G_OBJECT(tw));
264 g_free (object_path);
267 /*******************************************************************************
268 * ALL GOBJECT STUFF BELOW PLEASE
269 ******************************************************************************/
271 static GObjectClass *parent_class = NULL;
273 enum tilda_window_properties {
274 TILDA_WINDOW_NUMBER = 1,
280 TILDA_WINDOW_X_POSITION,
281 TILDA_WINDOW_Y_POSITION,
283 TILDA_WINDOW_TAB_POSITION,
284 TILDA_WINDOW_ANIMATION_ORIENTATION,
285 TILDA_WINDOW_ANIMATION_DELAY,
287 TILDA_WINDOW_KEEP_ABOVE,
288 TILDA_WINDOW_SKIP_TASKBAR_HINT,
290 TILDA_WINDOW_HIDDEN_AT_START,
291 TILDA_WINDOW_CENTERED_HORIZONTALLY,
292 TILDA_WINDOW_CENTERED_VERTICALLY,
294 TILDA_WINDOW_HAVE_REAL_TRANSPARENCY,
298 tilda_window_instance_init (GTypeInstance *instance,
301 TildaWindow *self = (TildaWindow *) instance;
302 self->dispose_has_run = FALSE;
304 /* Initialize all properties */
305 self->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
306 self->notebook = gtk_notebook_new ();
307 self->terms = g_ptr_array_new ();
309 /* Somewhat of a "poison" value, incase we don't set this */
310 self->number = 0xdeadbeef;
312 self->state = WINDOW_UP;
316 tilda_window_set_property (GObject *object,
321 TildaWindow *self = (TildaWindow *) object;
323 switch (property_id) {
325 case TILDA_WINDOW_NUMBER:
326 self->number = g_value_get_int (value);
327 g_print ("window number: %d\n", self->number);
330 case TILDA_WINDOW_KEY:
331 tilda_window_try_to_bind_key (self, g_value_get_string (value));
332 g_print ("window key: %s\n", self->key);
335 case TILDA_WINDOW_HEIGHT:
336 self->height = g_value_get_int (value);
337 gtk_widget_set_size_request (self->window, self->width, self->height);
338 gtk_window_resize (GTK_WINDOW(self->window), self->width, self->height);
339 g_print ("window height: %d\n", self->height);
342 case TILDA_WINDOW_WIDTH:
343 self->width = g_value_get_int (value);
344 gtk_widget_set_size_request (self->window, self->width, self->height);
345 gtk_window_resize (GTK_WINDOW(self->window), self->width, self->height);
346 g_print ("window width: %d\n", self->width);
349 case TILDA_WINDOW_X_POSITION:
350 self->x_position = g_value_get_int (value);
351 gtk_window_move (GTK_WINDOW(self->window), self->x_position, self->y_position);
352 g_print ("window x position: %d\n", self->x_position);
355 case TILDA_WINDOW_Y_POSITION:
356 self->y_position = g_value_get_int (value);
357 gtk_window_move (GTK_WINDOW(self->window), self->x_position, self->y_position);
358 g_print ("window y position: %d\n", self->y_position);
361 case TILDA_WINDOW_TAB_POSITION:
362 self->tab_position = g_value_get_int (value);
363 gtk_notebook_set_tab_pos (GTK_NOTEBOOK(self->notebook), self->tab_position);
364 g_print ("window tab position: %d\n", self->tab_position);
367 case TILDA_WINDOW_ANIMATION_ORIENTATION:
368 self->animation_orientation = g_value_get_int (value);
369 g_print ("window animation orientation: %d\n", self->animation_orientation);
372 case TILDA_WINDOW_ANIMATION_DELAY:
373 self->animation_delay = g_value_get_int (value);
374 g_print ("window animation delay: %d\n", self->animation_delay);
377 case TILDA_WINDOW_KEEP_ABOVE:
378 self->keep_above = g_value_get_boolean (value);
379 gtk_window_set_keep_above (GTK_WINDOW(self->window), self->keep_above);
380 g_print ("window keep above: %d\n", self->keep_above);
383 case TILDA_WINDOW_SKIP_TASKBAR_HINT:
384 self->skip_taskbar_hint = g_value_get_boolean (value);
385 gtk_window_set_skip_taskbar_hint (GTK_WINDOW(self->window), self->skip_taskbar_hint);
386 g_print ("window skip taskbar hint: %d\n", self->skip_taskbar_hint);
389 case TILDA_WINDOW_STICK:
390 self->stick = g_value_get_boolean (value);
392 /* This is moderately ugly, but GTK+ does it this way... */
393 self->stick ? gtk_window_stick (GTK_WINDOW(self->window))
394 : gtk_window_unstick (GTK_WINDOW(self->window));
395 g_print ("window stick: %d\n", self->stick);
398 case TILDA_WINDOW_HIDDEN_AT_START:
399 self->hidden_at_start = g_value_get_boolean (value);
400 g_print ("window hidden at start: %d\n", self->hidden_at_start);
403 case TILDA_WINDOW_CENTERED_HORIZONTALLY:
404 self->centered_horizontally = g_value_get_boolean (value);
405 g_print ("window centered horizontally: %d\n", self->centered_horizontally);
408 case TILDA_WINDOW_CENTERED_VERTICALLY:
409 self->centered_vertically = g_value_get_boolean (value);
410 g_print ("window centered vertically: %d\n", self->centered_vertically);
413 case TILDA_WINDOW_HAVE_REAL_TRANSPARENCY:
414 self->have_real_transparency = g_value_get_boolean (value);
415 g_print ("window have real transp: %d\n", self->have_real_transparency);
419 /* We don't have this property */
420 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
426 tilda_window_get_property (GObject *object,
431 TildaWindow *self = (TildaWindow *) object;
433 switch (property_id) {
435 case TILDA_WINDOW_NUMBER:
436 g_value_set_int (value, self->number);
439 case TILDA_WINDOW_KEY:
440 g_value_set_string (value, self->key);
443 case TILDA_WINDOW_HEIGHT:
444 g_value_set_int (value, self->height);
447 case TILDA_WINDOW_WIDTH:
448 g_value_set_int (value, self->width);
451 case TILDA_WINDOW_X_POSITION:
452 g_value_set_int (value, self->x_position);
455 case TILDA_WINDOW_Y_POSITION:
456 g_value_set_int (value, self->y_position);
459 case TILDA_WINDOW_TAB_POSITION:
460 g_value_set_int (value, self->tab_position);
463 case TILDA_WINDOW_ANIMATION_ORIENTATION:
464 g_value_set_int (value, self->animation_orientation);
467 case TILDA_WINDOW_ANIMATION_DELAY:
468 g_value_set_int (value, self->animation_delay);
471 case TILDA_WINDOW_KEEP_ABOVE:
472 g_value_set_boolean (value, self->keep_above);
475 case TILDA_WINDOW_SKIP_TASKBAR_HINT:
476 g_value_set_boolean (value, self->skip_taskbar_hint);
479 case TILDA_WINDOW_STICK:
480 g_value_set_boolean (value, self->stick);
483 case TILDA_WINDOW_HIDDEN_AT_START:
484 g_value_set_boolean (value, self->hidden_at_start);
487 case TILDA_WINDOW_CENTERED_HORIZONTALLY:
488 g_value_set_boolean (value, self->centered_horizontally);
491 case TILDA_WINDOW_CENTERED_VERTICALLY:
492 g_value_set_boolean (value, self->centered_vertically);
495 case TILDA_WINDOW_HAVE_REAL_TRANSPARENCY:
496 g_value_set_boolean (value, self->have_real_transparency);
500 /* We don't have this property */
501 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
507 tilda_window_constructor (GType type,
508 guint n_construct_properties,
509 GObjectConstructParam *construct_properties)
514 /* Invoke parent constructor */
515 TildaWindowClass *klass;
516 klass = TILDA_WINDOW_CLASS (g_type_class_peek (TILDA_TYPE_WINDOW));
517 obj = parent_class->constructor (type,
518 n_construct_properties,
519 construct_properties);
521 /* Do other stuff here. The object is ready to go now, and all
522 * ctor properties have been set.
524 * TODO: This is the place to do DBus-init */
525 self = TILDA_WINDOW(obj);
527 /* Register this object with DBus */
528 tilda_window_dbus_register_object (self);
530 /* Try to set up real transparency */
531 tilda_window_setup_real_transparency (self);
533 gtk_container_add (GTK_CONTAINER(self->window), self->notebook);
534 gtk_widget_show (self->notebook);
536 // FIXME: Remove these, and replace with reads from the config system
537 g_object_set (G_OBJECT(self), "key", "F2", NULL);
538 g_object_set (G_OBJECT(self), "x-position", 0, "y-position", 0, NULL);
539 g_object_set (G_OBJECT(self), "height", 400, "width", 1680, NULL);
541 gtk_window_set_decorated (GTK_WINDOW(self->window), FALSE);
543 // FIXME: It should be configurable how many terms we add at startup
544 tilda_window_add_term (self);
545 tilda_window_add_term (self);
547 /* Show us if we're ready. If not, just remain hidden. All sub-widgets must
548 * be gtk_widget_show()n by this point. */
549 if (!self->hidden_at_start)
551 gtk_widget_show (self->window);
552 self->state = WINDOW_DOWN;
555 self->state = WINDOW_UP;
561 my_unref (gpointer data, gpointer user_data)
563 g_object_unref (G_OBJECT(data));
567 tilda_window_dispose (GObject *obj)
569 TildaWindow *self = (TildaWindow *) obj;
571 /* We don't want to run dispose twice, so just return immediately */
572 if (self->dispose_has_run)
576 * In dispose, you are supposed to free all types referenced from this
577 * object which might themselves hold a reference to self. Generally,
578 * the most simple solution is to unref all members on which you own a
581 * NOTE: See the following for how to deal with GtkObject-derived things:
582 * http://library.gnome.org/devel/gtk/unstable/GtkObject.html
584 g_ptr_array_foreach (self->terms, my_unref, NULL);
585 gtk_widget_destroy (self->window);
587 /* Chain up to the parent class */
588 G_OBJECT_CLASS (parent_class)->dispose (obj);
592 tilda_window_finalize (GObject *obj)
594 TildaWindow *self = (TildaWindow *) obj;
597 * Here, complete the object's destruction.
598 * You might not need to do much...
600 // TODO: g_free() any primitives here
601 g_ptr_array_free (self->terms, TRUE);
604 /* Chain up to the parent class */
605 G_OBJECT_CLASS (parent_class)->finalize (obj);
609 tilda_window_class_init (gpointer g_class,
610 gpointer g_class_data)
612 GObjectClass *gobject_class = G_OBJECT_CLASS (g_class);
613 TildaWindowClass *klass = TILDA_WINDOW_CLASS (g_class);
616 /* Hook our functions to this type */
617 gobject_class->set_property = tilda_window_set_property;
618 gobject_class->get_property = tilda_window_get_property;
619 gobject_class->dispose = tilda_window_dispose;
620 gobject_class->finalize = tilda_window_finalize;
621 gobject_class->constructor = tilda_window_constructor;
623 parent_class = g_type_class_peek_parent (klass);
625 /* Install all of the properties */
626 pspec = g_param_spec_int ("number",
628 "Set window's number",
630 INT_MAX, // max value
632 G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
634 g_object_class_install_property (gobject_class,
638 pspec = g_param_spec_string ("key",
639 "Window's drop-down keybinding",
644 g_object_class_install_property (gobject_class,
648 pspec = g_param_spec_int ("height",
656 g_object_class_install_property (gobject_class,
660 pspec = g_param_spec_int ("width",
668 g_object_class_install_property (gobject_class,
672 pspec = g_param_spec_int ("x-position",
673 "Window's x position",
680 g_object_class_install_property (gobject_class,
681 TILDA_WINDOW_X_POSITION,
684 pspec = g_param_spec_int ("y-position",
685 "Window's y position",
692 g_object_class_install_property (gobject_class,
693 TILDA_WINDOW_Y_POSITION,
696 pspec = g_param_spec_int ("tab-position",
697 "Window's tab position",
704 g_object_class_install_property (gobject_class,
705 TILDA_WINDOW_TAB_POSITION,
708 pspec = g_param_spec_int ("animation-orientation",
709 "Window's animation orientation",
716 g_object_class_install_property (gobject_class,
717 TILDA_WINDOW_ANIMATION_ORIENTATION,
720 pspec = g_param_spec_int ("animation-delay",
721 "Amount of time in milliseconds between animation intervals",
728 g_object_class_install_property (gobject_class,
729 TILDA_WINDOW_ANIMATION_DELAY,
732 pspec = g_param_spec_boolean ("keep-above",
733 "Keep this window above all others",
738 g_object_class_install_property (gobject_class,
739 TILDA_WINDOW_KEEP_ABOVE,
742 pspec = g_param_spec_boolean ("skip-taskbar-hint",
743 "Hide this window in the taskbar if TRUE",
748 g_object_class_install_property (gobject_class,
749 TILDA_WINDOW_SKIP_TASKBAR_HINT,
752 pspec = g_param_spec_boolean ("stick",
753 "Display this window on all workspaces",
758 g_object_class_install_property (gobject_class,
762 pspec = g_param_spec_boolean ("hidden-at-start",
763 "Hide the window when it is first created",
768 g_object_class_install_property (gobject_class,
769 TILDA_WINDOW_HIDDEN_AT_START,
772 pspec = g_param_spec_boolean ("centered-horizontally",
773 "Center the window horizontally",
778 g_object_class_install_property (gobject_class,
779 TILDA_WINDOW_CENTERED_HORIZONTALLY,
782 pspec = g_param_spec_boolean ("centered-vertically",
783 "Center the window vertically",
788 g_object_class_install_property (gobject_class,
789 TILDA_WINDOW_CENTERED_VERTICALLY,
792 pspec = g_param_spec_boolean ("have-real-transparency",
793 NULL, NULL, FALSE, G_PARAM_READABLE);
795 g_object_class_install_property (gobject_class,
796 TILDA_WINDOW_HAVE_REAL_TRANSPARENCY,
799 /* TODO: more properties */
801 /* Hook the TildaWindow type into DBus */
802 dbus_g_object_type_install_info (tilda_window_get_type(), &dbus_glib_tilda_window_object_info);
806 tilda_window_get_type (void)
808 static GType type = 0;
812 static const GTypeInfo info = {
813 sizeof (TildaWindowClass),
814 NULL, /* base_init */
815 NULL, /* base_finalize */
816 tilda_window_class_init, /* class_init */
817 NULL, /* class_finalize */
818 NULL, /* class_data */
819 sizeof (TildaWindow),
821 tilda_window_instance_init, /* instance_init */
824 type = g_type_register_static (G_TYPE_OBJECT,
835 int main (int argc, char *argv[])
838 gint test_number = INT_MIN;
840 /* Initialize the GObject type system */
842 gtk_init (&argc, &argv);
844 tw = g_object_new (TILDA_TYPE_WINDOW, "number", 10, NULL);
845 g_object_get (G_OBJECT (tw), "number", &test_number, NULL);
846 g_assert (test_number == 10);
848 g_object_unref (G_OBJECT (tw));
850 tw = g_object_new (TILDA_TYPE_WINDOW, "number", 22, NULL);
851 g_object_get (G_OBJECT (tw), "number", &test_number, NULL);
852 g_assert (test_number == 22);
856 g_object_unref (G_OBJECT (tw));
863 /* vim: set ts=4 sts=4 sw=4 noet tw=112: */