ardour
midi_time_axis.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2006 Paul Davis
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., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18 
19 #ifndef __ardour_midi_time_axis_h__
20 #define __ardour_midi_time_axis_h__
21 
22 #include <list>
23 
24 #include <gtkmm/table.h>
25 #include <gtkmm/button.h>
26 #include <gtkmm/box.h>
27 #include <gtkmm/menu.h>
28 #include <gtkmm/menuitem.h>
29 #include <gtkmm/radiomenuitem.h>
30 #include <gtkmm/checkmenuitem.h>
31 
32 #include "gtkmm2ext/selector.h"
33 
34 #include "ardour/types.h"
35 #include "ardour/region.h"
36 
37 #include "ardour_dialog.h"
38 #include "ardour_dropdown.h"
39 #include "route_ui.h"
40 #include "enums.h"
41 #include "route_time_axis.h"
42 #include "midi_streamview.h"
43 
44 namespace MIDI {
45 namespace Name {
46 class MasterDeviceNames;
47 class CustomDeviceMode;
48 }
49 }
50 
51 namespace ARDOUR {
52  class Session;
53  class RouteGroup;
54  class Processor;
55  class Location;
56  class MidiPlaylist;
57 }
58 
59 namespace Evoral {
60  template<typename Time> class Note;
61 }
62 
63 class PublicEditor;
64 class MidiStreamView;
65 class MidiScroomer;
66 class PianoRollHeader;
67 class StepEntry;
68 class StepEditor;
70 
72 {
73 public:
74  MidiTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
75  virtual ~MidiTimeAxisView ();
76 
78 
80 
81  void set_height (uint32_t, TrackHeightMode m = OnlySelf);
82 
84 
85  void show_all_automation (bool apply_to_selection = false);
86  void show_existing_automation (bool apply_to_selection = false);
87  void create_automation_child (const Evoral::Parameter& param, bool show);
88 
89  bool paste (ARDOUR::framepos_t, const Selection&, PasteContext& ctx);
90 
93 
96 
97  void update_range();
98 
99  Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
100 
102  void check_step_edit ();
103 
104  void first_idle ();
105 
106  uint8_t get_channel_for_add () const;
107 
108  void get_per_region_note_selection (std::list<std::pair<PBD::ID, std::set<boost::shared_ptr<Evoral::Note<Evoral::Beats> > > > >&);
109 
110 protected:
111  void start_step_editing ();
112  void stop_step_editing ();
113 
114 private:
115  sigc::signal<void, std::string, std::string> _midi_patch_settings_changed;
116 
117  void model_changed(const std::string& model);
118  void custom_device_mode_changed(const std::string& mode);
119 
121  void build_automation_action_menu (bool);
122  Gtk::Menu* build_note_mode_menu();
123  Gtk::Menu* build_color_mode_menu();
124 
125  void set_note_mode (ARDOUR::NoteMode mode, bool apply_to_selection = false);
126  void set_color_mode (ARDOUR::ColorMode, bool force = false, bool redisplay = true, bool apply_to_selection = false);
127  void set_note_range (MidiStreamView::VisibleNoteRange range, bool apply_to_selection = false);
128 
129  void route_active_changed ();
130  void note_range_changed ();
131  void contents_height_changed ();
132 
137  Gtk::RadioMenuItem* _note_mode_item;
138  Gtk::RadioMenuItem* _percussion_mode_item;
140  Gtk::RadioMenuItem* _meter_color_mode_item;
141  Gtk::RadioMenuItem* _channel_color_mode_item;
142  Gtk::RadioMenuItem* _track_color_mode_item;
150 
151  Gtk::CheckMenuItem* _step_edit_item;
153 
155  void add_basic_parameter_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, Evoral::Parameter param);
156  void add_channel_command_menu_item (Gtk::Menu_Helpers::MenuList& items, const std::string& label, ARDOUR::AutomationType auto_type, uint8_t cmd);
157 
158  Gtk::Menu* controller_menu;
159 
160  void add_single_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
161  void add_multi_channel_controller_item (Gtk::Menu_Helpers::MenuList& ctl_items, int ctl, const std::string& name);
162  void build_controller_menu ();
163  void toggle_channel_selector ();
164  void channel_selector_hidden ();
165  void set_channel_mode (ARDOUR::ChannelMode, uint16_t);
166 
167  void set_note_selection (uint8_t note);
168  void add_note_selection (uint8_t note);
169  void extend_note_selection (uint8_t note);
170  void toggle_note_selection (uint8_t note);
171  void set_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
172  void add_note_selection_region_view (RegionView* rv, uint8_t note, uint16_t chn_mask);
173  void extend_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
174  void toggle_note_selection_region_view (RegionView*, uint8_t note, uint16_t chn_mask);
176 
177  void ensure_step_editor ();
178 
183 
185 
188 };
189 
190 #endif /* __ardour_midi_time_axis_h__ */
StepEditor * _step_editor
void custom_device_mode_changed(const std::string &mode)
void extend_note_selection_region_view(RegionView *, uint8_t note, uint16_t chn_mask)
sigc::signal< void, std::string, std::string > _midi_patch_settings_changed
NoteMode
Definition: types.h:204
bool paste(ARDOUR::framepos_t, const Selection &, PasteContext &ctx)
Definition: note.h:32
std::string name() const
MidiTimeAxisView(PublicEditor &, ARDOUR::Session *, ArdourCanvas::Canvas &canvas)
void capture_channel_mode_changed()
void add_note_selection(uint8_t note)
Gtk::Menu * controller_menu
Gtk::RadioMenuItem * _meter_color_mode_item
Gtk::Menu * build_color_mode_menu()
Lists of selected things.
Definition: selection.h:66
void change_all_channel_tracks_visibility(bool yn, Evoral::Parameter param)
ColorMode
Definition: types.h:215
Gtk::VBox _midi_controls_box
void set_route(boost::shared_ptr< ARDOUR::Route >)
void append_extra_display_menu_items()
Representation of the interface of the Editor class.
Gtk::Label _playback_channel_status
void set_note_selection(uint8_t note)
ChannelMode
Definition: types.h:209
void extend_note_selection(uint8_t note)
void contents_height_changed()
void set_note_range(MidiStreamView::VisibleNoteRange range, bool apply_to_selection=false)
Definition: id.h:32
Gtk::Menu * build_note_mode_menu()
void add_multi_channel_controller_item(Gtk::Menu_Helpers::MenuList &ctl_items, int ctl, const std::string &name)
Gtk::Label _capture_channel_status
uint8_t get_channel_for_add() const
ARDOUR::NoteMode note_mode() const
boost::shared_ptr< ARDOUR::MidiRegion > add_region(ARDOUR::framepos_t, ARDOUR::framecnt_t, bool)
void get_per_region_note_selection_region_view(RegionView *, std::list< std::pair< PBD::ID, std::set< boost::shared_ptr< Evoral::Note< Evoral::Beats > > > > > &)
StepEditor * step_editor()
boost::shared_ptr< MIDI::Name::CustomDeviceMode > get_device_mode()
int64_t framecnt_t
Definition: types.h:76
ParameterMenuMap _channel_command_menu_map
ArdourDropdown _midnam_model_selector
ArdourDropdown _midnam_custom_device_mode_selector
void show_all_automation(bool apply_to_selection=false)
Definition: amp.h:29
void add_single_channel_controller_item(Gtk::Menu_Helpers::MenuList &ctl_items, int ctl, const std::string &name)
void add_channel_command_menu_item(Gtk::Menu_Helpers::MenuList &items, const std::string &label, ARDOUR::AutomationType auto_type, uint8_t cmd)
Gtk::RadioMenuItem * _track_color_mode_item
AutomationType
Definition: types.h:121
void playback_channel_mode_changed()
void get_per_region_note_selection(std::list< std::pair< PBD::ID, std::set< boost::shared_ptr< Evoral::Note< Evoral::Beats > > > > > &)
void create_automation_child(const Evoral::Parameter &param, bool show)
int64_t framepos_t
Definition: types.h:66
PianoRollHeader * _piano_roll_header
void model_changed(const std::string &model)
void set_note_mode(ARDOUR::NoteMode mode, bool apply_to_selection=false)
void build_controller_menu()
ARDOUR::ColorMode _color_mode
Gtk::Menu * default_channel_menu
void set_height(uint32_t, TrackHeightMode m=OnlySelf)
Gtk::RadioMenuItem * _note_mode_item
Gtk::RadioMenuItem * _channel_color_mode_item
void toggle_note_selection(uint8_t note)
void add_basic_parameter_menu_item(Gtk::Menu_Helpers::MenuList &items, const std::string &label, Evoral::Parameter param)
void toggle_channel_selector()
void set_color_mode(ARDOUR::ColorMode, bool force=false, bool redisplay=true, bool apply_to_selection=false)
Gtk::CheckMenuItem * automation_child_menu_item(Evoral::Parameter)
virtual ~MidiTimeAxisView()
void toggle_note_selection_region_view(RegionView *, uint8_t note, uint16_t chn_mask)
Gtk::CheckMenuItem * _step_edit_item
Gtk::RadioMenuItem * _percussion_mode_item
MidiChannelSelectorWindow * _channel_selector
boost::shared_ptr< MIDI::Name::MasterDeviceNames > get_device_names()
void show_existing_automation(bool apply_to_selection=false)
void add_note_selection_region_view(RegionView *rv, uint8_t note, uint16_t chn_mask)
void set_note_selection_region_view(RegionView *rv, uint8_t note, uint16_t chn_mask)
ARDOUR::NoteMode _note_mode
MidiStreamView * midi_view()
ParameterMenuMap _controller_menu_map
Definition: ardour.h:41
void set_channel_mode(ARDOUR::ChannelMode, uint16_t)
ARDOUR::ColorMode color_mode() const
std::map< Evoral::Parameter, Gtk::CheckMenuItem * > ParameterMenuMap
void channel_selector_hidden()
void build_automation_action_menu(bool)
Gtk::HBox _channel_status_box
MidiScroomer * _range_scroomer