qt5
Last change
on this file since a957cfa was
a957cfa,
checked in by pavelpa <pavelpa@…>, 13 years ago
|
forgotten Import Schedule Dialog files
|
-
Property mode set to
100644
|
File size:
670 bytes
|
Rev | Line | |
---|
[a957cfa] | 1 | #ifndef IMPORTSCHEDULEDIALOG_H |
---|
| 2 | #define IMPORTSCHEDULEDIALOG_H |
---|
| 3 | |
---|
| 4 | #include <QDialog> |
---|
| 5 | #include "ui_importscheduledialog.h" |
---|
| 6 | |
---|
| 7 | class ScheduleXmlParser; |
---|
| 8 | class SqlEngine; |
---|
| 9 | |
---|
| 10 | class ImportScheduleDialog : public QDialog, Ui::ImportScheduleDialog |
---|
| 11 | { |
---|
| 12 | Q_OBJECT |
---|
| 13 | public: |
---|
| 14 | ImportScheduleDialog(SqlEngine *aSqlEngine, QWidget *aParent = NULL); |
---|
| 15 | ~ImportScheduleDialog(); |
---|
| 16 | private slots: |
---|
| 17 | void searchSchedule(); |
---|
| 18 | void importSchedule(); |
---|
| 19 | void showParsingProgress(int progress); |
---|
| 20 | private: |
---|
| 21 | ScheduleXmlParser *mXmlParser; |
---|
| 22 | SqlEngine *mSqlEngine; // uses it |
---|
| 23 | QString mScheduleFileName; |
---|
| 24 | }; |
---|
| 25 | |
---|
| 26 | #endif /* IMPORTSCHEDULEDIALOG_H */ |
---|
| 27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.