Ardour  9.0-pre0-582-g084a23a80d
plugin_dspload_ui.h
Go to the documentation of this file.
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 
31 
33 {
34 public:
35  PluginLoadStatsGui (std::shared_ptr<ARDOUR::PlugInsertBase>);
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:
46  void clear_stats () {
47  _pib->clear_stats ();
48  }
49 
50  std::shared_ptr<ARDOUR::PlugInsertBase> _pib;
51  sigc::connection update_cpu_label_connection;
52 
57 
60 
62  double _avg, _dev;
63  bool _valid;
64 };
65 
66 #endif
std::shared_ptr< ARDOUR::PlugInsertBase > _pib
PBD::microseconds_t _max
sigc::connection update_cpu_label_connection
PBD::microseconds_t _min
PluginLoadStatsGui(std::shared_ptr< ARDOUR::PlugInsertBase >)
double dsp_avg() const
ArdourWidgets::ArdourButton _reset_button
Gtk::DrawingArea _darea
bool draw_bar(GdkEventExpose *)
uint64_t dsp_max() const
int64_t microseconds_t
Definition: microseconds.h:28