grouping by time equation changed - beter group deviding, also according to favourites
[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 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     void updateActivitiesDayView(const QDate &aDate);
25 private:
26     SqlEngine *mSqlEngine;
27     ScheduleXmlParser *mXmlParser;
28 };
29
30 #endif // MAINWINDOW_H
31