Guitarix
gx_sequencer_settings.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Hermann Meyer, Andreas Degert
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
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 #pragma once
20 
21 #ifndef SRC_HEADERS_GX_SEQUENCER_SETTINGS_H_
22 #define SRC_HEADERS_GX_SEQUENCER_SETTINGS_H_
23 
24 
25 #include <string>
26 
27 namespace gx_seq {
28 
29 class Drums {
30  public:
32  Gtk::Box* box;
34  : p(pa) {}
35  ~Drums() {}
36 };
37 
38 class UPresetListStore: public Gtk::ListStore {
39  public:
40  class UPresetListColumns : public Gtk::TreeModel::ColumnRecord {
41  public:
42  Gtk::TreeModelColumn<Glib::ustring> name;
44  } col;
45  private:
46  UPresetListStore(): Gtk::ListStore(), col() {
47  set_column_types(col);
48  }
49  public:
50  static Glib::RefPtr<UPresetListStore> create() {
51  return Glib::RefPtr<UPresetListStore>(new UPresetListStore);
52  }
53 };
54 
55 /****************************************************************
56  ** PluginPresetConnectWindow
57  */
58 
59 class PluginPresetConnectWindow: public Gtk::Window {
60  private:
61  Glib::RefPtr<UPresetListStore> upresetliststore;
63  Gtk::TreeView *treeview;
64  Gtk::Button *connectbutton;
65  void on_connect();
67  virtual bool on_key_press_event(GdkEventKey *event);
69  BaseObjectType* cobject, Glib::RefPtr<gx_gui::GxBuilder> bld,
71  PluginPresetConnectWindow(BaseObjectType* cobject,
72  Glib::RefPtr<gx_gui::GxBuilder> bld, gx_engine::GxMachineBase& machine);
73  public:
76  void run();
77 };
78 
79 /****************************************************************
80  ** Sequencer Parameter Window
81  */
82 
83 class SEQWindow: public sigc::trackable {
84 private:
86  Glib::RefPtr<gx_gui::GxBuilder> builder;
87  std::vector<Drums> drums;
94  bool is_active;
95 
96  // widget pointers
97  Gtk::Window* gtk_window;
98  Gtk::Viewport *vp;
99  Gtk::Label *preset_label;
100  Gtk::Box *preset_button;
101  Gxw::Switch *add_button;
102  Gxw::Regler *seq_pos;
103  Gxw::Regler *seq_count;
104  Gxw::Regler *seq_tact;
105  Gxw::Switch *next_preset;
106  Gxw::Switch *previus_preset;
107  Gxw::Switch *set_step;
108  Gxw::Switch *set_fstep;
109  Gxw::Switch *set_sync;
110  Gxw::Switch *reset_step;
111  Gtk::Label *step_label;
112  Gxw::ValueDisplay *step_value;
113 
114  // signal functions
115  void on_window_hide();
117  void on_selection_done(Gtk::Menu *presetMenu);
118  bool get_sequencer_pos(Gxw::Regler * regler, const std::string id);
119  bool on_key_press_event(GdkEventKey *event);
120  void check_preset_label();
121  void seq_changed(const gx_engine::GxSeqSettings* seqc, Gtk::Box *box);
122  void make_state(gx_engine::GxSeqSettings& seqc, std::vector<int> seq);
123  void on_seq_button_clicked(Gtk::Box *box, gx_engine::SeqParameter *p);
124  void on_seq_button_clicked_set(Gtk::Box *box, gx_engine::SeqParameter *p);
125  void on_sec_length_changed(bool update);
126  void on_sec_tact_changed();
127  void append_seq_block(Gtk::Box * box, gx_engine::SeqParameter *p, int r, int r_save);
128  void remove_seq_block(Gtk::Box * box, int r);
129  void reset_control(Glib::ustring id, float value);
130  int append_sequence(const gx_engine::GxSeqSettings* seqc, gx_engine::SeqParameter *p, std::vector<int> *sequence);
131  void make_preset_button(Gtk::Box *box);
132  void scroll_playhead(float value);
133  void append_plugin_preset(Glib::ustring name);
134  void append_plugin_preset_set(Glib::ustring name);
135  void on_preset_add_clicked();
136  void on_next_preset();
137  void on_next_preset_set();
138  void on_previus_preset();
139  void on_previus_preset_set();
140  void connect_midi();
141  void on_set_step();
142  void on_set_fstep();
143  void on_sync_stepper();
144  void on_reset_stepper();
145  void init_connect();
146  void init_sequences(gx_engine::SeqParameter *p, Gtk::Box* _box);
147  SEQWindow(const Glib::RefPtr<gx_gui::GxBuilder>& builder, gx_engine::SeqParameter *tomp_,
151 
152 public:
153  void reload_and_show();
154  static SEQWindow *create(const std::string& unit_id, gx_engine::GxMachineBase& machine);
155  ~SEQWindow();
156 };
157 
158 } /* end of gx_seq namespace*/
159 #endif // SRC_HEADERS_GX_SEQUENCER_SETTINGS_H_
gx_seq::SEQWindow::append_sequence
int append_sequence(const gx_engine::GxSeqSettings *seqc, gx_engine::SeqParameter *p, std::vector< int > *sequence)
gx_seq::PluginPresetConnectWindow
Definition: gx_sequencer_settings.h:59
gx_seq
Definition: gx_sequencer_settings.h:27
gx_seq::SEQWindow::on_preset_popup_clicked
void on_preset_popup_clicked()
gx_seq::SEQWindow::set_sync
Gxw::Switch * set_sync
Definition: gx_sequencer_settings.h:111
gx_seq::SEQWindow::gtk_window
Gtk::Window * gtk_window
Definition: gx_sequencer_settings.h:99
gx_seq::SEQWindow::reload_and_show
void reload_and_show()
gx_seq::SEQWindow::tom1
Drums tom1
Definition: gx_sequencer_settings.h:91
gx_seq::SEQWindow::check_preset_label
void check_preset_label()
gx_seq::SEQWindow::seq_tact
Gxw::Regler * seq_tact
Definition: gx_sequencer_settings.h:106
gx_seq::PluginPresetConnectWindow::connectbutton
Gtk::Button * connectbutton
Definition: gx_sequencer_settings.h:66
gx_engine::GxMachineBase
Definition: machine.h:55
gx_seq::PluginPresetConnectWindow::create_from_builder
static PluginPresetConnectWindow * create_from_builder(BaseObjectType *cobject, Glib::RefPtr< gx_gui::GxBuilder > bld, gx_engine::GxMachineBase &machine)
gx_seq::SEQWindow::on_set_step
void on_set_step()
gx_seq::PluginPresetConnectWindow::run
void run()
gx_seq::UPresetListStore
Definition: gx_sequencer_settings.h:38
gx_seq::SEQWindow::preset_label
Gtk::Label * preset_label
Definition: gx_sequencer_settings.h:101
gx_seq::Drums::box
Gtk::Box * box
Definition: gx_sequencer_settings.h:32
gx_seq::SEQWindow::on_window_hide
void on_window_hide()
gx_seq::SEQWindow::machine
gx_engine::GxMachineBase & machine
Definition: gx_sequencer_settings.h:87
gx_seq::SEQWindow::init_connect
void init_connect()
gx_seq::SEQWindow::on_sec_length_changed
void on_sec_length_changed(bool update)
gx_seq::SEQWindow::vp
Gtk::Viewport * vp
Definition: gx_sequencer_settings.h:100
gx_seq::SEQWindow::builder
Glib::RefPtr< gx_gui::GxBuilder > builder
Definition: gx_sequencer_settings.h:88
gx_seq::Drums
Definition: gx_sequencer_settings.h:29
gx_seq::SEQWindow::on_key_press_event
bool on_key_press_event(GdkEventKey *event)
gx_seq::SEQWindow::create
static SEQWindow * create(const std::string &unit_id, gx_engine::GxMachineBase &machine)
gx_seq::SEQWindow::~SEQWindow
~SEQWindow()
gx_engine::GxSeqSettings
Definition: gx_internal_plugins.h:205
gx_seq::SEQWindow::on_next_preset_set
void on_next_preset_set()
gx_seq::SEQWindow::make_state
void make_state(gx_engine::GxSeqSettings &seqc, std::vector< int > seq)
gx_seq::SEQWindow::step_value
Gxw::ValueDisplay * step_value
Definition: gx_sequencer_settings.h:114
gx_seq::PluginPresetConnectWindow::on_key_press_event
virtual bool on_key_press_event(GdkEventKey *event)
gx_seq::Drums::~Drums
~Drums()
Definition: gx_sequencer_settings.h:35
gx_seq::SEQWindow::SEQWindow
SEQWindow(const Glib::RefPtr< gx_gui::GxBuilder > &builder, gx_engine::SeqParameter *tomp_, gx_engine::SeqParameter *tomp1_, gx_engine::SeqParameter *tomp2_, gx_engine::SeqParameter *kickp_, gx_engine::SeqParameter *snarep_, gx_engine::SeqParameter *hatp_, gx_engine::GxMachineBase &machine_)
gx_seq::SEQWindow::on_seq_button_clicked
void on_seq_button_clicked(Gtk::Box *box, gx_engine::SeqParameter *p)
gx_engine::ParameterV< GxSeqSettings >
Definition: gx_internal_plugins.h:227
gx_seq::SEQWindow::on_seq_button_clicked_set
void on_seq_button_clicked_set(Gtk::Box *box, gx_engine::SeqParameter *p)
gx_seq::SEQWindow::scroll_playhead
void scroll_playhead(float value)
gx_seq::SEQWindow::append_plugin_preset_set
void append_plugin_preset_set(Glib::ustring name)
gx_seq::SEQWindow
Definition: gx_sequencer_settings.h:83
gx_seq::SEQWindow::previus_preset
Gxw::Switch * previus_preset
Definition: gx_sequencer_settings.h:108
gx_seq::SEQWindow::next_preset
Gxw::Switch * next_preset
Definition: gx_sequencer_settings.h:107
gx_seq::PluginPresetConnectWindow::~PluginPresetConnectWindow
~PluginPresetConnectWindow()
gx_seq::SEQWindow::tom
Drums tom
Definition: gx_sequencer_settings.h:90
gx_seq::SEQWindow::tom2
Drums tom2
Definition: gx_sequencer_settings.h:92
gx_seq::SEQWindow::snare
Drums snare
Definition: gx_sequencer_settings.h:94
gx_seq::PluginPresetConnectWindow::on_connect
void on_connect()
gx_seq::SEQWindow::remove_seq_block
void remove_seq_block(Gtk::Box *box, int r)
gx_seq::PluginPresetConnectWindow::create
static PluginPresetConnectWindow * create(gx_engine::GxMachineBase &machine)
gx_seq::SEQWindow::reset_control
void reset_control(Glib::ustring id, float value)
gx_seq::SEQWindow::on_sync_stepper
void on_sync_stepper()
gx_seq::PluginPresetConnectWindow::machine
gx_engine::GxMachineBase & machine
Definition: gx_sequencer_settings.h:64
gx_seq::UPresetListStore::create
static Glib::RefPtr< UPresetListStore > create()
Definition: gx_sequencer_settings.h:50
gx_seq::UPresetListStore::col
gx_seq::UPresetListStore::UPresetListColumns col
gx_seq::SEQWindow::init_sequences
void init_sequences(gx_engine::SeqParameter *p, Gtk::Box *_box)
gx_seq::SEQWindow::on_preset_add_clicked
void on_preset_add_clicked()
gx_seq::UPresetListStore::UPresetListColumns
Definition: gx_sequencer_settings.h:40
gx_seq::SEQWindow::preset_button
Gtk::Box * preset_button
Definition: gx_sequencer_settings.h:102
gx_seq::Drums::Drums
Drums(gx_engine::SeqParameter *pa)
Definition: gx_sequencer_settings.h:33
gx_seq::UPresetListStore::UPresetListColumns::name
Gtk::TreeModelColumn< Glib::ustring > name
Definition: gx_sequencer_settings.h:42
gx_seq::PluginPresetConnectWindow::upresetliststore
Glib::RefPtr< UPresetListStore > upresetliststore
Definition: gx_sequencer_settings.h:63
gx_seq::SEQWindow::make_preset_button
void make_preset_button(Gtk::Box *box)
gx_seq::SEQWindow::connect_midi
void connect_midi()
gx_seq::SEQWindow::on_previus_preset_set
void on_previus_preset_set()
gx_seq::SEQWindow::on_sec_tact_changed
void on_sec_tact_changed()
gx_seq::SEQWindow::on_next_preset
void on_next_preset()
gx_seq::SEQWindow::hat
Drums hat
Definition: gx_sequencer_settings.h:95
gx_seq::PluginPresetConnectWindow::on_selection_changed
void on_selection_changed()
gx_seq::SEQWindow::get_sequencer_pos
bool get_sequencer_pos(Gxw::Regler *regler, const std::string id)
gx_seq::SEQWindow::is_active
bool is_active
Definition: gx_sequencer_settings.h:96
gx_seq::SEQWindow::drums
std::vector< Drums > drums
Definition: gx_sequencer_settings.h:89
gx_seq::SEQWindow::kick
Drums kick
Definition: gx_sequencer_settings.h:93
gx_seq::SEQWindow::seq_pos
Gxw::Regler * seq_pos
Definition: gx_sequencer_settings.h:104
gx_seq::SEQWindow::append_plugin_preset
void append_plugin_preset(Glib::ustring name)
gx_seq::SEQWindow::set_step
Gxw::Switch * set_step
Definition: gx_sequencer_settings.h:109
gx_seq::SEQWindow::on_selection_done
void on_selection_done(Gtk::Menu *presetMenu)
gx_seq::SEQWindow::set_fstep
Gxw::Switch * set_fstep
Definition: gx_sequencer_settings.h:110
gx_seq::UPresetListStore::UPresetListStore
UPresetListStore()
Definition: gx_sequencer_settings.h:46
gx_seq::SEQWindow::step_label
Gtk::Label * step_label
Definition: gx_sequencer_settings.h:113
gx_seq::PluginPresetConnectWindow::PluginPresetConnectWindow
PluginPresetConnectWindow(BaseObjectType *cobject, Glib::RefPtr< gx_gui::GxBuilder > bld, gx_engine::GxMachineBase &machine)
gx_seq::SEQWindow::reset_step
Gxw::Switch * reset_step
Definition: gx_sequencer_settings.h:112
gx_seq::SEQWindow::add_button
Gxw::Switch * add_button
Definition: gx_sequencer_settings.h:103
gx_seq::SEQWindow::seq_count
Gxw::Regler * seq_count
Definition: gx_sequencer_settings.h:105
gx_seq::PluginPresetConnectWindow::treeview
Gtk::TreeView * treeview
Definition: gx_sequencer_settings.h:65
gx_seq::SEQWindow::on_reset_stepper
void on_reset_stepper()
gx_seq::UPresetListStore::UPresetListColumns::UPresetListColumns
UPresetListColumns()
Definition: gx_sequencer_settings.h:43
gx_seq::SEQWindow::on_set_fstep
void on_set_fstep()
gx_seq::SEQWindow::seq_changed
void seq_changed(const gx_engine::GxSeqSettings *seqc, Gtk::Box *box)
gx_seq::SEQWindow::append_seq_block
void append_seq_block(Gtk::Box *box, gx_engine::SeqParameter *p, int r, int r_save)
gx_seq::Drums::p
gx_engine::SeqParameter * p
Definition: gx_sequencer_settings.h:31
gx_seq::SEQWindow::on_previus_preset
void on_previus_preset()