#include "mainwindow.h"
#include <QTreeView>
-#include <QDirModel>
+#include <QFile>
+#include <QNetworkProxy>
#include <sqlengine.h>
-#include <schedulexmlparser.h>
+#include <track.h>
#include <eventmodel.h>
#include <delegate.h>
#include <conference.h>
#include <QDialog>
+#include <QMessageBox>
#include "ui_about.h"
+#include <eventdialog.h>
#include "daynavigatorwidget.h"
+#include "importschedulewidget.h"
+#include "mapwindow.h"
-MainWindow::MainWindow(QWidget *parent)
- : QMainWindow(parent)
+#include <tabcontainer.h>
+#include <appsettings.h>
+
+const QString PROXY_USERNAME;
+const QString PROXY_PASSWD;
+
+MainWindow::MainWindow(int aEventId, QWidget *aParent)
+ : QMainWindow(aParent)
{
setupUi(this);
- // connect Menu actions
- connect(actionImportSchedule, SIGNAL(triggered()), SLOT(importSchedule()));
- connect(actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
- connect(actionAboutApplication, SIGNAL(triggered()), SLOT(aboutApp()));
-
- // create "SQLITE" DB instance/connection
- // opens DB connection (needed for EventModel)
- mSqlEngine = new SqlEngine(this);
- mSqlEngine->initialize();
-
- mXmlParser = new ScheduleXmlParser(this);
- connect(mXmlParser, SIGNAL(progressStatus(int)), this, SLOT(showParsingProgress(int)));
- statusBar()->showMessage(tr("Ready"));
-
- connect(dayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateDayView(const QDate &)));
-
- // DAY EVENTS View
- dayTreeView->setHeaderHidden(true);
- dayTreeView->setRootIsDecorated(false);
- dayTreeView->setIndentation(0);
- dayTreeView->setAnimated(true);
- dayTreeView->setModel(new EventModel());
- dayTreeView->setItemDelegate(new Delegate(dayTreeView));
-
- // FAVOURITIES View
- favTreeView->setHeaderHidden(true);
- favTreeView->setRootIsDecorated(false);
- favTreeView->setIndentation(0);
- favTreeView->setAnimated(true);
- favTreeView->setModel(new EventModel());
- favTreeView->setItemDelegate(new Delegate(favTreeView));
- // TESTING: load some 'fav' data
- if(Conference::getAll().count()) // no conference(s) in the DB
+ qDebug() << "Setting-up proxy: " << AppSettings::proxyAddress() << ":" << AppSettings::proxyPort();
+ QNetworkProxy proxy(
+ AppSettings::isDirectConnection() ? QNetworkProxy::NoProxy : QNetworkProxy::HttpProxy,
+ AppSettings::proxyAddress(),
+ AppSettings::proxyPort(),
+ PROXY_USERNAME,
+ PROXY_PASSWD);
+ QNetworkProxy::setApplicationProxy(proxy);
+
+ int confId = Conference::activeConference();
+
+ connect(importScheduleWidget, SIGNAL(scheduleImported(int)), SLOT(scheduleImported(int)));
+
+ // event details have changed
+ connect(dayTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+ connect(favsTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+ connect(tracksTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+ connect(roomsTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+ connect(nowTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+ connect(searchTabContainer, SIGNAL(eventHasChanged(int,bool)), SLOT(eventHasChanged(int,bool)));
+
+ // event conference map button clicked
+ connect(showMapButton, SIGNAL(clicked()), SLOT(conferenceMapClicked()));
+
+ connect(tabWidget, SIGNAL(infoIconClicked()), SLOT(aboutApp()));
+
+ selectConference->setDuplicatesEnabled(false);
+ int confCount = Conference::getAll().count();
+ if(confCount)
{
- int confId = 1;
- static_cast<EventModel*>(favTreeView->model())->loadFavEvents(Conference::getById(confId).start(),confId);
- favTreeView->reset();
+ initTabs();
+ fillAndShowConferenceHeader();
+ setWindowTitle(Conference::getById(confId).title());
+
+ if(confCount==1) // don't have to show 'selectConference' widget, if there is only one conference in the DB
+ selectConferenceWidget->hide();
+ else
+ {
+ // have to fill comboBox with available conferences
+ QList<Conference> confs = Conference::getAll();
+ QListIterator<Conference> i(confs);
+ while(i.hasNext())
+ {
+ Conference conf = i.next();
+ selectConference->addItem(conf.title(),conf.id());
+ }
+ int idx = selectConference->findText(Conference::getById(Conference::activeConference()).title());
+ selectConference->setCurrentIndex(idx);
+ }
+ connect(selectConference, SIGNAL(currentIndexChanged(int)), SLOT(conferenceChanged(int)));
}
-
- if(!Conference::getAll().count()) // no conference(s) in the DB
- dayNavigator->hide(); // hide DayNavigatorWidget
else
{
- int confId = 1;
- dayNavigator->setDates(Conference::getById(confId).start(),Conference::getById(confId).end());
+ conferenceHeader->hide();
+ selectConferenceWidget->hide();
+ // go to the 'conferenceTab', so the user can import the schedule
+ tabWidget->setCurrentIndex(6); // 6 - conference tab
}
-}
-MainWindow::~MainWindow()
-{
- if(mSqlEngine)
- {
- delete mSqlEngine;
- mSqlEngine = NULL;
- }
- if(mXmlParser)
+ // open dialog for given Event ID
+ // this is used in case Alarm Dialog request application to start
+ if(aEventId)
{
- delete mXmlParser;
- mXmlParser = NULL;
+ try
+ {
+ EventDialog dialog(aEventId,this);
+ dialog.exec();
+ }
+ catch(OrmNoObjectException&) {} // just start application
+ catch(...) {} // just start application
}
}
-void MainWindow::importSchedule()
+void MainWindow::scheduleImported(int aConfId)
{
- QFile file("../schedule.en.xml");
- if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
+ Q_UNUSED(aConfId);
+
+ Conference conf = Conference::getById(aConfId);
+ if( selectConference->findText(conf.title()) < 0 ) // item doesn't exist
{
- qDebug() << "can't open " << file.fileName();
- return;
+ disconnect(selectConference, SIGNAL(currentIndexChanged(int)), this, SLOT(conferenceChanged(int)));
+ selectConference->addItem(conf.title(),conf.id());
+ connect(selectConference, SIGNAL(currentIndexChanged(int)), SLOT(conferenceChanged(int)));
}
+ int confCount = Conference::getAll().count();
+ if(confCount)
+ {
+ int idx = selectConference->findText(conf.title());
+ selectConference->setCurrentIndex(idx);
- QByteArray data = file.readAll();
- mXmlParser->parseData(data,mSqlEngine);
+ if(confCount>1)
+ selectConferenceWidget->show();
- if(Conference::getAll().count())
- {
- int confId = 1;
- // 'dayNavigator' emits signal 'dateChanged' after setting valid START:END dates
- dayNavigator->setDates(Conference::getById(confId).start(),Conference::getById(confId).end());
+ conferenceChanged(idx);
}
}
-void MainWindow::showParsingProgress(int aStatus)
-{
- QString msg = QString("Parsing completed: %1\%").arg(aStatus);
- statusBar()->showMessage(msg,1000);
-}
-
void MainWindow::aboutApp()
{
QDialog dialog(this);
dialog.exec();
}
-void MainWindow::updateDayView(const QDate &aDate)
+void MainWindow::conferenceMapClicked()
{
- int confId = 1;
- static_cast<EventModel*>(dayTreeView->model())->loadEvents(aDate,confId);
- dayTreeView->reset();
- dayNavigator->show();
+ QString mapPath = QString(":/maps/campus.png");
+ if(!QFile::exists(mapPath))
+ mapPath = QString(":/maps/rooms/not-available.png");
+
+ QString roomName;
+
+ QPixmap map(mapPath);
+ MapWindow window(map,roomName,this);
+ window.exec();
+}
+
+void MainWindow::eventHasChanged(int aEventId, bool aReloadModel)
+{
+ dayTabContainer->updateTreeViewModel(aEventId);
+ favsTabContainer->updateTreeViewModel(aEventId,aReloadModel);
+ tracksTabContainer->updateTreeViewModel(aEventId);
+ nowTabContainer->updateTreeViewModel(aEventId);
+ roomsTabContainer->updateTreeViewModel(aEventId);
+ searchTabContainer->updateTreeViewModel(aEventId);
+}
+
+void MainWindow::fillAndShowConferenceHeader()
+{
+ int confId = Conference::activeConference();
+ conferenceTitle->setText(Conference::getById(confId).title());
+ conferenceSubtitle->setText(Conference::getById(confId).subtitle());
+ conferenceWhere->setText(Conference::getById(confId).city() + ", " + Conference::getById(confId).venue());
+ conferenceWhen->setText(
+ Conference::getById(confId).start().toString("dd-MM-yyyy")
+ + ", " +
+ Conference::getById(confId).end().toString("dd-MM-yyyy"));
+ conferenceHeader->show();
+}
+
+void MainWindow::initTabs()
+{
+ int confId = Conference::activeConference();
+ QDate startDate = Conference::getById(confId).start();
+ QDate endDate = Conference::getById(confId).end();
+
+ // 'dayNavigator' emits signal 'dateChanged' after setting valid START:END dates
+ dayTabContainer->setDates(startDate, endDate);
+ tracksTabContainer->setDates(startDate, endDate);
+ roomsTabContainer->setDates(startDate, endDate);
+ favsTabContainer->setDates(startDate, endDate);
+ searchTabContainer->setDates(startDate, endDate);
+ searchTabContainer->searchAgainClicked();
+ nowTabContainer->updateTreeView(QDate::currentDate());
+}
+
+void MainWindow::conferenceChanged(int aIndex)
+{
+ Conference::getById(Conference::activeConference()).update("active",0);
+ Conference::getById(selectConference->itemData(aIndex).toInt()).update("active",1);
+
+ initTabs();
+ fillAndShowConferenceHeader();
+ setWindowTitle(Conference::getById(Conference::activeConference()).title());
}