X-Git-Url: http://git.maemo.org/git/?p=speedfreak;a=blobdiff_plain;f=Client%2Fmainwindow.cpp;h=8dbfc7900ae6ac13bbb79b934adec3d07ba9c16f;hp=d49507433d866540e1ea49a9a909ea3e7ddf1b19;hb=74a1541fc05869163401c4885da4445c8940c822;hpb=abc31f4c395065825faabba1059792978110836b;ds=sidebyside diff --git a/Client/mainwindow.cpp b/Client/mainwindow.cpp index d495074..8dbfc79 100644 --- a/Client/mainwindow.cpp +++ b/Client/mainwindow.cpp @@ -26,24 +26,29 @@ MainWindow::MainWindow(QWidget *parent) : QCoreApplication::setApplicationName("Speed Freak"); routeDialog = new RouteDialog; - accstart = NULL; + connect(routeDialog,SIGNAL(sendroute()),this,SLOT(clientSendRoute())); - creditsDialog = new CreditsDialog; routeSaveDialog = new RouteSaveDialog; - routeDialog = new RouteDialog; - connect(routeDialog,SIGNAL(sendroute()),this,SLOT(clientSendRoute())); + 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))); + httpClient = new HttpClient(this); connect(httpClient->myXmlreader, SIGNAL(receivedCategoryList()), this, SLOT(setCategoryCompoBox())); connect(httpClient->myXmlreader, SIGNAL(receivedTop10List()), this, SLOT(showTop10())); + resultDialog = new ResultDialog; connect(resultDialog, SIGNAL(sendresult()), this, SLOT(clientSendResult())); + accstart = NULL; + + creditsDialog = new CreditsDialog; + welcomeDialog = new WelcomeDialog; welcomeDialog->show(); @@ -195,11 +200,17 @@ void MainWindow::clientUserLogin() httpClient->checkLogin(); } +/** + * This function send route to server + */ void MainWindow::clientSendRoute() { httpClient->sendRouteXml(); } +/** + * This function send acceleration data to server + */ void MainWindow::clientSendResult() { qDebug() << "_clientSendResult";