added a test application for gconf wrapper
[simple-launcher] / settings-dialog.h
index 2aace19..268c1f0 100644 (file)
 #ifndef __SETTINGS_DIALOG_H_
 #define __SETTINGS_DIALOG_H_
 
+#include <gtk/gtkdialog.h>
+
+#include "sla-list.h"
+#include "launcher-item.h"
+
+class SettingsDialog {
+public:
+  SettingsDialog(GtkWindow *parent, LauncherItems& items);
+ ~SettingsDialog();
+
+  gint run();
+
+private:
+  SLAList myList;
+
+  GtkDialog *myDialog;
+};
+
 #endif
+
+// vim:ts=2:sw=2:et