]> git.0d.be Git - empathy.git/blob - nothere/src/nothere-applet.c
Fix icon lookup in nothere. Fixes bug #527924 (Frederic Peters).
[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         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
58                         PKGDATADIR G_DIR_SEPARATOR_S "icons");
59 }
60
61 static gboolean
62 do_not_eat_button_press (GtkWidget      *widget,
63                          GdkEventButton *event)
64 {
65         if (event->button != 1) {
66                 g_signal_stop_emission_by_name (widget, "button_press_event");
67         }
68
69         return FALSE;
70 }
71
72 static void
73 nothere_applet_init (NotHereApplet *applet)
74 {
75         applet->presence_chooser = empathy_presence_chooser_new ();
76         g_signal_connect (G_OBJECT (applet->presence_chooser), "button_press_event",
77                           G_CALLBACK (do_not_eat_button_press), NULL);
78
79         gtk_widget_show (applet->presence_chooser);
80
81         gtk_container_add (GTK_CONTAINER (applet), applet->presence_chooser);
82
83         panel_applet_set_flags (PANEL_APPLET (applet), PANEL_APPLET_EXPAND_MINOR);
84         panel_applet_set_background_widget (PANEL_APPLET (applet), GTK_WIDGET (applet));
85 }
86
87 static void
88 nothere_applet_destroy (GtkObject *object)
89 {
90         NotHereApplet *applet = NOTHERE_APPLET (object);
91
92         applet->presence_chooser = NULL;
93
94         (* GTK_OBJECT_CLASS (nothere_applet_parent_class)->destroy) (object);
95 }
96
97 static void
98 nothere_applet_about_cb (BonoboUIComponent *uic, 
99                          NotHereApplet     *applet, 
100                          const gchar       *verb_name)
101 {
102         gtk_show_about_dialog (NULL,
103                                "name", "Presence", 
104                                "version", PACKAGE_VERSION,
105                                "copyright", "Copyright \xc2\xa9 2007 Raphaël Slinckx",
106                                "comments", _("Set your own presence"),
107                                "authors", authors,
108                                "logo-icon-name", "stock_people",
109                                NULL);
110 }
111
112 static gboolean
113 nothere_applet_factory (PanelApplet *applet, 
114                         const gchar *iid, 
115                         gpointer     data)
116 {
117         if (strcmp (iid, "OAFIID:GNOME_NotHere_Applet") != 0) {
118                 return FALSE;
119         }
120         
121         /* Set up the menu */
122         panel_applet_setup_menu_from_file (applet,
123                                            PKGDATADIR,
124                                            "GNOME_NotHere_Applet.xml",
125                                            NULL,
126                                            nothere_applet_menu_verbs,
127                                            applet);
128
129         gtk_widget_show (GTK_WIDGET (applet));
130         return TRUE;
131 }
132
133 PANEL_APPLET_BONOBO_FACTORY ("OAFIID:GNOME_NotHere_Applet_Factory",
134                              NOTHERE_TYPE_APPLET,
135                              "Presence", PACKAGE_VERSION,
136                              nothere_applet_factory,
137                              NULL);