]> git.0d.be Git - empathy.git/blob - nothere/src/nothere-applet.c
Make possible to remove nothere applet from planel and activate it by defaut if dep...
[empathy.git] / nothere / src / nothere-applet.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * Copyright (C) 2007 Raphaël Slinckx <raphael@slinckx.net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Authors: Raphaël Slinckx <raphael@slinckx.net>
20  */
21
22 #include "config.h"
23
24 #include <string.h>
25
26 #include <glib/gi18n.h>
27 #include <gtk/gtk.h>
28 #include <bonobo/bonobo-ui-component.h>
29
30 #include <libmissioncontrol/mission-control.h>
31 #include <libempathy-gtk/empathy-presence-chooser.h>
32
33 #include "nothere-applet.h"
34
35 G_DEFINE_TYPE(NotHereApplet, nothere_applet, PANEL_TYPE_APPLET)
36
37 static void nothere_applet_destroy  (GtkObject         *object);
38 static void nothere_applet_about_cb (BonoboUIComponent *uic,
39                                      NotHereApplet     *applet, 
40                                      const gchar       *verb_name);
41
42 static const BonoboUIVerb nothere_applet_menu_verbs [] = {
43         BONOBO_UI_UNSAFE_VERB ("about", nothere_applet_about_cb),
44         BONOBO_UI_VERB_END
45 };
46
47 static const char* authors[] = {
48         "Raphaël Slinckx <raphael@slinckx.net>", 
49         NULL
50 };
51
52 static void
53 nothere_applet_class_init (NotHereAppletClass *class)
54 {
55         GTK_OBJECT_CLASS (class)->destroy = nothere_applet_destroy;
56 }
57
58 static gboolean
59 do_not_eat_button_press (GtkWidget      *widget,
60                          GdkEventButton *event)
61 {
62         if (event->button != 1) {
63                 g_signal_stop_emission_by_name (widget, "button_press_event");
64         }
65
66         return FALSE;
67 }
68
69 static void
70 nothere_applet_init (NotHereApplet *applet)
71 {
72         applet->presence_chooser = empathy_presence_chooser_new ();
73         g_signal_connect (G_OBJECT (applet->presence_chooser), "button_press_event",
74                           G_CALLBACK (do_not_eat_button_press), NULL);
75
76         gtk_widget_show (applet->presence_chooser);
77
78         gtk_container_add (GTK_CONTAINER (applet), applet->presence_chooser);
79
80         panel_applet_set_flags (PANEL_APPLET (applet), PANEL_APPLET_EXPAND_MINOR);
81         panel_applet_set_background_widget (PANEL_APPLET (applet), GTK_WIDGET (applet));
82 }
83
84 static void
85 nothere_applet_destroy (GtkObject *object)
86 {
87         NotHereApplet *applet = NOTHERE_APPLET (object);
88
89         applet->presence_chooser = NULL;
90
91         (* GTK_OBJECT_CLASS (nothere_applet_parent_class)->destroy) (object);
92 }
93
94 static void
95 nothere_applet_about_cb (BonoboUIComponent *uic, 
96                          NotHereApplet     *applet, 
97                          const gchar       *verb_name)
98 {
99         gtk_show_about_dialog (NULL,
100                                "name", "Presence", 
101                                "version", PACKAGE_VERSION,
102                                "copyright", "Copyright \xc2\xa9 2007 Raphaël Slinckx",
103                                "comments", _("Set your own presence"),
104                                "authors", authors,
105                                "logo-icon-name", "stock_people",
106                                NULL);
107 }
108
109 static gboolean
110 nothere_applet_factory (PanelApplet *applet, 
111                         const gchar *iid, 
112                         gpointer     data)
113 {
114         if (strcmp (iid, "OAFIID:GNOME_NotHere_Applet") != 0) {
115                 return FALSE;
116         }
117         
118         /* Set up the menu */
119         panel_applet_setup_menu_from_file (applet,
120                                            PKGDATADIR,
121                                            "GNOME_NotHere_Applet.xml",
122                                            NULL,
123                                            nothere_applet_menu_verbs,
124                                            applet);
125
126         gtk_widget_show (GTK_WIDGET (applet));
127         return TRUE;
128 }
129
130 PANEL_APPLET_BONOBO_FACTORY ("OAFIID:GNOME_NotHere_Applet_Factory",
131                              NOTHERE_TYPE_APPLET,
132                              "Presence", PACKAGE_VERSION,
133                              nothere_applet_factory,
134                              NULL);