author | unc0rr |
Tue, 26 Jul 2011 17:27:14 +0400 | |
changeset 5419 | 2fed5e26ff7d |
parent 4976 | 088d40d8aba2 |
permissions | -rw-r--r-- |
184 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2006 Igor Ulyanov <iulyanov@gmail.com> |
4 |
* Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com> |
|
184 | 5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
|
7 |
* it under the terms of the GNU General Public License as published by |
|
8 |
* the Free Software Foundation; version 2 of the License |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program; if not, write to the Free Software |
|
17 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
18 |
*/ |
|
19 |
||
20 |
#ifndef _VERT_SCROLL_AREA_INCLUDED |
|
21 |
#define _VERT_SCROLL_AREA_INCLUDED |
|
22 |
||
23 |
#include <QScrollArea> |
|
24 |
||
25 |
class VertScrArea : public QScrollArea |
|
26 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
27 |
Q_OBJECT |
184 | 28 |
|
29 |
public: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
30 |
VertScrArea(QColor frameColor, QWidget * parent = 0); |
184 | 31 |
|
32 |
protected: |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
1066
diff
changeset
|
33 |
virtual void resizeEvent(QResizeEvent * event); |
184 | 34 |
}; |
35 |
||
36 |
#endif // _VERT_SCROLL_AREA_INCLUDED |