WWW, settings and info buttons changed to custom buttons.
[speedfreak] / Client / resultdialog.h
index daad7d3..752b790 100644 (file)
@@ -1,7 +1,18 @@
+/*
+ * Result dialog
+ *
+ * @author     Janne Änäkkälä   <janne.anakkala@fudeco.com>
+ * @author      Toni Jussila   <toni.jussila@fudeco.com>
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
 #ifndef RESULTDIALOG_H
 #define RESULTDIALOG_H
 
 #include <QDialog>
+#include <helpaccelerationdialog.h>
+
 
 namespace Ui {
     class ResultDialog;
@@ -12,16 +23,44 @@ class ResultDialog : public QDialog {
 public:
     ResultDialog(QWidget *parent = 0);
     ~ResultDialog();
+    HelpAccelerationDialog *helpAccelerationDialog;
+
+    void setEnd(int pValue);
+    void setValue(int pSpeed, double pTime);
+    void setLabelInfoToUser(QString infoText);
+    double getResult();
+    void setSendServerButtonEnabled();
+
+signals:
+    void sendresult(double);
 
 protected:
     void changeEvent(QEvent *e);
     void paintEvent(QPaintEvent *);
 
 private:
-    QPoint changeMeasuresToDiagramPoint(int aSpeed, int aTime);
+    QPoint changeMeasuresToDiagramPoint(int aSpeed, qreal aTime);
+    void setTimesIntoLabels();
+    void setTimeAxelLength(int pChoice);
+    void setHeaders();
+    void showOrHideLabels();
+    int getTargetChoice();
 
 private:
     Ui::ResultDialog *ui;
+    qreal timeArray[11];
+    double diagramGapStem;
+    double diagramGapHorizontal;
+    QStringList speedList;
+    QStringList timeList;
+    int timeAxelLength;
+    QString resultString;
+
+private slots:
+    void on_pushButtonInfo_clicked();
+    void on_pushButtonNew_clicked();
+    void on_pushButtonSend_clicked();
+    void killHelpDialog();
 };
 
 #endif // RESULTDIALOG_H