added one more TODO item
[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/gtknotebook.h>
19 #include <gtk/gtklabel.h>
20
21 #include "settings-dialog.h"
22 #include "settings-page-entries.h"
23 #include "settings-page-items.h"
24
25 #define SL_APPLET_SETTINGS_ICON_SIZE  26
26
27 SettingsDialog::SettingsDialog(GtkWindow *parent, LauncherItems& items, GConfBooleanOption& transparent, GConfIntegerOption& icon_size):
28   myTransparent(transparent, "Transparent background:"),
29   myIconSize(icon_size, "Icon Size:") {
30   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));
31
32   myNotebook = GTK_NOTEBOOK(gtk_notebook_new());
33
34   gtk_container_add(GTK_CONTAINER(myDialog->vbox), GTK_WIDGET(myNotebook));
35
36   SettingsPageWithEntries *uiPage = new SettingsPageWithEntries();
37   uiPage->addEntry(&myTransparent);
38   uiPage->addEntry(&myIconSize);
39
40   SettingsPageWithItems *itemsPage = new SettingsPageWithItems(SL_APPLET_SETTINGS_ICON_SIZE, items);
41
42   addPage("UI", uiPage);
43   addPage("Items", itemsPage);
44
45   gtk_widget_set_size_request(GTK_WIDGET(myDialog), 540, 324);
46 }
47
48 SettingsDialog::~SettingsDialog() {
49   for (std::vector<SettingsPage *>::iterator it = myPages.begin(); it != myPages.end() ; ++it) {
50     delete *it;
51   }
52
53   myPages.resize(0);
54
55   gtk_widget_destroy(GTK_WIDGET(myDialog));
56 }
57
58 void SettingsDialog::addPage(const std::string& name, SettingsPage *page) {
59   myPages.push_back(page);
60
61   GtkWidget *label = gtk_label_new(name.c_str());
62
63   gtk_notebook_append_page(myNotebook, page->getWidget(), label);
64 }
65
66 gint SettingsDialog::run() {
67   gtk_widget_show_all(GTK_WIDGET(myDialog));
68   gtk_notebook_set_current_page(myNotebook, 0);
69
70   return gtk_dialog_run(myDialog);
71 }
72
73 void SettingsDialog::updateValues() {
74   myTransparent.updateValue();
75   myIconSize.updateValue();
76 }
77
78 // vim:ts=2:sw=2:et