]> ToastFreeware Gitweb - toast/confclerk.git/blob - src/gui/mainwindow.h
'conflicts' modifications
[toast/confclerk.git] / src / gui / mainwindow.h
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 updateSearchView(const QDate &aDate);
20     void searchClicked();
21         void searchAgainClicked();
22     void conferenceMapClicked();
23     void eventHasChanged(int aEventId);
24 };
25
26 #endif // MAINWINDOW_H
27