source:
src/gui/mainwindow.h
@
f6300c7
Last change on this file since f6300c7 was f6300c7, checked in by , 12 years ago | |
---|---|
|
|
File size: 683 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 | ||
[72f6fe4] | 8 | class SqlEngine; |
9 | class ScheduleXmlParser; | |
10 | ||
[9bbb44e] | 11 | class MainWindow : public QMainWindow, private Ui::MainWindow |
[e5bc908] | 12 | { |
13 | Q_OBJECT | |
14 | public: | |
15 | MainWindow(QWidget *parent = 0); | |
[72f6fe4] | 16 | ~MainWindow(); |
17 | private slots: | |
18 | void importSchedule(); | |
19 | void showParsingProgress(int aStatus); | |
[c2d66b2] | 20 | void aboutApp(); |
[969a840] | 21 | void updateDayView(const QDate &aDate); |
[5842349] | 22 | void updateFavView(); |
[d23aa6a] | 23 | void updateFavViewComplete(); |
[f6300c7] | 24 | void updateActivitiesDayView(const QDate &aDate); |
25 | void updateView(int tabIndex); | |
[72f6fe4] | 26 | private: |
27 | SqlEngine *mSqlEngine; | |
28 | ScheduleXmlParser *mXmlParser; | |
[e5bc908] | 29 | }; |
30 | ||
31 | #endif // MAINWINDOW_H | |
[c2d66b2] | 32 |
Note: See TracBrowser
for help on using the repository browser.