qt5
Last change
on this file since 2104023 was
07ae23a,
checked in by timkoma <timkoma@…>, 12 years ago
|
refactoring of the TABS
|
-
Property mode set to
100644
|
File size:
409 bytes
|
Rev | Line | |
---|
[07ae23a] | 1 | #ifndef SEARCHHEAD_H |
---|
| 2 | #define SEARCHHEAD_H |
---|
| 3 | |
---|
| 4 | #include <QtGui/QWidget> |
---|
| 5 | #include <QDebug> |
---|
| 6 | #include "ui_searchhead.h" |
---|
| 7 | |
---|
| 8 | class SearchHead : public QWidget, public Ui::SearchHeadClass |
---|
| 9 | { |
---|
| 10 | Q_OBJECT |
---|
| 11 | |
---|
| 12 | public: |
---|
| 13 | SearchHead(QWidget *parent = 0); |
---|
| 14 | ~SearchHead(); |
---|
| 15 | |
---|
| 16 | signals: |
---|
| 17 | void searchClicked(); |
---|
| 18 | |
---|
| 19 | private slots: |
---|
| 20 | void searchButtonClicked(); |
---|
| 21 | |
---|
| 22 | //private: |
---|
| 23 | //Ui::SearchHeadClass ui; |
---|
| 24 | }; |
---|
| 25 | |
---|
| 26 | #endif // SEARCHHEAD_H |
---|
Note: See
TracBrowser
for help on using the repository browser.