source:
src/gui/mainwindow.h
@
cbbb443
Last change on this file since cbbb443 was 885a3cc, checked in by , 13 years ago | |
---|---|
|
|
File size: 618 bytes |
Rev | Line | |
---|---|---|
[e5bc908] | 1 | #ifndef MAINWINDOW_H |
2 | #define MAINWINDOW_H | |
3 | ||
4 | #include <QtGui/QMainWindow> | |
5 | ||
[9bbb44e] | 6 | #include <ui_mainwindow.h> |
7 | ||
8 | class MainWindow : public QMainWindow, private Ui::MainWindow | |
[e5bc908] | 9 | { |
10 | Q_OBJECT | |
11 | public: | |
[d4a8bbf] | 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); | |
[3a8dc71] | 15 | ~MainWindow() {} |
[72f6fe4] | 16 | private slots: |
[c15be10] | 17 | void scheduleImported(int aConfId); |
[c2d66b2] | 18 | void aboutApp(); |
[e7340e1] | 19 | void conferenceMapClicked(); |
[c718a77] | 20 | void eventHasChanged(int aEventId); |
[885a3cc] | 21 | private: |
22 | void fillAndShowConferenceHeader(); | |
23 | void initTabs(); | |
[e5bc908] | 24 | }; |
25 | ||
[001c8cf] | 26 | #endif /* MAINWINDOW_H */ |
[c2d66b2] | 27 |
Note: See TracBrowser
for help on using the repository browser.