new game/toggle fullscreen buttons
[colorflood] / colorflood / src / colorbuttons.hpp
1 /*
2   Copyright 2010 Serge Ziryukin <ftrvxmtrx@gmail.com>
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; version 2 of the License.
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 General Public License for more details.
12 */
13
14 #ifndef _COLORBUTTONS_HPP
15 #define _COLORBUTTONS_HPP
16
17 #include <QGroupBox>
18 #include <QButtonGroup>
19
20 class ColorButtons : public QGroupBox
21 {
22     Q_OBJECT;
23
24 public:
25     ColorButtons (QWidget *parent);
26
27 signals:
28     void flood (int colorIndex);
29
30 private:
31     QButtonGroup group;
32 };
33
34 #endif // !_COLORBUTTONS_HPP