initial commit, lordsawar source, slightly modified
[lordsawar] / src / gui / main-preferences-dialog.h
1 //  Copyright (C) 2008, 2009 Ben Asselstine
2 //
3 //  This program is free software; you can redistribute it and/or modify
4 //  it under the terms of the GNU General Public License as published by
5 //  the Free Software Foundation; either version 3 of the License, or
6 //  (at your option) any later version.
7 //
8 //  This program is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //  GNU Library General Public License for more details.
12 //
13 //  You should have received a copy of the GNU General Public License
14 //  along with this program; if not, write to the Free Software
15 //  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 
16 //  02110-1301, USA.
17
18 #ifndef MAIN_PREFERENCES_DIALOG_H
19 #define MAIN_PREFERENCES_DIALOG_H
20
21 #include <memory>
22 #include <sigc++/trackable.h>
23 #include <sigc++/signal.h>
24 #include <gtkmm.h>
25
26 #include "vector.h"
27
28 #include "decorated.h"
29 class Game;
30 // dialog for showing sound and game preferences
31 class MainPreferencesDialog: public Decorated
32 {
33  public:
34     MainPreferencesDialog();
35     ~MainPreferencesDialog();
36
37     void set_parent_window(Gtk::Window &parent);
38
39     void run();
40     void hide();
41
42  private:
43     Gtk::Dialog* dialog;
44     Gtk::CheckButton *show_turn_popup_checkbutton;
45     Gtk::CheckButton *commentator_checkbutton;
46     Gtk::CheckButton *play_music_checkbutton;
47     Gtk::CheckButton *show_decorated_windows_checkbutton;
48     Gtk::Scale *music_volume_scale;
49     Gtk::Box *music_volume_hbox;
50     void on_show_turn_popup_toggled();
51     void on_play_music_toggled();
52     void on_show_decorated_windows_toggled();
53     void on_show_commentator_toggled();
54     void on_music_volume_changed();
55 };
56
57 #endif