X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=blobdiff_plain;f=Client%2Fmainwindow.cpp;h=f86681c265e4cac66a72c79572fb039e6351c6e1;hp=8dbfc7900ae6ac13bbb79b934adec3d07ba9c16f;hb=e5d88e68d49f961be9edd1ee1a390c6b0fb88094;hpb=74a1541fc05869163401c4885da4445c8940c822 diff --git a/Client/mainwindow.cpp b/Client/mainwindow.cpp index 8dbfc79..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,58 +29,165 @@ MainWindow::MainWindow(QWidget *parent) : QCoreApplication::setOrganizationDomain("fudeco.com"); QCoreApplication::setApplicationName("Speed Freak"); - routeDialog = new RouteDialog; - connect(routeDialog,SIGNAL(sendroute()),this,SLOT(clientSendRoute())); + helpDialog = NULL; + accstart = NULL; + routeSaveDialog = NULL; + topResultDialog = NULL; - routeSaveDialog = new RouteSaveDialog; + usersDialog = NULL; settingsDialog = new SettingsDialog; - connect(settingsDialog,SIGNAL(sendregistration()),this,SLOT(clientRegUserToServer())); - connect(settingsDialog,SIGNAL(userNameChanged()),this,SLOT(clientUserLogin())); - - topResultDialog = new TopResultDialog; - connect(topResultDialog, SIGNAL(refreshCategoryList()), this, SLOT(clientRequestCategoryList())); - connect(topResultDialog, SIGNAL(refreshTopList(int)), this, SLOT(clientRequestTopList(int))); + 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())); - resultDialog = new ResultDialog; - connect(resultDialog, SIGNAL(sendresult()), this, SLOT(clientSendResult())); + welcomeDialog = new WelcomeDialog; + welcomeDialog->show(); - accstart = NULL; + this->setUsernameToMainPanel(); - creditsDialog = new CreditsDialog; + //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); - welcomeDialog = new WelcomeDialog; - welcomeDialog->show(); + //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 - //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)"); - ui->pushButtonCredits->setAutoFillBackground(true); - ui->pushButtonCredits->setStyleSheet("background-color: rgb(0, 0, 0); color: rgb(255, 255, 255)"); + 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; - delete routeDialog; + + 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); @@ -90,132 +201,278 @@ void MainWindow::changeEvent(QEvent *e) } /** - * This slot function opens browser to project www page. + *This slot function is called when ever mytTopResultDialog emits signal refreshCategoryList button clicked. */ -void MainWindow::on_pushButtonWWW_clicked() +void MainWindow::clientRequestCategoryList() { - QDesktopServices::openUrl(QUrl("http://garage.maemo.org/projects/speedfreak/")); + if(httpClient) + httpClient->requestCategories(); } /** - * This slot function opens the credits dialog + *This slot function is called when ever mytTopResultDialog emits signal refreshTopList button clicked. */ -void MainWindow::on_pushButtonCredits_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); + } } /** - * This slot function opens the route save dialog + *This function is used to set items to category combobox. + *@param */ -void MainWindow::on_pushButtonRoute_clicked() +void MainWindow::setCategoryCompoBox() { - routeSaveDialog->show(); + if(topResultDialog && httpClient->myXmlreader->myCategoryList) + topResultDialog->setCompoBoxCategories(httpClient->myXmlreader->myCategoryList->getCategoryList()); } /** - * This slot function opens the settings dialog + *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::on_pushButtonSettings_clicked() +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 slot function opens the acceleration dialog + *This function is used to set items to labelTopList. Top-tab view. + *@param Category + *@param Size, number of results. */ -void MainWindow::on_pushButtonAccelerate_clicked() +void MainWindow::setListViewTopList(QString category, int size) { - if(!accstart) - accstart = new accelerationstart(this); - accstart->show(); + QString topList; + + if(httpClient->myXmlreader->myCategoryList && topResultDialog) + { + topList.append(httpClient->myXmlreader->myCategoryList->getTopList(category, size)); + topResultDialog->showTopList(topList); + } } /** - * This slot function opens the top results dialog + * This function register user to server. */ -void MainWindow::on_pushButtonResults_clicked() +void MainWindow::clientRegUserToServer() { - topResultDialog->show(); + if(httpClient) + httpClient->requestRegistration(); } /** - *This slot function is called when ever mytTopResultDialog emits signal refreshCategoryList button clicked. + * This function performs login to server. */ -void MainWindow::clientRequestCategoryList() +void MainWindow::clientUserLogin() { - httpClient->requestCategories(); + + if(httpClient) + { + connect(httpClient, SIGNAL(loginOK()), this, SLOT(setUsernameToMainPanel())); + httpClient->checkLogin(); + } } /** - *This slot function is called when ever mytTopResultDialog emits signal refreshTopList button clicked. + * This function send route data to server. + * @param QString oldName, old file name + * @param QString newName, new file name + * @param int i */ -void MainWindow::clientRequestTopList(int index) +void MainWindow::clientSendRoute(QString oldName, QString newName, int i) { - QString limit = QString::number(topResultDialog->getLimitNr()); - httpClient->requestTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(index), limit); + if(httpClient) + httpClient->sendRouteXml(oldName, newName, i); } /** - *This function is used to set items to category combobox. Top-tab view. - *@param + * This function send acceleration data to server. */ -void MainWindow::setCategoryCompoBox() +void MainWindow::clientSendResult(QString category, double result) { - topResultDialog->setCompoBoxCategories(httpClient->myXmlreader->myCategoryList->getCategoryList()); + qDebug() << "__clientSendResult"; + if(accstart) { + qDebug() << "_clientSendResult, calling server"; + if(httpClient) + httpClient->sendResultXml(category, result); + } } /** - *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 called when ever dialog rejected. */ -void MainWindow::showTop10() +void MainWindow::killDialog() { - int ind = topResultDialog->getRecentCategoryIndex(); - setListViewTopList(httpClient->myXmlreader->myCategoryList->getRecentCategory(ind), topResultDialog->getLimitNr()); + 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; + } } /** - *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) +void MainWindow::setUsernameToMainPanel() { - QString topList; - topList.append(httpClient->myXmlreader->myCategoryList->getTopList(category, size)); - topResultDialog->showTopList(topList); + 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); -void MainWindow::clientRegUserToServer() + 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() { - httpClient->requestRegistration(); + if(!routeSaveDialog) + routeSaveDialog = new RouteSaveDialog; + + 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 function performs login to server + * This slot function opens the settings dialog */ -void MainWindow::clientUserLogin() +void MainWindow::OpenSettingsDialog() { - httpClient->checkLogin(); + settingsDialog->show(); +} +/** + * This slot function opens browser to project www page. + */ +void MainWindow::OpenWWWPage() +{ + QDesktopServices::openUrl(QUrl("http://garage.maemo.org/projects/speedfreak/")); +} +/** + * This slot function opens the main help dialog + */ +void MainWindow::OpenHelpDialog() +{ + if(!helpDialog) + helpDialog = new HelpDialog; + + connect(helpDialog, SIGNAL(rejected()), this, SLOT(killDialog())); + helpDialog->show(); } /** - * This function send route to server + * This slot function save user profile data to server */ -void MainWindow::clientSendRoute() +void MainWindow::saveProfile() { - httpClient->sendRouteXml(); + if(httpClient) + httpClient->sendProfileXml(); } /** - * This function send acceleration data to server + * This slot function calls httpClients requestUserInfo for getting user's information from server. */ -void MainWindow::clientSendResult() +void MainWindow::requestGetUserInfo(QString name) { - qDebug() << "_clientSendResult"; - if(accstart) { - qDebug() << "_clientSendResult, calling server"; - httpClient->sendResultXml(accstart->getMeasureCategory(), resultDialog->getResult()); + qDebug() << "getUserInfo signal " + name; + if(httpClient) + { + httpClient->requestUserInfo(name); } } + +/** + * This slot function calls httpClients requestUsers for getting usernames from server. + */ +void MainWindow::requestGetUsers() +{ + qDebug() << "getUsers signal"; + if(httpClient) + { + httpClient->requestUsers(); + } +} + +void MainWindow::on_pushButtonUsers_clicked() +{ + 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(); +}