summaryrefslogtreecommitdiffstats
path: root/pacman-c++/client.h
blob: 2d507e24410078f45d4d182a04aa2b4c3d8cb612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef CLIENT_H
#define CLIENT_H

#include "mainwidget.h"
#include <QtGui>

class Client
  : public QMainWindow
{
  Q_OBJECT
public:
  Client();
  QSettings *settings();

public slots:
  void toggleSound() const;
  void mutedChanged(bool) const;

private:
  void createMenu();

private:
  MainWidget *m_mainWidget;
  QSettings *m_settings;
};

#endif // CLIENT_H