5581d071388909ef23f89d9e50d8b2663540321e
[ardour.git] / gtk2_ardour / plugin_dspload_window.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 __ardour_plugin_dspload_window_h__
20 #define __ardour_plugin_dspload_window_h__
21
22 #include <boost/weak_ptr.hpp>
23
24 #include <gtkmm/box.h>
25 #include <gtkmm/scrolledwindow.h>
26
27 #include "pbd/signals.h"
28
29 #include "ardour_window.h"
30
31 namespace ARDOUR {
32         class Processor;
33 }
34
35 class PluginLoadStatsGui;
36
37 class PluginDSPLoadWindow : public ArdourWindow
38 {
39 public:
40         PluginDSPLoadWindow ();
41         ~PluginDSPLoadWindow ();
42
43         void set_session (ARDOUR::Session*);
44
45 protected:
46         void session_going_away();
47
48         void on_show ();
49         void on_hide ();
50
51 private:
52         void refill_processors ();
53         void drop_references ();
54         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>, std::string const&);
55
56         Gtk::ScrolledWindow _scroller;
57         Gtk::VBox _box;
58
59         PBD::ScopedConnectionList _processor_connections;
60         PBD::ScopedConnectionList _route_connections;
61 };
62 #endif
63