renamed sla-list files to settings-page-items
[simple-launcher] / simple-launcher.cc
1 // This file is a part of Simple Launcher
2 //
3 // Copyright (C) 2006, 2007, 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 <dirent.h>
23
24 #include <gtk/gtk.h>
25
26 #include <hildon-home-plugin/hildon-home-plugin-interface.h>
27 #include <libosso.h>
28
29 #include "launcher-item.h"
30 #include "launchable-item.h"
31 #include "settings-dialog.h"
32 #include "gconf-wrapper.h"
33
34 #define SL_APPLET_DBUS_NAME  "simple-launcher"
35 #define SL_APPLET_VERSION    "0.0"
36
37 #define SL_APPLET_GCONF_PATH  "/apps/simple-launcher"
38
39 class SimpleLauncherApplet {
40 public:
41   SimpleLauncherApplet(const GConfKey&);
42  ~SimpleLauncherApplet();
43
44   bool doInit(void *state_data, int *state_size);
45
46   void background() {}
47   void foreground() {}
48   int saveState(void **state_data, int *state_size);
49   GtkWidget *settings(GtkWindow *parent);
50
51   GtkWidget *getWidget() { return myWidget; }
52
53 private:
54   static void addItem(LauncherItems&, const std::string&, bool);
55
56   void loadConfig();
57   void saveConfig();
58
59   static void updateItems(LauncherItems&);
60   static void processDirectory(LauncherItems&, const std::string&);
61
62   bool initWidget();
63   void updateWidget();
64
65   void buttonPressed(GtkWidget *button, GdkEventButton *event);
66   void runDialog();
67
68   static void _button_pressed(GtkWidget *button, GdkEventButton *event, void *self);
69   static void _run_dialog(GtkMenuItem *, void *);
70
71 private:
72   // GConfClientWrapper myClient;
73   // GConfKey myMainSettings;
74
75   osso_context_t *myContext;
76
77   GtkWidget *myWidget;
78   GtkWindow *myParent;
79
80   LauncherItems myItems;
81
82   GConfBooleanOption myTransparent;
83   // bool myShowInfobanner; // FIXME: to implement
84   GConfIntegerOption myIconSize;
85
86   static char *ourDirs[];
87 };
88
89 // Hildon home applet interface functions
90
91 void *hildon_home_applet_lib_initialize(void *state_data, int *state_size, GtkWidget **widget) {
92   GConfKey baseKey(SL_APPLET_GCONF_PATH);
93
94   SimpleLauncherApplet *applet = new SimpleLauncherApplet(baseKey);
95
96   if (applet != NULL) {
97     if (applet->doInit(state_data, state_size)) {
98       *widget = applet->getWidget();
99     } else {
100       delete applet;
101       applet = NULL;
102     }
103   }
104
105   return (void*)applet;
106 }
107
108 void hildon_home_applet_lib_deinitialize(void *applet_data) {
109   SimpleLauncherApplet *applet = (SimpleLauncherApplet *)applet_data;
110
111   delete applet;
112 }
113
114 void hildon_home_applet_lib_background(void *applet_data) {
115   ((SimpleLauncherApplet *)applet_data)->background();
116 }
117
118 void hildon_home_applet_lib_foreground (void *applet_data) {
119   ((SimpleLauncherApplet *)applet_data)->foreground();
120 }
121
122 GtkWidget *hildon_home_applet_lib_settings(void *applet_data, GtkWindow *parent) {
123   return ((SimpleLauncherApplet *)applet_data)->settings(parent);
124 }
125
126 int hildon_home_applet_lib_save_state (void *applet_data, void **state_data, int *state_size) {
127   return ((SimpleLauncherApplet *)applet_data)->saveState(state_data, state_size);
128 }
129
130 // SimpleLauncherApplet implementation
131
132 char *SimpleLauncherApplet::ourDirs[] = {
133   "/usr/share/applications/hildon",
134   NULL
135 };
136
137 // SimpleLauncherApplet::SimpleLauncherApplet() : myMainSettings(myClient.getKey(SL_APPLET_GCONF_PATH)), myContext(NULL), myWidget(NULL), myParent(NULL) {
138 SimpleLauncherApplet::SimpleLauncherApplet(const GConfKey& base) : myContext(NULL), myWidget(NULL), myParent(NULL), myTransparent(base, "transparent", true), myIconSize(base, "icon_size", 48) {
139 }
140
141 bool SimpleLauncherApplet::doInit(void *state_data, int *state_size) {
142   if ((myContext = osso_initialize(SL_APPLET_DBUS_NAME, SL_APPLET_VERSION, FALSE, NULL)) == NULL) {
143     g_debug("sla-applet: failed to initialize the osso layer");
144     return false;
145   }
146
147   loadConfig();
148
149   if (!initWidget()) {
150     return false;
151   }
152
153   return true;
154 }
155
156 SimpleLauncherApplet::~SimpleLauncherApplet() {
157   myItems.clear();
158
159   if (myWidget != NULL) {
160     gtk_widget_destroy(myWidget);
161     myWidget = NULL;
162   }
163
164   if (myContext != NULL) {
165     osso_deinitialize(myContext);
166     myContext = NULL;
167   }
168 }
169
170 void SimpleLauncherApplet::addItem(LauncherItems& items, const std::string& name, bool enabled) {
171   if (!items.exists(name)) {
172     LaunchableItem *item = new LaunchableItem();
173
174     item->load(name);
175
176     if (enabled) {
177       item->enable();
178     } else {
179       item->disable();
180     }
181
182     items.add(name, item);
183   }
184 }
185
186 // FIXME: this probably should be done somehow differently
187 static char *configFileName="/home/user/.slarc";
188
189 void SimpleLauncherApplet::loadConfig() {
190   std::ifstream config(configFileName);
191
192   if (config) {
193     char *buffer = new char [1024];
194
195     while (config.getline(buffer, 1024)) {
196       char *p = strchr(buffer, ',');
197
198       if (p != NULL) {
199         *p++ = '\0';
200       }
201
202       addItem(myItems, buffer, (p != NULL && (*p == '1' || *p == 'y' || *p == 'Y')));
203     }
204
205     delete buffer;
206   }
207 }
208
209 void SimpleLauncherApplet::saveConfig() {
210   // TODO: make saving config an atomic operation
211   std::ofstream config(configFileName);
212
213   if (config) {
214     for (size_t i = 0 ; i < myItems.size() ; ++i) {
215       config << myItems.name(i) << ',' << myItems[i]->isEnabled() << std::endl;
216     }
217   }
218 }
219
220 void SimpleLauncherApplet::updateItems(LauncherItems& items) {
221   for (int i = 0 ; ourDirs[i] != NULL ; ++i) {
222     processDirectory(items, ourDirs[i]);
223   }
224 }
225
226 void SimpleLauncherApplet::processDirectory(LauncherItems& items, const std::string& dirname) {
227   DIR *dir = opendir(dirname.c_str());
228
229   if (dir != NULL) {
230     const std::string namePrefix = dirname + "/";
231     std::string shortName;
232     std::string desktopExtension = ".desktop";
233     const dirent *file;
234
235     while ((file = readdir(dir)) != 0) {
236       shortName = file->d_name;
237       if ((shortName == ".") || (shortName == "..")) {
238         continue;
239       }
240
241       if ((shortName.length() >= desktopExtension.length()) && (shortName.compare(shortName.length() - desktopExtension.length(), desktopExtension.length(), desktopExtension) == 0)) {
242         addItem(items, namePrefix+shortName, false);
243       }
244     }
245
246     closedir(dir);
247   }
248 }
249
250 bool SimpleLauncherApplet::initWidget() {
251   myWidget = gtk_hbox_new(false, 0);
252
253   if (myWidget != NULL) {
254     updateWidget();
255   }
256
257   return myWidget != NULL;
258 }
259
260 void SimpleLauncherApplet::updateWidget() {
261   gtk_container_foreach(GTK_CONTAINER(myWidget), (GtkCallback)gtk_widget_destroy, NULL);
262
263   GtkSizeGroup *group = gtk_size_group_new(GTK_SIZE_GROUP_BOTH);
264
265   int button_no = 0;
266
267   for (size_t i = 0 ; i < myItems.size() ; ++i) {
268     LauncherItem *item = myItems[i];
269
270     if (item != NULL && item->isEnabled()) {
271       GtkWidget *button = gtk_event_box_new();
272
273       gtk_widget_set_events(button, GDK_BUTTON_PRESS_MASK);
274       g_signal_connect(button, "button-press-event", G_CALLBACK(_button_pressed), this);
275
276       gtk_event_box_set_visible_window(GTK_EVENT_BOX(button), !myTransparent.value());
277
278       {
279         GdkPixbuf *pixbuf = item->getIcon(myIconSize.value());
280         gtk_container_add(GTK_CONTAINER(button), gtk_image_new_from_pixbuf(pixbuf));
281         g_object_unref(G_OBJECT(pixbuf));
282       }
283
284       gtk_object_set_user_data(GTK_OBJECT(button), item);
285
286       gtk_size_group_add_widget(group, button);
287
288       gtk_box_pack_start(GTK_BOX(myWidget), GTK_WIDGET(button), false, false, 0);
289
290       ++button_no;
291     }
292   }
293
294   g_object_unref(G_OBJECT(group));
295
296   int totalSize = myIconSize.value();
297
298   if (button_no == 0) {
299     gtk_widget_set_size_request(myWidget, totalSize, totalSize);
300   } else {
301     gtk_widget_set_size_request(myWidget, button_no*totalSize, totalSize);
302   }
303
304   gtk_widget_show_all(myWidget);
305 }
306
307 void SimpleLauncherApplet::_button_pressed(GtkWidget *button, GdkEventButton *event, void *self) {
308   ((SimpleLauncherApplet *)self)->buttonPressed(button, event);
309 }
310
311 void SimpleLauncherApplet::buttonPressed(GtkWidget *button, GdkEventButton *event) {
312   if (button != NULL && event->button == 1) {
313     LaunchableItem *item = (LaunchableItem *)gtk_object_get_user_data(GTK_OBJECT(button));
314
315     if (item != NULL) {
316       item->activate(myContext);
317     }
318   }
319 }
320
321 int SimpleLauncherApplet::saveState(void **state_data, int *state_size) {
322   if (state_data != NULL) {
323     *state_data = NULL;
324   }
325
326   if (state_size != NULL) {
327     *state_size = 0;
328   }
329
330   return 1;
331 }
332
333 GtkWidget *SimpleLauncherApplet::settings(GtkWindow *parent) {
334   myParent = parent;  // FIXME: Ugly piece of code :(
335
336   GtkWidget *menuItem = gtk_menu_item_new_with_label("Launcher settings...");
337
338   g_signal_connect(menuItem, "activate", G_CALLBACK(_run_dialog), this);
339
340   return menuItem;
341 }
342
343 void SimpleLauncherApplet::_run_dialog(GtkMenuItem *, void *self) {
344   ((SimpleLauncherApplet *)self)->runDialog();
345 }
346
347 void SimpleLauncherApplet::runDialog() {
348   // We update the items before using them to avoid a small memory leak
349   // FIXME: deal with the situation in a better way (figure it out first :))
350   updateItems(myItems);       // User requested 'settings', let's give her the latest stuff :)
351
352   LauncherItems newItems = myItems;
353
354   // TODO: make it nicer... this code is ugly :(
355   SettingsDialog dialog(myParent, newItems, myTransparent, myIconSize);
356
357   switch (dialog.run()) {
358     case GTK_RESPONSE_OK:
359       myItems = newItems;
360       dialog.updateValues();  // FIXME: hackish :( make it better
361
362       saveConfig();   // save it immediately!
363       updateWidget();
364       break;
365
366     case GTK_RESPONSE_CANCEL:
367       break;
368
369     default:
370       ;     // FIXME: do I want to do anything in here?
371   }
372 }
373
374 // vim:ts=2:sw=2:et