OSC: don't restore User preset before writing new one
[ardour.git] / libs / surfaces / osc / osc_gui.h
1 /*
2     Copyright (C) 2016 Robin Gareus <robin@gareus.org
3     Copyright (C) 2009-2012 Paul Davis
4
5     This program 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     This program 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #ifndef osc_gui_h
21 #define osc_gui_h
22
23
24 #include "osc.h"
25
26 #include "pbd/i18n.h"
27
28 // preset stuff
29 static const char* const preset_dir_name = "osc";
30 static const char* const preset_suffix = ".preset";
31 static const char * const preset_env_variable_name = "ARDOUR_OSC_PATH";
32
33 namespace ArdourSurface {
34
35 class OSC_GUI : public Gtk::Notebook
36 {
37 public:
38         OSC_GUI (OSC&);
39         ~OSC_GUI ();
40
41
42 private:
43         // settings page
44         Gtk::ComboBoxText debug_combo;
45         Gtk::ComboBoxText portmode_combo;
46         Gtk::SpinButton port_entry;
47         Gtk::SpinButton bank_entry;
48         Gtk::ComboBoxText gainmode_combo;
49         Gtk::ComboBoxText preset_combo;
50         std::vector<std::string> preset_options;
51         std::map<std::string,std::string> preset_files;
52         bool preset_busy;
53         void get_session ();
54         void restore_sesn_values ();
55         uint32_t sesn_portmode;
56         std::string sesn_port;
57         uint32_t sesn_bank;
58         uint32_t sesn_strips;
59         uint32_t sesn_feedback;
60         uint32_t sesn_gainmode;
61         void save_user ();
62         void scan_preset_files ();
63         void load_preset (std::string preset);
64
65         void debug_changed ();
66         void portmode_changed ();
67         void gainmode_changed ();
68         void clear_device ();
69         void factory_reset ();
70         void reshow_values ();
71         void port_changed ();
72         void bank_changed ();
73         void strips_changed ();
74         void feedback_changed ();
75         void preset_changed ();
76         // Strip types calculator
77         uint32_t def_strip;
78         void calculate_strip_types ();
79         Gtk::Label current_strip_types;
80         Gtk::CheckButton audio_tracks;
81         Gtk::CheckButton midi_tracks;
82         Gtk::CheckButton audio_buses;
83         Gtk::CheckButton midi_buses;
84         Gtk::CheckButton control_masters;
85         Gtk::CheckButton master_type;
86         Gtk::CheckButton monitor_type;
87         Gtk::CheckButton selected_tracks;
88         Gtk::CheckButton hidden_tracks;
89         int stvalue;
90         // feedback calculator
91         uint32_t def_feedback;
92         void calculate_feedback ();
93         Gtk::Label current_feedback;
94         Gtk::CheckButton strip_buttons_button;
95         Gtk::CheckButton strip_control_button;
96         Gtk::CheckButton ssid_as_path;
97         Gtk::CheckButton heart_beat;
98         Gtk::CheckButton master_fb;
99         Gtk::CheckButton bar_and_beat;
100         Gtk::CheckButton smpte;
101         Gtk::CheckButton meter_float;
102         Gtk::CheckButton meter_led;
103         Gtk::CheckButton signal_present;
104         Gtk::CheckButton hp_samples;
105         Gtk::CheckButton hp_min_sec;
106         Gtk::CheckButton hp_gui;
107         Gtk::CheckButton select_fb;
108         int fbvalue;
109         void set_bitsets ();
110
111
112
113         OSC& cp;
114 };
115
116
117 void*
118 OSC::get_gui () const
119 {
120         if (!gui) {
121                 const_cast<OSC*>(this)->build_gui ();
122         }
123         //static_cast<Gtk::VBox*>(gui)->show_all();
124         static_cast<Gtk::Notebook*>(gui)->show_all();
125         return gui;
126 }
127
128 void
129 OSC::tear_down_gui ()
130 {
131         if (gui) {
132                 Gtk::Widget *w = static_cast<Gtk::Notebook*>(gui)->get_parent();
133                 if (w) {
134                         w->hide();
135                         delete w;
136                 }
137         }
138         delete (OSC_GUI*) gui;
139         gui = 0;
140 }
141
142 void
143 OSC::build_gui ()
144 {
145         gui = (void*) new OSC_GUI (*this);
146 }
147
148 } // end namespace
149
150 #endif // osc_gui_h