qt5
Last change
on this file since c718a77 was
c718a77,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
EventModel? signaling changed
- if some of the data (favourite,alarm) has changed on the event,
signal 'eventHasChanged' is emitted
- all treeViews (eg. DayView?, FavsView?, TracksView?, ...) have to listen on this signal
Only favouritiesView is 'reset' when current tab is changed in mainWindow
- 'cause time groupings have to be recreated, since favs may have changed
|
-
Property mode set to
100644
|
File size:
951 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 | |
---|
10 | class MainWindow : public QMainWindow, private Ui::MainWindow |
---|
11 | { |
---|
12 | Q_OBJECT |
---|
13 | public: |
---|
14 | // aEventId is used to inform widget to automatically open |
---|
15 | // Event dialog for given Event ID |
---|
16 | MainWindow(int aEventId = 0, QWidget *aParent = NULL); |
---|
17 | ~MainWindow(); |
---|
18 | private slots: |
---|
19 | void importSchedule(); |
---|
20 | void aboutApp(); |
---|
21 | void updateDayView(const QDate &aDate); |
---|
22 | void updateTracksView(const QDate &aDate); |
---|
23 | void updateFavouritesView(const QDate &aDate); |
---|
24 | void updateSearchView(const QDate &aDate); |
---|
25 | void itemClicked(const QModelIndex &aIndex); |
---|
26 | void displayMap(const QModelIndex &aIndex); |
---|
27 | void displayWarning(const QModelIndex &aIndex); |
---|
28 | void searchClicked(); |
---|
29 | void tabHasChanged(int aIndex); |
---|
30 | void eventHasChanged(int aEventId); |
---|
31 | private: |
---|
32 | SqlEngine *mSqlEngine; |
---|
33 | }; |
---|
34 | |
---|
35 | #endif // MAINWINDOW_H |
---|
36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.