1 | /* |
---|
2 | * Copyright (C) 2010 Ixonos Plc. |
---|
3 | * |
---|
4 | * This file is part of fosdem-schedule. |
---|
5 | * |
---|
6 | * fosdem-schedule is free software: you can redistribute it and/or modify it |
---|
7 | * under the terms of the GNU General Public License as published by the Free |
---|
8 | * Software Foundation, either version 2 of the License, or (at your option) |
---|
9 | * any later version. |
---|
10 | * |
---|
11 | * fosdem-schedule is distributed in the hope that it will be useful, but |
---|
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
13 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
14 | * more details. |
---|
15 | * |
---|
16 | * You should have received a copy of the GNU General Public License along with |
---|
17 | * fosdem-schedule. If not, see <http://www.gnu.org/licenses/>. |
---|
18 | */ |
---|
19 | #ifndef MAINWINDOW_H |
---|
20 | #define MAINWINDOW_H |
---|
21 | |
---|
22 | #include <QtGui/QMainWindow> |
---|
23 | |
---|
24 | #include <ui_mainwindow.h> |
---|
25 | |
---|
26 | class MainWindow : public QMainWindow, private Ui::MainWindow |
---|
27 | { |
---|
28 | Q_OBJECT |
---|
29 | public: |
---|
30 | // aEventId is used to inform widget to automatically open |
---|
31 | // Event dialog for given Event ID |
---|
32 | MainWindow(int aEventId = 0, QWidget *aParent = NULL); |
---|
33 | ~MainWindow() {} |
---|
34 | private slots: |
---|
35 | void scheduleImported(int aConfId); |
---|
36 | void aboutApp(); |
---|
37 | void conferenceMapClicked(); |
---|
38 | void eventHasChanged(int aEventId, bool aReloadModel); |
---|
39 | void conferenceChanged(int aIndex); |
---|
40 | private: |
---|
41 | void fillAndShowConferenceHeader(); |
---|
42 | void initTabs(); |
---|
43 | }; |
---|
44 | |
---|
45 | #endif /* MAINWINDOW_H */ |
---|
46 | |
---|