Website updated.
[irwi] / src / settingstable.h
1 #ifndef _SETTINGSTABLE_H_
2 #define _SETTINGSTABLE_H_
3
4 #include <QTableWidget>
5
6 class QResizeEvent;
7
8 class SettingsTable : public QTableWidget
9 {
10 public:
11     SettingsTable(QWidget *parent = 0);
12     ~SettingsTable();
13     void appendRow(const QString &key, const QString &value);
14     void removeAllRows();
15     QString key(unsigned int row) const;
16     QString value(unsigned int row) const;
17
18 protected:
19     void resizeEvent(QResizeEvent *);
20 };
21
22 #endif // _SETTINGSTABLE_H_
23