qt5
Last change
on this file since 885a3cc was
885a3cc,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
conference tab header is hidden if there isn't active conference
|
-
Property mode set to
100644
|
File size:
618 bytes
|
Line | |
---|
1 | #ifndef MAINWINDOW_H |
---|
2 | #define MAINWINDOW_H |
---|
3 | |
---|
4 | #include <QtGui/QMainWindow> |
---|
5 | |
---|
6 | #include <ui_mainwindow.h> |
---|
7 | |
---|
8 | class MainWindow : public QMainWindow, private Ui::MainWindow |
---|
9 | { |
---|
10 | Q_OBJECT |
---|
11 | public: |
---|
12 | // aEventId is used to inform widget to automatically open |
---|
13 | // Event dialog for given Event ID |
---|
14 | MainWindow(int aEventId = 0, QWidget *aParent = NULL); |
---|
15 | ~MainWindow() {} |
---|
16 | private slots: |
---|
17 | void scheduleImported(int aConfId); |
---|
18 | void aboutApp(); |
---|
19 | void conferenceMapClicked(); |
---|
20 | void eventHasChanged(int aEventId); |
---|
21 | private: |
---|
22 | void fillAndShowConferenceHeader(); |
---|
23 | void initTabs(); |
---|
24 | }; |
---|
25 | |
---|
26 | #endif /* MAINWINDOW_H */ |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.