1 #include "mainwindow.h"
7 #include <schedulexmlparser.h>
9 #include <eventmodel.h>
12 #include <conference.h>
16 #include "daynavigatorwidget.h"
18 MainWindow::MainWindow(QWidget *parent)
23 // connect Menu actions
24 connect(actionImportSchedule, SIGNAL(triggered()), SLOT(importSchedule()));
25 connect(actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
26 connect(actionAboutApplication, SIGNAL(triggered()), SLOT(aboutApp()));
28 // create "SQLITE" DB instance/connection
29 // opens DB connection (needed for EventModel)
30 mSqlEngine = new SqlEngine(this);
31 mSqlEngine->initialize();
33 mXmlParser = new ScheduleXmlParser(this);
34 connect(mXmlParser, SIGNAL(progressStatus(int)), this, SLOT(showParsingProgress(int)));
35 statusBar()->showMessage(tr("Ready"));
37 connect(dayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateDayView(const QDate &)));
38 connect(activityDayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateActivitiesDayView(const QDate &)));
39 connect(tabWidget, SIGNAL(currentChanged(int)), SLOT(updateView(int)));
42 dayTreeView->setHeaderHidden(true);
43 dayTreeView->setRootIsDecorated(false);
44 dayTreeView->setIndentation(0);
45 dayTreeView->setAnimated(true);
46 dayTreeView->setModel(new EventModel());
47 dayTreeView->setItemDelegate(new Delegate(dayTreeView));
50 favTreeView->setHeaderHidden(true);
51 favTreeView->setRootIsDecorated(false);
52 favTreeView->setIndentation(0);
53 favTreeView->setAnimated(true);
54 favTreeView->setModel(new EventModel());
55 favTreeView->setItemDelegate(new Delegate(favTreeView));
56 // TESTING: load some 'fav' data
57 if(Conference::getAll().count()) // no conference(s) in the DB
60 static_cast<EventModel*>(favTreeView->model())->loadFavEvents(Conference::getById(confId).start(),confId);
64 if(!Conference::getAll().count()) // no conference(s) in the DB
65 dayNavigator->hide(); // hide DayNavigatorWidget
69 dayNavigator->setDates(Conference::getById(confId).start(),Conference::getById(confId).end());
72 connect(static_cast<EventModel*>(dayTreeView->model()), SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)), SLOT(updateFavView()));
73 connect(static_cast<EventModel*>(favTreeView->model()), SIGNAL(dataChanged(const QModelIndex &, const QModelIndex &)), SLOT(updateFavViewComplete()));
76 MainWindow::~MainWindow()
90 void MainWindow::importSchedule()
92 QFile file("../schedule.en.xml");
93 if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
95 QString currPath = QDir::currentPath();
96 qDebug() << "current path: " << currPath;
97 qDebug() << "can't open " << file.fileName();
101 QByteArray data = file.readAll();
102 mXmlParser->parseData(data,mSqlEngine);
104 if(Conference::getAll().count())
107 // 'dayNavigator' emits signal 'dateChanged' after setting valid START:END dates
108 dayNavigator->setDates(Conference::getById(confId).start(), Conference::getById(confId).end());
112 void MainWindow::showParsingProgress(int aStatus)
114 QString msg = QString("Parsing completed: %1\%").arg(aStatus);
115 statusBar()->showMessage(msg,1000);
118 void MainWindow::aboutApp()
120 QDialog dialog(this);
126 void MainWindow::updateDayView(const QDate &aDate)
129 static_cast<EventModel*>(dayTreeView->model())->loadEvents(aDate,confId);
130 dayTreeView->reset();
131 dayNavigator->show();
134 void MainWindow::updateFavView()
137 static_cast<EventModel*>(favTreeView->model())->loadFavEvents(Conference::getById(confId).start(),confId);
138 favTreeView->reset(); //Necessary reset:
139 // if favourite event unselected as favourite is the only one in its time, and reset is not produced, crashed
142 void MainWindow::updateFavViewComplete()
146 updateDayView(Conference::getById(confId).start());
149 void MainWindow::updateActivitiesDayView(const QDate &aDate)
152 static_cast<EventModel*>(activityDayTreeView->model())->loadEventsByActivities(aDate,confId);
153 activityDayTreeView->reset();
154 activityDayNavigator->show();
157 void MainWindow::updateView(int tabIndex)
159 //TODO korinpa: skraslit ! aj pre ine taby
160 qDebug() << "updateView index: " << tabIndex;
163 QDate date = activityDayNavigator->getCurrentDate();
164 updateActivitiesDayView(date);