Import fmit upstream version 0.97.6
[fmit.git] / src / modules / GLStatistics.h
1 // Copyright 2007 "Gilles Degottex"
2
3 // This file is part of "fmit"
4
5 // "fmit" is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // "fmit" is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
20
21 #ifndef _GLStatistics_h_
22 #define _GLStatistics_h_
23
24 #include <deque>
25 using namespace std;
26 #include <qgl.h>
27 #include <qspinbox.h>
28 #include <qsettings.h>
29 #include <qaction.h>
30 class QTimer;
31 #include <Music/Music.h>
32 #include "View.h"
33
34 class GLStatistics : public QGLWidget, public View
35 {
36         Q_OBJECT
37
38         virtual void mouseReleaseEvent(QMouseEvent* e){View::mouseReleaseEvent(e);}
39
40         void drawTicksCent(int r, int dx, int dy);
41         void drawTextTickCent(int r, int dx);
42
43   public:
44         GLStatistics(QWidget* parent);
45
46         struct AverageNote
47         {
48                 int ht;
49                 deque<float> errs;
50                 float err_mean;
51                 float err_std;
52
53                 void addErr(float err);
54
55                 void init();
56                 AverageNote();
57                 AverageNote(int h);
58                 AverageNote(int h, int num, int den);
59                 AverageNote(int h, float cents);
60                 QString factor;
61                 QString getName() const;
62         };
63         vector<AverageNote> m_avg_notes;
64         void addNote(int ht, float err);
65         void addNote(int ht, int num, int den, float err);
66         void addNote(int ht, float cents, float err);
67
68         // settings
69         QAction* setting_reset;
70         QAction* setting_keep_hidden;
71         QAction* setting_show_std;
72         QAction* setting_scale_auto;
73         QSpinBox* setting_scale_min;
74         QSpinBox* setting_scale_max;
75         QAction* setting_showTolerance;
76         QAction* setting_useCents;
77         QSpinBox* setting_spinScale;
78         virtual void save();
79         virtual void load();
80         virtual void clearSettings();
81
82   public slots:
83         void initializeGL();
84         void paintGL();
85         void resizeGL( int w, int h );
86
87         void reset();
88 };
89
90 #endif // _GLErrorHistory_h_