qt5
Last change
on this file since b6cd05c was
d23aa6a,
checked in by fortefr <fortefr@…>, 13 years ago
|
Favourites fix
|
-
Property mode set to
100644
|
File size:
594 bytes
|
Line | |
---|
1 | #ifndef MAINWINDOW_H |
---|
2 | #define MAINWINDOW_H |
---|
3 | |
---|
4 | #include <QtGui/QMainWindow> |
---|
5 | |
---|
6 | #include <ui_mainwindow.h> |
---|
7 | |
---|
8 | class SqlEngine; |
---|
9 | class ScheduleXmlParser; |
---|
10 | |
---|
11 | class MainWindow : public QMainWindow, private Ui::MainWindow |
---|
12 | { |
---|
13 | Q_OBJECT |
---|
14 | public: |
---|
15 | MainWindow(QWidget *parent = 0); |
---|
16 | ~MainWindow(); |
---|
17 | private slots: |
---|
18 | void importSchedule(); |
---|
19 | void showParsingProgress(int aStatus); |
---|
20 | void aboutApp(); |
---|
21 | void updateDayView(const QDate &aDate); |
---|
22 | void updateFavView(); |
---|
23 | void updateFavViewComplete(); |
---|
24 | private: |
---|
25 | SqlEngine *mSqlEngine; |
---|
26 | ScheduleXmlParser *mXmlParser; |
---|
27 | }; |
---|
28 | |
---|
29 | #endif // MAINWINDOW_H |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.