summaryrefslogtreecommitdiffstats
path: root/pacman-c++/client.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-09 16:01:36 +0200
committermanuel <manuel@mausz.at>2011-04-09 16:01:36 +0200
commit4c8c448a6de8b33e4a64271d6b2d0d25e00043ab (patch)
treecdaffdc2f43e50cbc12f6f6ead9493c7f7058c23 /pacman-c++/client.h
parent64a02ded2453082fe13e8a8b408933e8fada131c (diff)
downloadfoop-4c8c448a6de8b33e4a64271d6b2d0d25e00043ab.tar.gz
foop-4c8c448a6de8b33e4a64271d6b2d0d25e00043ab.tar.bz2
foop-4c8c448a6de8b33e4a64271d6b2d0d25e00043ab.zip
store sound muted in local settings
Diffstat (limited to 'pacman-c++/client.h')
-rw-r--r--pacman-c++/client.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/pacman-c++/client.h b/pacman-c++/client.h
index 476b972..2d507e2 100644
--- a/pacman-c++/client.h
+++ b/pacman-c++/client.h
@@ -10,9 +10,18 @@ class Client
10 Q_OBJECT 10 Q_OBJECT
11public: 11public:
12 Client(); 12 Client();
13 QSettings *settings();
14
15public slots:
16 void toggleSound() const;
17 void mutedChanged(bool) const;
18
19private:
20 void createMenu();
13 21
14private: 22private:
15 MainWidget *m_mainWidget; 23 MainWidget *m_mainWidget;
24 QSettings *m_settings;
16}; 25};
17 26
18#endif // CLIENT_H 27#endif // CLIENT_H