Import upstream version 0.99.2
[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         int m_current_ht;
68
69         // settings
70         QAction* setting_reset;
71         QAction* setting_keep_hidden;
72         QSpinBox* setting_keep_n_values;
73         QAction* setting_show_std;
74         QAction* setting_scale_auto;
75         QSpinBox* setting_scale_min;
76         QSpinBox* setting_scale_max;
77         QAction* setting_showTolerance;
78         QAction* setting_useCents;
79         QSpinBox* setting_spinScale;
80         virtual void save();
81         virtual void load();
82         virtual void clearSettings();
83
84   public slots:
85         void initializeGL();
86         void paintGL();
87         void resizeGL( int w, int h );
88
89         void reset();
90         void resizeScale();
91 };
92
93 #endif // _GLErrorHistory_h_