qt5
Last change
on this file since a790a90 was
0bb39f5,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
removed appsettings
- created 'active' column in 'conference' table
|
-
Property mode set to
100644
|
File size:
930 bytes
|
Line | |
---|
1 | #ifndef TABCONTAINER_H |
---|
2 | #define TABCONTAINER_H |
---|
3 | |
---|
4 | #include <QWidget> |
---|
5 | #include "ui_tabcontainer.h" |
---|
6 | |
---|
7 | #include <conference.h> |
---|
8 | #include <sqlengine.h> |
---|
9 | #include <conference.h> |
---|
10 | #include <eventmodel.h> |
---|
11 | |
---|
12 | class TabContainer : public QWidget, public Ui::TabContainer |
---|
13 | { |
---|
14 | Q_OBJECT |
---|
15 | public: |
---|
16 | |
---|
17 | TabContainer(QWidget *aParent = NULL); |
---|
18 | virtual ~TabContainer() {} |
---|
19 | |
---|
20 | protected: |
---|
21 | virtual void loadEvents( const QDate &aDate, const int aConferenceId ) |
---|
22 | { |
---|
23 | Q_UNUSED(aDate); |
---|
24 | Q_UNUSED(aConferenceId); |
---|
25 | }; |
---|
26 | |
---|
27 | signals: |
---|
28 | void eventHasChanged(int aEventId); |
---|
29 | |
---|
30 | public slots: |
---|
31 | virtual void updateTreeViewModel(int aEventId); |
---|
32 | void setDates(const QDate &aStart, const QDate &aEnd); |
---|
33 | |
---|
34 | protected slots: |
---|
35 | void updateTreeView(const QDate &aDate); |
---|
36 | void itemClicked(const QModelIndex &aIndex); |
---|
37 | void displayMap(const QModelIndex &aIndex); |
---|
38 | void displayWarning(const QModelIndex &aIndex); |
---|
39 | }; |
---|
40 | |
---|
41 | #endif /* TABCONTAINER_H */ |
---|
42 | |
---|
Note: See
TracBrowser
for help on using the repository browser.