Merge branch 'master' of /opt/src/sb1/qt/scorecard
[scorecard] / src / tree-widget.h
1 /*
2  * Copyright (C) 2009 Sakari Poussa
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.
7  */
8
9 #ifndef TREEWIDGET_H
10 #define TREEWIDGET_H
11
12 #include <QIcon>
13 #include <QTimer>
14 #include <QTreeWidget>
15
16 class QSettings;
17
18 class ScoreTreeWidget : public QTreeWidget
19 {
20     Q_OBJECT
21
22 public:
23     ScoreTreeWidget(QWidget *parent = 0);
24     QSize sizeHint() const;
25 };
26 #endif