* added myValidItems member to reflect the number of items to show :)
[simple-launcher] / simple-launcher.cc
index c8a42c7..4156691 100644 (file)
@@ -1,6 +1,6 @@
 // This file is a part of Simple Launcher
 //
-// Copyright (C) 2006, 2007, Mikhail Sobolev
+// Copyright (C) 2006, 2007, 2008 Mikhail Sobolev <mss@mawhrin.net>
 //
 // Simple Launcher is free software; you can redistribute it and/or modify it
 // under the terms of the GNU General Public License version 2 as published by
 
 #include <gtk/gtk.h>
 
-#include <hildon-home-plugin/hildon-home-plugin-interface.h>
-#include <libosso.h>
-
-#include "launcher-item.h"
-#include "sla-list.h"
-#include "launchable-item.h"
-#include "settings-dialog.h"
+#include "simple-launcher.h"
 
 #define SL_APPLET_DBUS_NAME  "simple-launcher"
 #define SL_APPLET_VERSION    "0.0"
-#define SL_APPLET_ICON_SIZE  48
-
-#define SL_APPLET_GCONF_PATH  "/apps/simple-launcher"
-
-class SimpleLauncherApplet {
-public:
-  SimpleLauncherApplet();
- ~SimpleLauncherApplet();
-
-  bool doInit(void *state_data, int *state_size);
-
-  void background() {}
-  void foreground() {}
-  int saveState(void **state_data, int *state_size);
-  GtkWidget *settings(GtkWindow *parent);
-
-  GtkWidget *getWidget() { return myWidget; }
-
-private:
-  static void addItem(LauncherItems&, const std::string&, bool);
-
-  void loadConfig();
-  void saveConfig();
-
-  static void updateItems(LauncherItems&);
-  static void processDirectory(LauncherItems&, const std::string&);
-
-  bool initWidget();
-  void updateWidget();
-
-  void buttonPressed(GtkWidget *button, GdkEventButton *event);
-  void runDialog();
-
-  static void _button_pressed(GtkWidget *button, GdkEventButton *event, void *self);
-  static void _run_dialog(GtkMenuItem *, void *);
-
-private:
-  // GConfClientWrapper myClient;
-  // GConfKey myMainSettings;
-
-  osso_context_t *myContext;
-
-  GtkWidget *myWidget;
-  GtkWindow *myParent;
-
-  LauncherItems myItems;
-
-  static char *ourDirs[];
-};
 
 // Hildon home applet interface functions
 
 void *hildon_home_applet_lib_initialize(void *state_data, int *state_size, GtkWidget **widget) {
-  SimpleLauncherApplet *applet = new SimpleLauncherApplet();
+  SimpleLauncherApplet *applet = new SimpleLauncherApplet(SL_APPLET_GCONF_PATH);
 
   if (applet != NULL) {
     if (applet->doInit(state_data, state_size)) {
@@ -106,14 +51,6 @@ void hildon_home_applet_lib_deinitialize(void *applet_data) {
   delete applet;
 }
 
-void hildon_home_applet_lib_background(void *applet_data) {
-  ((SimpleLauncherApplet *)applet_data)->background();
-}
-
-void hildon_home_applet_lib_foreground (void *applet_data) {
-  ((SimpleLauncherApplet *)applet_data)->foreground();
-}
-
 GtkWidget *hildon_home_applet_lib_settings(void *applet_data, GtkWindow *parent) {
   return ((SimpleLauncherApplet *)applet_data)->settings(parent);
 }
@@ -130,7 +67,7 @@ char *SimpleLauncherApplet::ourDirs[] = {
 };
 
 // SimpleLauncherApplet::SimpleLauncherApplet() : myMainSettings(myClient.getKey(SL_APPLET_GCONF_PATH)), myContext(NULL), myWidget(NULL), myParent(NULL) {
-SimpleLauncherApplet::SimpleLauncherApplet() : myContext(NULL), myWidget(NULL), myParent(NULL) {
+SimpleLauncherApplet::SimpleLauncherApplet(const std::string& base) : myContext(NULL), myWidget(NULL), myParent(NULL), myValidItems(0), myTransparent(GConfKey(base), "transparent", false), myIconSize(GConfKey(base), "icon_size", 48) {
 }
 
 bool SimpleLauncherApplet::doInit(void *state_data, int *state_size) {
@@ -150,12 +87,13 @@ bool SimpleLauncherApplet::doInit(void *state_data, int *state_size) {
 
 SimpleLauncherApplet::~SimpleLauncherApplet() {
   myItems.clear();
-
+#if 0
+  // This does not seem to be necessary
   if (myWidget != NULL) {
     gtk_widget_destroy(myWidget);
     myWidget = NULL;
   }
-
+#endif
   if (myContext != NULL) {
     osso_deinitialize(myContext);
     myContext = NULL;
@@ -178,11 +116,19 @@ void SimpleLauncherApplet::addItem(LauncherItems& items, const std::string& name
   }
 }
 
-// FIXME: this probably should be done somehow differently
-static char *configFileName="/home/user/.slarc";
+// {{{ Configuration file managment
+static const gchar *getConfigFileName() {
+  static gchar *configFileName = NULL;
+
+  if (configFileName == NULL) {
+    configFileName = g_build_filename(g_get_home_dir(), ".slarc", NULL);
+  }
+
+  return configFileName;
+}
 
 void SimpleLauncherApplet::loadConfig() {
-  std::ifstream config(configFileName);
+  std::ifstream config(getConfigFileName());
 
   if (config) {
     char *buffer = new char [1024];
@@ -197,13 +143,13 @@ void SimpleLauncherApplet::loadConfig() {
       addItem(myItems, buffer, (p != NULL && (*p == '1' || *p == 'y' || *p == 'Y')));
     }
 
-    delete buffer;
+    delete [] buffer;
   }
 }
 
 void SimpleLauncherApplet::saveConfig() {
   // TODO: make saving config an atomic operation
-  std::ofstream config(configFileName);
+  std::ofstream config(getConfigFileName());
 
   if (config) {
     for (size_t i = 0 ; i < myItems.size() ; ++i) {
@@ -212,6 +158,8 @@ void SimpleLauncherApplet::saveConfig() {
   }
 }
 
+// }}}
+
 void SimpleLauncherApplet::updateItems(LauncherItems& items) {
   for (int i = 0 ; ourDirs[i] != NULL ; ++i) {
     processDirectory(items, ourDirs[i]);
@@ -257,7 +205,7 @@ void SimpleLauncherApplet::updateWidget() {
 
   GtkSizeGroup *group = gtk_size_group_new(GTK_SIZE_GROUP_BOTH);
 
-  int button_no = 0;
+  myValidItems = 0;
 
   for (size_t i = 0 ; i < myItems.size() ; ++i) {
     LauncherItem *item = myItems[i];
@@ -268,10 +216,13 @@ void SimpleLauncherApplet::updateWidget() {
       gtk_widget_set_events(button, GDK_BUTTON_PRESS_MASK);
       g_signal_connect(button, "button-press-event", G_CALLBACK(_button_pressed), this);
 
-      gtk_event_box_set_visible_window(GTK_EVENT_BOX(button), false);
-      // gtk_button_set_relief(GTK_BUTTON(button),GTK_RELIEF_NONE);
+      gtk_event_box_set_visible_window(GTK_EVENT_BOX(button), !myTransparent.value());
 
-      gtk_container_add(GTK_CONTAINER(button), gtk_image_new_from_pixbuf(item->getIcon(SL_APPLET_ICON_SIZE)));
+      {
+        GdkPixbuf *pixbuf = item->getIcon(myIconSize.value());
+        gtk_container_add(GTK_CONTAINER(button), gtk_image_new_from_pixbuf(pixbuf));
+        g_object_unref(G_OBJECT(pixbuf));
+      }
 
       gtk_object_set_user_data(GTK_OBJECT(button), item);
 
@@ -279,17 +230,13 @@ void SimpleLauncherApplet::updateWidget() {
 
       gtk_box_pack_start(GTK_BOX(myWidget), GTK_WIDGET(button), false, false, 0);
 
-      ++button_no;
+      ++myValidItems;
     }
   }
 
   g_object_unref(G_OBJECT(group));
 
-  if (button_no == 0) {
-    gtk_widget_set_size_request(myWidget, SL_APPLET_ICON_SIZE, SL_APPLET_ICON_SIZE);
-  } else {
-    gtk_widget_set_size_request(myWidget, button_no*SL_APPLET_ICON_SIZE, SL_APPLET_ICON_SIZE);
-  }
+  gtk_widget_set_size_request(myWidget, getWidth(), getHeight());
 
   gtk_widget_show_all(myWidget);
 }
@@ -341,11 +288,14 @@ void SimpleLauncherApplet::runDialog() {
 
   LauncherItems newItems = myItems;
 
-  SettingsDialog dialog(myParent, SL_APPLET_ICON_SIZE, newItems);
+  // TODO: make it nicer... this code is ugly :(
+  SettingsDialog dialog(myParent, newItems, myTransparent, myIconSize);
 
   switch (dialog.run()) {
     case GTK_RESPONSE_OK:
       myItems = newItems;
+      dialog.updateValues();  // FIXME: hackish :( make it better
+
       saveConfig();   // save it immediately!
       updateWidget();
       break;
@@ -356,6 +306,27 @@ void SimpleLauncherApplet::runDialog() {
     default:
       ;     // FIXME: do I want to do anything in here?
   }
+
+  // newItems.clear(); // TODO: do I really need it?
+}
+
+int SimpleLauncherApplet::getWidth() const {
+  if (myValidItems) {
+    return myIconSize.value() * myValidItems;
+  } else {
+    return myIconSize.value();
+  }
+}
+
+int SimpleLauncherApplet::getHeight() const {
+  return myIconSize.value();
+}
+
+void SimpleLauncherApplet::getBackgroundColour(double& red, double& green, double& blue, double alpha) const {
+  // white :)
+  red = 1.0; green = 1.0; blue = 1.0;
+
+  alpha = myTransparent.value() ? 0.0 : 1.0;
 }
 
 // vim:ts=2:sw=2:et