1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
#ifndef INTERFACE_H
#define INTERFACE_H
#include "engine/song.h"
#include "engine/song_file.h"
#include "gui/add_effect_dialog.h"
#include "gui/effect_editor.h"
#include "gui/master_vu.h"
#include "gui/orderlist_editor.h"
#include "gui/pattern_editor.h"
#include "gui/settings_dialog.h"
#include "gui/track_editor.h"
#include <gtkmm.h>
class Interface : public Gtk::ApplicationWindow {
private:
enum {
FILE_NEW,
FILE_OPEN,
FILE_SAVE,
FILE_SAVE_AS,
FILE_QUIT,
SETTINGS_CONFIG,
SETTINGS_ABOUT
};
//dear GTK, why all this for a simple combo?
class ModelColumns : public Gtk::TreeModelColumnRecord {
public:
ModelColumns() {
add(name);
add(index);
}
Gtk::TreeModelColumn<Glib::ustring> name;
Gtk::TreeModelColumn<int> index;
};
ModelColumns zoom_model_columns;
Glib::RefPtr<Gtk::ListStore> zoomlist_store;
Vector<Gtk::TreeModel::Row> zoom_rows;
Gtk::Image prev_pattern_icon;
Gtk::Button prev_pattern;
Gtk::Image play_icon;
Gtk::Button play;
Gtk::Image stop_icon;
Gtk::Button stop;
Gtk::Image next_pattern_icon;
Gtk::Button next_pattern;
//separator is broken in GTK, so using a Label :(
Gtk::Label sep1, sep2, sep3;
Gtk::Image play_pattern_icon;
Gtk::Button play_pattern;
Gtk::Image play_cursor_icon;
Gtk::Button play_cursor;
Gtk::Image add_track_icon;
Gtk::Button add_track;
Gtk::Label spacer1, spacer2;
Glib::RefPtr<Gio::Menu> menu;
Glib::RefPtr<Gio::Menu> file_menu;
Glib::RefPtr<Gio::Menu> file_menu_file;
Glib::RefPtr<Gio::Menu> file_menu_export;
Glib::RefPtr<Gio::Menu> file_menu_exit;
Glib::RefPtr<Gio::Menu> play_menu;
Glib::RefPtr<Gio::Menu> play_menu_play;
Glib::RefPtr<Gio::Menu> play_menu_seek;
Glib::RefPtr<Gio::Menu> play_menu_pattern;
Glib::RefPtr<Gio::Menu> play_menu_extra;
Glib::RefPtr<Gio::Menu> edit_menu;
Glib::RefPtr<Gio::Menu> edit_menu_info;
Glib::RefPtr<Gio::Menu> edit_menu_undo;
Glib::RefPtr<Gio::Menu> edit_menu_focus;
Glib::RefPtr<Gio::Menu> select_menu;
Glib::RefPtr<Gio::Menu> select_menu_select;
Glib::RefPtr<Gio::Menu> select_menu_clipboard;
Glib::RefPtr<Gio::Menu> select_menu_transpose;
Glib::RefPtr<Gio::Menu> select_menu_operations;
Glib::RefPtr<Gio::Menu> select_menu_length;
Glib::RefPtr<Gio::Menu> settings_menu;
Glib::RefPtr<Gio::Menu> settings_menu_preferences;
Glib::RefPtr<Gio::Menu> settings_menu_cheat;
Glib::RefPtr<Gio::Menu> settings_menu_about;
AddEffectDialog add_effect_dialog;
Gtk::MenuItem menu_item_file_open;
Vector<Gtk::MenuItem *> menu_items;
/* Boxes */
Gtk::Grid grid;
Gtk::VBox main_vbox;
Gtk::HBox play_hbox;
Gtk::HBox pattern_hbox;
Gtk::VBox pattern_vbox;
Gtk::HBox main_hbox;
/* Labels */
Gtk::Label pattern_label;
Gtk::Label pattern_length_label;
Gtk::Label octave_label;
Gtk::Label step_label;
Gtk::Label zoom_label;
Gtk::CheckButton volume_mask;
Gtk::Label tempo_label;
Gtk::Label swing_label;
/* Scrolls */
Gtk::VScrollbar pattern_vscroll;
Gtk::HScrollbar pattern_hscroll;
Gtk::VScrollbar orderlist_vscroll;
Gtk::SpinButton pattern;
Gtk::Image pattern_settings_icon;
Gtk::Button pattern_settings;
Gtk::SpinButton pattern_length;
Gtk::Button pattern_length_set_next;
Gtk::SpinButton octave;
Gtk::SpinButton volume;
Gtk::SpinButton tempo;
Gtk::SpinButton swing;
Gtk::SpinButton step;
Gtk::ComboBox zoom;
Gtk::VPaned main_split;
Gtk::ScrolledWindow track_scroll;
Gtk::HBox track_hbox;
KeyBindings *key_bindings;
/* Editors */
UndoRedo undo_redo;
Song song;
SongFile song_file;
String song_path;
int save_version;
void _update_title();
Theme *theme;
PatternEditor pattern_editor;
OrderlistEditor orderlist_editor;
AudioEffectFactory *fx_factory;
struct TrackRacks {
TrackRackVolume *volume;
TrackRackEditor *rack;
Gtk::VScrollbar *v_scroll;
};
Vector<TrackRacks> racks;
TrackRackFiller *rack_filler;
SettingsDialog settings_dialog;
/* Data */
void _add_track();
void _pattern_changed();
void _octave_changed();
void _step_changed();
void _volume_changed();
void _tempo_changed();
void _swing_changed();
void _zoom_changed();
bool updating_editors;
void _update_editors();
Gtk::Application *application;
void _on_application_startup();
void _on_action_activated(KeyBindings::KeyBind p_bind);
void _update_selected_track();
void _update_tracks();
void _ensure_selected_track_visible();
void _update_volume_mask();
void _update_octave();
void _update_pattern();
void _update_step();
void _update_zoom();
void _redraw_track_edits();
void _on_add_effect(int p_track);
void _on_toggle_effect_skip(int p_track, int p_effect);
void _on_toggle_send_mute(int p_track, int p_send);
void _on_remove_effect(int p_track, int p_effect);
void _on_remove_send(int p_track, int p_send);
void _on_track_insert_send(int p_track, int p_to_track);
void _on_track_send_amount_changed(int p_track, int p_send, float p_amount);
void _on_track_swap_effects(int p_track, int p_effect, int p_with_effect);
void _on_track_swap_sends(int p_track, int p_send, int p_with_send);
void _on_effect_request_editor(int p_track, int p_effect);
void _update_editor_automations_for_effect(AudioEffect *p_effect);
void _on_toggle_automation_visibility(Track *p_track, AudioEffect *p_effect, int p_automation, bool p_visible);
void _on_select_automation_command(Track *p_track, AudioEffect *p_effect, int p_automation, int p_command);
void _on_track_volume_changed(int p_track, float p_volume_db);
enum {
MAX_EFFECT_EDITOR_PLUGINS = 1024
};
EffectEditorPluginFunc plugin_editor_create_functions[MAX_EFFECT_EDITOR_PLUGINS];
int plugin_editor_function_count;
Map<AudioEffect *, EffectEditor *> active_effect_editors;
void _erase_effect_editors_for_effect(AudioEffect *p_effect);
Gtk::Popover pattern_settings_popover;
Gtk::Grid pattern_settings_grid;
Gtk::HSeparator pattern_settings_vsep;
Gtk::SpinButton pattern_settings_length;
Gtk::SpinButton bar_length;
Gtk::SpinButton change_next;
Gtk::ComboBox change_swing;
Gtk::Label pattern_settings_length_label;
Gtk::Label bar_length_label;
Gtk::Label change_swing_label;
Vector<Gtk::TreeModel::Row> swing_rows;
Glib::RefPtr<Gtk::ListStore> change_swing_store;
Vector<Gtk::TreeModel::Row> change_swing_rows;
Gtk::Label change_next_label;
Gtk::Button pattern_settings_change_button;
void _on_pattern_settings_open();
void _on_pattern_settings_change();
void _update_colors();
static void _undo_redo_action(const String &p_name, void *p_userdata);
bool _close_request(GdkEventAny *event);
static void _process_audio(AudioFrame *p_frames, int p_amount);
static void _process_midi(double p_delta, const MIDIEvent &p_event);
void _update_song_process_order();
static Interface *singleton;
void _update_song_mixing_parameters();
bool playback_cursor_follow;
sigc::connection playback_timer;
bool _playback_timer_callback();
MasterVU main_vu;
void _on_main_volume_db_changed(float p_db);
void _on_song_step_buffer_changed();
void _on_song_mix_rate_changed();
bool _export_dialog_key(GdkEvent *p_key);
static void _export_dialog_callback(int p_order, void *p_userdata);
Gtk::Label export_wav_label;
String last_wav_export_path;
bool _on_editor_window_gained_focus(GdkEventFocus *, Track *p_track);
public:
void add_editor_plugin_function(EffectEditorPluginFunc p_plugin);
Interface(Gtk::Application *p_application, AudioEffectFactory *p_fx_factory, Theme *p_theme, KeyBindings *p_key_bindings);
~Interface();
};
#endif // INTERFACE_H
|