Fix ExportFormatSpecification copy-c'tor
[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
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 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 private:
41         void update_cpu_label ();
42         bool draw_bar (GdkEventExpose*);
43         void clear_stats () {
44                 _insert->clear_stats ();
45         }
46
47         boost::shared_ptr<ARDOUR::PluginInsert> _insert;
48         sigc::connection update_cpu_label_connection;
49
50         Gtk::Label _lbl_min;
51         Gtk::Label _lbl_max;
52         Gtk::Label _lbl_avg;
53         Gtk::Label _lbl_dev;
54
55         ArdourWidgets::ArdourButton _reset_button;
56         Gtk::DrawingArea _darea;
57
58         uint64_t _min, _max;
59         double   _avg, _dev;
60         bool     _valid;
61 };
62
63 #endif