From ce48af53646cd9e7ec762fc1ac176b3aa620b11d Mon Sep 17 00:00:00 2001 From: manuel Date: Thu, 5 May 2011 00:57:07 +0200 Subject: - refactorized the whole project and made a few subprojects - replaced tcp with enet - added connect dialog - some smaller bugfixes --- pacman-c++/client.h | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 pacman-c++/client.h (limited to 'pacman-c++/client.h') diff --git a/pacman-c++/client.h b/pacman-c++/client.h deleted file mode 100644 index 7030683..0000000 --- a/pacman-c++/client.h +++ /dev/null @@ -1,38 +0,0 @@ -#ifndef CLIENT_H -#define CLIENT_H - -#include "mainwidget.h" -#include - -class Client - : public QMainWindow -{ - Q_OBJECT -public: - Client(); - QSettings *settings(); - -signals: - /* signal gets emitted if mute buttons should update their checked-state */ - void setMuteActionsChecked(bool enabled); - -private slots: - /* toggles sound */ - void toggleSound(); - /* mute was changed (emitted by audioplayer/phonon) */ - void mutedChanged(bool); - /* enable ambient (emitted by action) */ - void enableAmbientSound(bool); - void showAbout(); - -private: - void createMenu(); - QPixmap soundIcon(bool enabled = true) const; - -private: - MainWidget *m_mainWidget; - QSettings *m_settings; - bool m_ambientMuted; -}; - -#endif // CLIENT_H -- cgit v1.2.3