| Line | |
|---|
| 1 | #ifndef RTGUI_UNILINE_H
|
|---|
| 2 | #define RTGUI_UNILINE_H
|
|---|
| 3 |
|
|---|
| 4 | #include <QtGui>
|
|---|
| 5 |
|
|---|
| 6 | namespace RTGUI {
|
|---|
| 7 |
|
|---|
| 8 | class t_keyword;
|
|---|
| 9 |
|
|---|
| 10 | class t_uniLine : public QTableWidget {
|
|---|
| 11 | Q_OBJECT
|
|---|
| 12 |
|
|---|
| 13 | public:
|
|---|
| 14 | t_uniLine(const QString& fldMask, const t_keyword* keyword,
|
|---|
| 15 | QWidget* parent = 0);
|
|---|
| 16 | ~t_uniLine();
|
|---|
| 17 |
|
|---|
| 18 | private slots:
|
|---|
| 19 | void slotItemClicked(QTableWidgetItem* item);
|
|---|
| 20 |
|
|---|
| 21 | private:
|
|---|
| 22 | const t_keyword* _keyword;
|
|---|
| 23 | };
|
|---|
| 24 |
|
|---|
| 25 | } // namespace RTGUI
|
|---|
| 26 |
|
|---|
| 27 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.