implement launcher-items as an ordered dictionary of some sort
[simple-launcher] / simple-launcher.cc
1 // This file is a part of Simple Launcher
2 //
3 // Copyright (C) 2006, Mikhail Sobolev
4 //
5 // Simple Launcher is free software; you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License version 2 as published by
7 // the Free Software Foundation.
8 //
9 // This program is distributed in the hope that it will be useful, but WITHOUT
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12 // more details.
13 //
14 // You should have received a copy of the GNU General Public License along with
15 // this program; if not, write to the Free Software Foundation, Inc., 51
16 // Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 #include <string>
19 #include <vector>
20 #include <fstream>
21
22 #include <gtk/gtk.h>
23
24 #include <hildon-home-plugin/hildon-home-plugin-interface.h>
25 #include <libosso.h>
26
27 #include "launcher-item.h"
28 #include "sla-list.h"
29 #include "launchable-item.h"
30
31 #define SL_APPLET_DBUS_NAME  "simple-launcher"
32 #define SL_APPLET_VERSION    "0.0"
33 #define SL_APPLET_ICON_SIZE  26
34 #define SL_APPLET_BORDER_SIZE  14
35 #define SL_APPLET_CANVAS_SIZE  (SL_APPLET_BORDER_SIZE+SL_APPLET_BORDER_SIZE)
36
37 class SimpleLauncherApplet {
38 public:
39   SimpleLauncherApplet();
40  ~SimpleLauncherApplet();
41
42   bool doInit(void *state_data, int *state_size);
43
44   void background() {}
45   void foreground() {}
46   int saveState(void **state_data, int *state_size);
47   GtkWidget *settings(GtkWindow *parent);
48
49   GtkWidget *getWidget() { return myWidget; }
50
51 private:
52   void loadConfig();
53   void saveConfig();
54
55   bool initWidget();
56   void updateWidget();
57
58   void buttonClicked(GtkToolButton *);
59   void runDialog();
60
61   static void _button_clicked(GtkToolButton *, void *);
62   static void _run_dialog(GtkMenuItem *, void *);
63
64 private:
65   osso_context_t *myContext;
66   GtkWidget *myWidget;
67   GtkWindow *myParent;
68
69   LauncherItems myItems;
70
71   static char *ourDirs[];
72 };
73
74 // Hildon home applet interface functions
75
76 void *hildon_home_applet_lib_initialize(void *state_data, int *state_size, GtkWidget **widget) {
77   SimpleLauncherApplet *applet = new SimpleLauncherApplet();
78
79   if (applet != NULL) {
80     if (applet->doInit(state_data, state_size)) {
81       *widget = applet->getWidget();
82     } else {
83       delete applet;
84       applet = NULL;
85     }
86   }
87
88   return (void*)applet;
89 }
90
91 void hildon_home_applet_lib_deinitialize(void *applet_data) {
92   SimpleLauncherApplet *applet = (SimpleLauncherApplet *)applet_data;
93
94   delete applet;
95 }
96
97 void hildon_home_applet_lib_background(void *applet_data) {
98   ((SimpleLauncherApplet *)applet_data)->background();
99 }
100
101 void hildon_home_applet_lib_foreground (void *applet_data) {
102   ((SimpleLauncherApplet *)applet_data)->foreground();
103 }
104
105 GtkWidget *hildon_home_applet_lib_settings(void *applet_data, GtkWindow *parent) {
106   return ((SimpleLauncherApplet *)applet_data)->settings(parent);
107 }
108
109 int hildon_home_applet_lib_save_state (void *applet_data, void **state_data, int *state_size) {
110   return ((SimpleLauncherApplet *)applet_data)->saveState(state_data, state_size);
111 }
112
113 // SimpleLauncherApplet implementation
114
115 char *SimpleLauncherApplet::ourDirs[] = {
116   "/usr/share/applications/hildon",
117   NULL
118 };
119
120 SimpleLauncherApplet::SimpleLauncherApplet(): myContext(NULL), myWidget(NULL), myParent(NULL) {
121 }
122
123 bool SimpleLauncherApplet::doInit(void *state_data, int *state_size) {
124   if ((myContext = osso_initialize(SL_APPLET_DBUS_NAME, SL_APPLET_VERSION, FALSE, NULL)) == NULL) {
125     g_debug("sla-applet: failed to initialize the osso layer");
126     return false;
127   }
128
129   loadConfig();
130
131   if (!initWidget()) {
132     return false;
133   }
134
135   gtk_widget_show_all(myWidget);
136
137   return true;
138 }
139
140 SimpleLauncherApplet::~SimpleLauncherApplet() {
141   myItems.clear();
142
143   if (myWidget != NULL) {
144     gtk_widget_destroy(myWidget);
145     myWidget = NULL;
146   }
147
148   if (myContext != NULL) {
149     osso_deinitialize(myContext);
150     myContext = NULL;
151   }
152 }
153
154 static char *configFileName="/home/user/.slarc";
155
156 void SimpleLauncherApplet::loadConfig() {
157 #if 0
158   for (int i = 0 ; ourFiles[i] != NULL ; ++i) {
159     LaunchableItem *item = new LaunchableItem();
160
161     if (item->load(ourFiles[i])) {
162       myItems.push_back(std::pair<std::string, LauncherItem *>(ourFiles[i], item));
163     } else {
164       delete item;
165     }
166   }
167 #endif
168 }
169
170 void SimpleLauncherApplet::saveConfig() {
171   // TODO: make saving config an atomic operation
172   std::ofstream config(configFileName);
173
174   if (config) {
175     for (size_t i = 0 ; i < myItems.size() ; ++i) {
176       config << myItems.name(i) << ',' << myItems[i]->isEnabled() << std::endl;
177     }
178   }
179 }
180
181 bool SimpleLauncherApplet::initWidget() {
182   myWidget = gtk_frame_new(NULL);
183
184   if (myWidget != NULL) {
185     gtk_frame_set_shadow_type(GTK_FRAME(myWidget), GTK_SHADOW_ETCHED_IN);
186
187     updateWidget();
188   }
189
190   return myWidget != NULL;
191 }
192
193 void SimpleLauncherApplet::updateWidget() {
194   GtkWidget *child = gtk_bin_get_child(GTK_BIN(myWidget));
195
196   if (child != NULL) {
197     gtk_container_remove(GTK_CONTAINER(myWidget), child);
198     gtk_widget_destroy(child);
199   }
200
201   int button_no = 0;
202   GtkToolbar *toolbar = GTK_TOOLBAR(gtk_toolbar_new());
203
204   for (size_t i = 0 ; i < myItems.size() ; ++i) {
205     LauncherItem *item = myItems[i];
206
207     if (item != NULL && item->isEnabled()) {
208       GtkToolItem *button = gtk_tool_button_new(gtk_image_new_from_pixbuf(item->getIcon(SL_APPLET_ICON_SIZE)), NULL);
209
210       gtk_object_set_user_data(GTK_OBJECT(button), item);
211       g_signal_connect(button, "clicked", G_CALLBACK(_button_clicked), this);
212
213       gtk_toolbar_insert(toolbar, button, -1);
214
215       ++button_no;
216     }
217   }
218
219   if (button_no) {
220     gtk_container_add(GTK_CONTAINER(myWidget), GTK_WIDGET(toolbar));
221     gtk_widget_set_size_request(myWidget, button_no*(SL_APPLET_ICON_SIZE+SL_APPLET_CANVAS_SIZE), SL_APPLET_ICON_SIZE+SL_APPLET_CANVAS_SIZE);
222   } else {
223     gtk_widget_destroy(GTK_WIDGET(toolbar));
224   }
225 }
226
227 void SimpleLauncherApplet::_button_clicked(GtkToolButton *button, void *self) {
228   ((SimpleLauncherApplet *)self)->buttonClicked(button);
229 }
230
231 void SimpleLauncherApplet::buttonClicked(GtkToolButton *button) {
232   if (button != NULL) {
233     LaunchableItem *item = (LaunchableItem *)gtk_object_get_user_data(GTK_OBJECT(button));
234
235     if (item != NULL) {
236       item->activate(myContext);
237     }
238   }
239 }
240
241 int SimpleLauncherApplet::saveState(void **state_data, int *state_size) {
242   if (state_data != NULL) {
243     *state_data = NULL;
244   }
245
246   if (state_size != NULL) {
247     *state_size = 0;
248   }
249
250   return 1;
251 }
252
253 GtkWidget *SimpleLauncherApplet::settings(GtkWindow *parent) {
254   // TODO: in case we want SimpleLauncherApplet to be configurable, this method
255   // should return a gtk_menu_item that would be included in home settings
256   // menu.  Method should make sure that when we activate that item, a
257   // corresponding dialog appears.
258   myParent = parent;  // FIXME: Ugly piece of code :(
259
260   GtkWidget *menuItem = gtk_menu_item_new_with_label("Launcher settings...");
261
262   g_signal_connect(menuItem, "activate", G_CALLBACK(_run_dialog), this);
263
264   return menuItem;
265 }
266
267 void SimpleLauncherApplet::_run_dialog(GtkMenuItem *, void *self) {
268   ((SimpleLauncherApplet *)self)->runDialog();
269 }
270
271 void SimpleLauncherApplet::runDialog() {
272   SLAList list(SL_APPLET_ICON_SIZE, myItems);
273
274   GtkDialog *dialog = GTK_DIALOG(gtk_dialog_new_with_buttons("Launcher Settings", myParent, (GtkDialogFlags)(GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT), "OK", GTK_RESPONSE_OK, "Cancel", GTK_RESPONSE_CANCEL, NULL));
275
276   gtk_container_add(GTK_CONTAINER(dialog->vbox), list.getWidget());
277
278   gtk_widget_set_size_request(GTK_WIDGET(dialog), 540, 257);
279
280   int response = gtk_dialog_run(dialog);
281
282   gtk_widget_destroy(GTK_WIDGET(dialog));
283
284   switch (response) {
285     case GTK_RESPONSE_OK:
286       break;
287
288     case GTK_RESPONSE_CANCEL:
289       break;
290
291     default:
292       ;     // FIXME: do I want to do anything in here?
293   }
294 }
295
296 // vim:ts=2:sw=2:et