Added registration dialog
[speedfreak] / Client / resultdialog.h
1 #ifndef RESULTDIALOG_H
2 #define RESULTDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class ResultDialog;
8 }
9
10 class ResultDialog : public QDialog {
11     Q_OBJECT
12 public:
13     ResultDialog(QWidget *parent = 0);
14     ~ResultDialog();
15
16 protected:
17     void changeEvent(QEvent *e);
18     void paintEvent(QPaintEvent *);
19
20 private:
21     QPoint changeMeasuresToDiagramPoint(int aSpeed, int aTime);
22
23 private:
24     Ui::ResultDialog *ui;
25 };
26
27 #endif // RESULTDIALOG_H