* added myIconSize variable for SimpleLauncherApplet (will be configurable in future)
[simple-launcher] / settings-dialog.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 <gtk/gtkvbox.h>
19 #include <gtk/gtkhbox.h>
20 #include <gtk/gtksizegroup.h>
21 #include <gtk/gtknotebook.h>
22 #include <gtk/gtklabel.h>
23
24 #include "settings-dialog.h"
25
26 #define SL_APPLET_SETTINGS_ICON_SIZE  26
27
28 // FIXME: UGLY!!!!
29
30 inline void addPage(GtkNotebook *notebook, const std::string& name, GtkWidget *widget) {
31   GtkWidget *label = gtk_label_new(name.c_str());
32
33   gtk_notebook_append_page(notebook, widget, label);
34 }
35
36 inline GtkWidget *packItTogether(GtkSizeGroup *group, const std::string& name, GtkWidget *content) {
37   GtkWidget *box = gtk_hbox_new(false, 0);
38   GtkWidget *label = gtk_label_new(name.c_str());
39
40   gtk_size_group_add_widget(group, label);
41   gtk_box_pack_start(GTK_BOX(box), label, true, true, 0);
42   gtk_box_pack_start(GTK_BOX(box), content, true, true, 0);
43
44   return box;
45 }
46
47 inline GtkWidget *createUIPage() {
48   GtkSizeGroup *group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
49   GtkWidget *vbox = gtk_vbox_new(true, 0);
50
51   // packItTogether(group, "Button Size:", <small/big>);
52   // packItTogether(group, "Transparent background:", [ ]);
53   // packItTogether(group, "Show Infobanner:", [ ]);
54
55   g_object_unref(G_OBJECT(group));
56
57   return vbox;
58 }
59
60 SettingsDialog::SettingsDialog(GtkWindow *parent, LauncherItems& items) : myList(SL_APPLET_SETTINGS_ICON_SIZE, items) {
61   myDialog = GTK_DIALOG(gtk_dialog_new_with_buttons("Launcher Settings", parent, (GtkDialogFlags)(GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT), "OK", GTK_RESPONSE_OK, "Cancel", GTK_RESPONSE_CANCEL, NULL));
62
63   GtkNotebook *notebook = GTK_NOTEBOOK(gtk_notebook_new());
64
65   gtk_container_add(GTK_CONTAINER(myDialog->vbox), GTK_WIDGET(notebook));
66
67   // addPage(notebook, "UI", createUIPage());
68   addPage(notebook, "Items", myList.getWidget());
69
70   gtk_widget_set_size_request(GTK_WIDGET(myDialog), 540, 257);
71 }
72
73 SettingsDialog::~SettingsDialog() {
74   gtk_widget_destroy(GTK_WIDGET(myDialog));
75 }
76
77 gint SettingsDialog::run() {
78   gtk_widget_show_all(GTK_WIDGET(myDialog));
79
80   return gtk_dialog_run(myDialog);
81 }
82
83 // vim:ts=2:sw=2:et