X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=blobdiff_plain;f=Client%2Fmainwindow.cpp;h=f86681c265e4cac66a72c79572fb039e6351c6e1;hp=64a5aa903b2bb8d4fb6006bf9a27c530436d68b7;hb=e5d88e68d49f961be9edd1ee1a390c6b0fb88094;hpb=afbc416a1a09e00162dd5ba4080cf7018b98208f diff --git a/Client/mainwindow.cpp b/Client/mainwindow.cpp index 64a5aa9..f86681c 100644 --- a/Client/mainwindow.cpp +++ b/Client/mainwindow.cpp @@ -14,7 +14,11 @@ #include #include #include +#include "usersettings.h" +/** + * + */ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) @@ -25,45 +29,165 @@ MainWindow::MainWindow(QWidget *parent) : QCoreApplication::setOrganizationDomain("fudeco.com"); QCoreApplication::setApplicationName("Speed Freak"); - creditsDialog = new CreditsDialog; - routeSaveDialog = new RouteSaveDialog; - settingsDialog = new SettingsDialog; - connect(settingsDialog,SIGNAL(sendregistration()),this,SLOT(regUserToServer())); - connect(settingsDialog,SIGNAL(userNameChanged()),this,SLOT(userLogin())); - topResultDialog = new TopResultDialog; - connect(topResultDialog, SIGNAL(refreshCategoryList()), this, SLOT(clientRequestCategoryList())); - connect(topResultDialog, SIGNAL(refreshTopList(int)), this, SLOT(clientRequestTopList(int))); + helpDialog = NULL; accstart = NULL; + routeSaveDialog = NULL; + topResultDialog = NULL; + + usersDialog = NULL; + + settingsDialog = new SettingsDialog; + connect(settingsDialog, SIGNAL(sendregistration()), this, SLOT(clientRegUserToServer())); + connect(settingsDialog, SIGNAL(userNameChanged()), this, SLOT(clientUserLogin())); + connect(settingsDialog, SIGNAL(logout()), this, SLOT(setUsernameToMainPanel())); + connect(settingsDialog, SIGNAL(saveprofile()), this, SLOT(saveProfile())); httpClient = new HttpClient(this); connect(httpClient->myXmlreader, SIGNAL(receivedCategoryList()), this, SLOT(setCategoryCompoBox())); - connect(httpClient->myXmlreader, SIGNAL(receivedTop10List()), this, SLOT(showTop10())); + connect(httpClient->myXmlreader, SIGNAL(receivedTop10List()), this, SLOT(showTop10())); welcomeDialog = new WelcomeDialog; welcomeDialog->show(); - //Button settings - ui->pushButtonAccelerate->setAutoFillBackground(true); - ui->pushButtonAccelerate->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); - ui->pushButtonRoute->setAutoFillBackground(true); - ui->pushButtonRoute->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); - ui->pushButtonResults->setAutoFillBackground(true); - ui->pushButtonResults->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); - ui->pushButtonSettings->setAutoFillBackground(true); - ui->pushButtonSettings->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); - ui->pushButtonWWW->setAutoFillBackground(true); - ui->pushButtonWWW->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); + this->setUsernameToMainPanel(); + + //Create icon for acceleration start button + QIcon* icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/Speedometer.png"), QSize(125,125), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/Speedometer2.png"), QSize(125,125), QIcon::Normal, QIcon::On); + + //Acceleration start button + + customButtonAccelerate = new CustomButton(this,icon); + delete icon; + + int buttons_x = 50,buttons_y = 165; + customButtonAccelerate->setGeometry(buttons_x,buttons_y,130,130); + connect(customButtonAccelerate, SIGNAL(OpenDialog()), this, SLOT(OpenAccStartDialog())); + customButtonAccelerate->show(); + + //Create icon for route dialog button + icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/route.png"), QSize(125,125), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/route_selected.png"), QSize(125,125), QIcon::Normal, QIcon::On); + + //Route dialog button + + customButtonRoute = new CustomButton(this,icon); + delete icon; + + buttons_x += 140; + customButtonRoute->setGeometry(buttons_x,buttons_y,130,130); + connect(customButtonRoute, SIGNAL(OpenDialog()), this, SLOT(OpenRouteDialog())); + customButtonRoute->show(); + + //Create icon for results dialog button + icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/trophy_gold.png"), QSize(125,125), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/trophy_gold_selected.png"), QSize(125,125), QIcon::Normal, QIcon::On); + + //Results dialog button + + customButtonResults = new CustomButton(this,icon); + delete icon; + + buttons_x += 140; + customButtonResults->setGeometry(buttons_x,buttons_y,130,130); + connect(customButtonResults, SIGNAL(OpenDialog()), this, SLOT(OpenResultDialog())); + customButtonResults->show(); + //Create icon for settings dialog button + icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/settings.png"), QSize(125,125), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/settings_selected.png"), QSize(125,125), QIcon::Normal, QIcon::On); + + //Settings dialog button + + customButtonSettings = new CustomButton(this,icon); + delete icon; + + buttons_x += 140; + customButtonSettings->setGeometry(buttons_x,buttons_y,130,130); + connect(customButtonSettings, SIGNAL(OpenDialog()), this, SLOT(OpenSettingsDialog())); + customButtonSettings->show(); + + //Create icon for www page button + icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/applications_internet.png"), QSize(125,125), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/applications_internet_selected.png"), QSize(125,125), QIcon::Normal, QIcon::On); + + //WWW page button + + customButtonWWW = new CustomButton(this,icon); + delete icon; + + buttons_x += 140; + customButtonWWW->setGeometry(buttons_x,buttons_y,130,130); + connect(customButtonWWW, SIGNAL(OpenDialog()), this, SLOT(OpenWWWPage())); + customButtonWWW->show(); + + //Create icon for help dialog button + icon = new QIcon(); + icon->addFile(QString(":/new/prefix1/Graphics/info.png"), QSize(105,105), QIcon::Normal, QIcon::Off); + icon->addFile(QString(":/new/prefix1/Graphics/info_selected.png"), QSize(105,105), QIcon::Normal, QIcon::On); + + //Help dialog button + + customButtonHelp = new CustomButton(this,icon); + delete icon; + + customButtonHelp->setGeometry(670,10,105,105); + connect(customButtonHelp, SIGNAL(OpenDialog()), this, SLOT(OpenHelpDialog())); + customButtonHelp->show(); } +/** + * + */ MainWindow::~MainWindow() { delete ui; - delete routeSaveDialog; - if(!accstart) + if(routeSaveDialog) + delete routeSaveDialog; + + if(accstart) delete accstart; + + if(topResultDialog) + delete topResultDialog; + + if(settingsDialog) + delete settingsDialog; + + if(welcomeDialog) + delete welcomeDialog; + + if(httpClient) + delete httpClient; + + if(helpDialog) + delete helpDialog; + + if(usersDialog) + delete usersDialog; + + if(customButtonAccelerate) + delete customButtonAccelerate; + if(customButtonRoute) + delete customButtonRoute; + if(customButtonResults) + delete customButtonResults; + if(customButtonSettings) + delete customButtonSettings; + if(customButtonWWW) + delete customButtonWWW; + if(customButtonHelp) + delete customButtonHelp; } +/** + * + */ void MainWindow::changeEvent(QEvent *e) { QMainWindow::changeEvent(e); @@ -76,96 +200,279 @@ void MainWindow::changeEvent(QEvent *e) } } -void MainWindow::on_pushButtonWWW_clicked() +/** + *This slot function is called when ever mytTopResultDialog emits signal refreshCategoryList button clicked. + */ +void MainWindow::clientRequestCategoryList() { - QDesktopServices::openUrl(QUrl("http://garage.maemo.org/projects/speedfreak/")); + if(httpClient) + httpClient->requestCategories(); } -void MainWindow::on_pushButtonCredits_clicked() +/** + *This slot function is called when ever mytTopResultDialog emits signal refreshTopList button clicked. + */ +void MainWindow::clientRequestTopList(int index) { - creditsDialog->show(); + QString limit; + + if(topResultDialog && httpClient->myXmlreader->myCategoryList) + { + limit = QString::number(topResultDialog->getLimitNr()); + httpClient->requestTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(index), limit); + } } -void MainWindow::on_pushButtonRoute_clicked() +/** + *This function is used to set items to category combobox. + *@param + */ +void MainWindow::setCategoryCompoBox() { - routeSaveDialog->show(); + if(topResultDialog && httpClient->myXmlreader->myCategoryList) + topResultDialog->setCompoBoxCategories(httpClient->myXmlreader->myCategoryList->getCategoryList()); } -void MainWindow::on_pushButtonSettings_clicked() +/** + *This function prcesses UI updating after a new top10List has been received. + *@todo Check where limitNr is taken, fixed or user input, see on_comboBoxTopCategory_currentIndexChanged. + */ +void MainWindow::showTop10() { - settingsDialog->show(); + int ind; + + if(topResultDialog && httpClient->myXmlreader->myCategoryList && topResultDialog) + { + ind = topResultDialog->getRecentCategoryIndex(); + setListViewTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(ind), topResultDialog->getLimitNr()); + } +} + +/** + *This function is used to set items to labelTopList. Top-tab view. + *@param Category + *@param Size, number of results. + */ +void MainWindow::setListViewTopList(QString category, int size) +{ + QString topList; + + if(httpClient->myXmlreader->myCategoryList && topResultDialog) + { + topList.append(httpClient->myXmlreader->myCategoryList->getTopList(category, size)); + topResultDialog->showTopList(topList); + } +} + +/** + * This function register user to server. + */ +void MainWindow::clientRegUserToServer() +{ + if(httpClient) + httpClient->requestRegistration(); +} + +/** + * This function performs login to server. + */ +void MainWindow::clientUserLogin() +{ + + if(httpClient) + { + connect(httpClient, SIGNAL(loginOK()), this, SLOT(setUsernameToMainPanel())); + httpClient->checkLogin(); + } +} + +/** + * This function send route data to server. + * @param QString oldName, old file name + * @param QString newName, new file name + * @param int i + */ +void MainWindow::clientSendRoute(QString oldName, QString newName, int i) +{ + if(httpClient) + httpClient->sendRouteXml(oldName, newName, i); +} + +/** + * This function send acceleration data to server. + */ +void MainWindow::clientSendResult(QString category, double result) +{ + qDebug() << "__clientSendResult"; + if(accstart) { + qDebug() << "_clientSendResult, calling server"; + if(httpClient) + httpClient->sendResultXml(category, result); + } +} + +/** + * This slot function called when ever dialog rejected. + */ +void MainWindow::killDialog() +{ + if(topResultDialog) + { + qDebug() << "__MW kill: topResultDialog"; + delete topResultDialog; + topResultDialog = NULL; + } + if(routeSaveDialog) + { + //qDebug() << "__MW kill: routeSaveDialog"; + //delete routeSaveDialog; + //routeSaveDialog = NULL; + } + if(accstart) + { + qDebug() << "__MW kill: accstart"; + delete accstart; + accstart = NULL; + } + if(welcomeDialog) + { + qDebug() << "__MW kill: welcomeDialog"; + delete welcomeDialog; + welcomeDialog = NULL; + } + if(helpDialog) + { + qDebug() << "__MW kill: helpDialog"; + delete helpDialog; + helpDialog = NULL; + } + if(usersDialog) + { + qDebug() << "__MW kill: usersDialog"; + delete usersDialog; + usersDialog = NULL; + } } -void MainWindow::on_pushButtonAccelerate_clicked() +/** + * + */ +void MainWindow::setUsernameToMainPanel() +{ + if (loginSaved()) + { + this->setWindowTitle("SpeedFreak - " + settingsDialog->getUserName()); + } + else + { + this->setWindowTitle("SpeedFreak - Not logged"); + } +} +/** + * This slot function opens acceleration start dialog. + */ +void MainWindow::OpenAccStartDialog() { if(!accstart) accstart = new accelerationstart(this); + + connect(accstart, SIGNAL(sendresult(QString, double)), this, SLOT(clientSendResult(QString, double))); + connect(accstart, SIGNAL(rejected()), this, SLOT(killDialog())); accstart->show(); } +/** + * This slot function opens the route save dialog + */ +void MainWindow::OpenRouteDialog() +{ + if(!routeSaveDialog) + routeSaveDialog = new RouteSaveDialog; -void MainWindow::on_pushButtonResults_clicked() + connect(routeSaveDialog, SIGNAL(sendroute(QString,QString,int)), this, SLOT(clientSendRoute(QString,QString,int))); + connect(routeSaveDialog, SIGNAL(rejected()), this, SLOT(killDialog())); + routeSaveDialog->show(); +} +/** + * This slot function opens the top results dialog + */ +void MainWindow::OpenResultDialog() { + if (!topResultDialog) + topResultDialog = new TopResultDialog; + + clientRequestCategoryList(); + connect(topResultDialog, SIGNAL(refreshCategoryList()), this, SLOT(clientRequestCategoryList())); + connect(topResultDialog, SIGNAL(refreshTopList(int)), this, SLOT(clientRequestTopList(int))); + connect(topResultDialog, SIGNAL(rejected()), this, SLOT(killDialog())); topResultDialog->show(); } - /** - *This slot function is called when ever mytTopResultDialog emits signal refreshCategoryList button clicked. + * This slot function opens the settings dialog */ -void MainWindow::clientRequestCategoryList() +void MainWindow::OpenSettingsDialog() { - httpClient->requestCategories(); + settingsDialog->show(); } - /** - *This slot function is called when ever mytTopResultDialog emits signal refreshTopList button clicked. + * This slot function opens browser to project www page. */ -void MainWindow::clientRequestTopList(int index) +void MainWindow::OpenWWWPage() { - qDebug() << "index" << index << httpClient->myXmlreader->myCategoryList->getRecentCategory(index); - QString limit = QString::number(topResultDialog->getLimitNr()); - httpClient->requestTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(index), limit); + QDesktopServices::openUrl(QUrl("http://garage.maemo.org/projects/speedfreak/")); } - /** - *This function is used to set items to category combobox. Top-tab view. - *@param + * This slot function opens the main help dialog */ -void MainWindow::setCategoryCompoBox() +void MainWindow::OpenHelpDialog() { - qDebug() << "_setCategoryCompoBox"; - topResultDialog->setCompoBoxCategories(httpClient->myXmlreader->myCategoryList->getCategoryList()); + if(!helpDialog) + helpDialog = new HelpDialog; + + connect(helpDialog, SIGNAL(rejected()), this, SLOT(killDialog())); + helpDialog->show(); } /** - *This function prcesses UI updating after a new top10List has been received. - *@todo Check where limitNr is taken, fixed or user input, see on_comboBoxTopCategory_currentIndexChanged. + * This slot function save user profile data to server */ -void MainWindow::showTop10() +void MainWindow::saveProfile() { - qDebug() << "_showTop10"; - int ind = topResultDialog->getRecentCategoryIndex(); - setListViewTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(ind), topResultDialog->getLimitNr()); + if(httpClient) + httpClient->sendProfileXml(); } /** - *This function is used to set items to labelTopList. Top-tab view. - *@param Category - *@param Size, number of results. + * This slot function calls httpClients requestUserInfo for getting user's information from server. */ -void MainWindow::setListViewTopList(QString category, int size) +void MainWindow::requestGetUserInfo(QString name) { - qDebug() << "_setListViewTopList" << category; - QString topList; - topList.append(httpClient->myXmlreader->myCategoryList->getTopList(category, size)); - topResultDialog->showTopList(topList); + qDebug() << "getUserInfo signal " + name; + if(httpClient) + { + httpClient->requestUserInfo(name); + } } -void MainWindow::regUserToServer() +/** + * This slot function calls httpClients requestUsers for getting usernames from server. + */ +void MainWindow::requestGetUsers() { - httpClient->requestRegistration(); + qDebug() << "getUsers signal"; + if(httpClient) + { + httpClient->requestUsers(); + } } -void MainWindow::userLogin() +void MainWindow::on_pushButtonUsers_clicked() { - httpClient->checkLogin(); + if(!usersDialog) + usersDialog = new UsersDialog; + + connect(usersDialog, SIGNAL(getUserInfo(QString)), this, SLOT(requestGetUserInfo(QString))); + //connect(usersDialog, SIGNAL(getUsers()), this, SLOT(requestGetUsers())); + requestGetUsers(); + connect(usersDialog, SIGNAL(rejected()), this, SLOT(killDialog())); + usersDialog->show(); }