Fix thinkos in cubasish theme
[ardour.git] / gtk2_ardour / plugin_dspload_ui.h
1 /*
2  * Copyright (C) 2018 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #ifndef _gtkardour_plugin_dspload_ui_h_
20 #define _gtkardour_plugin_dspload_ui_h_
21
22 #include <gtkmm/widget.h>
23 #include <gtkmm/table.h>
24 #include <gtkmm/label.h>
25 #include <gtkmm/drawingarea.h>
26 #include <gtkmm/separator.h>
27
28 #include "widgets/ardour_button.h"
29
30 #include "ardour/plugin_insert.h"
31
32 class PluginLoadStatsGui : public Gtk::Table
33 {
34 public:
35         PluginLoadStatsGui (boost::shared_ptr<ARDOUR::PluginInsert>);
36
37         void start_updating ();
38         void stop_updating ();
39
40         double   dsp_avg () const { return _valid ? _avg : -1; }
41         uint64_t dsp_max () const { return _valid ? _max : 0; }
42
43 private:
44         void update_cpu_label ();
45         bool draw_bar (GdkEventExpose*);
46         void clear_stats () {
47                 _insert->clear_stats ();
48         }
49
50         boost::shared_ptr<ARDOUR::PluginInsert> _insert;
51         sigc::connection update_cpu_label_connection;
52
53         Gtk::Label _lbl_min;
54         Gtk::Label _lbl_max;
55         Gtk::Label _lbl_avg;
56         Gtk::Label _lbl_dev;
57
58         ArdourWidgets::ArdourButton _reset_button;
59         Gtk::DrawingArea _darea;
60
61         uint64_t _min, _max;
62         double   _avg, _dev;
63         bool     _valid;
64 };
65
66 #endif