qt5
Last change
on this file since d49254d was
07ae23a,
checked in by timkoma <timkoma@…>, 13 years ago
|
refactoring of the TABS
|
-
Property mode set to
100644
|
File size:
526 bytes
|
Rev | Line | |
---|
[07ae23a] | 1 | |
---|
| 2 | #ifndef SEARCHTAB_H_ |
---|
| 3 | #define SEARCHTAB_H_ |
---|
| 4 | |
---|
| 5 | #include <QWidget> |
---|
| 6 | |
---|
| 7 | #include "tabcontainer.h" |
---|
| 8 | #include "searchhead.h" |
---|
| 9 | |
---|
| 10 | class SearchTabContainer: public TabContainer { |
---|
| 11 | Q_OBJECT |
---|
| 12 | public: |
---|
| 13 | SearchTabContainer(QWidget *aParent); |
---|
| 14 | virtual ~SearchTabContainer(); |
---|
| 15 | protected: |
---|
| 16 | virtual void loadEvents( const QDate &aDate, const int aConferenceId ); |
---|
| 17 | private slots: |
---|
| 18 | void searchButtonClicked(); |
---|
| 19 | void searchAgainClicked(); |
---|
| 20 | |
---|
| 21 | private: |
---|
| 22 | SearchHead *header; |
---|
| 23 | QToolButton *searchAgainButton; |
---|
| 24 | }; |
---|
| 25 | |
---|
| 26 | #endif /* SEARCHTAB_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.