mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-28 17:37:41 +01:00
fix deadlock in playlist::partition(); new first idle model, including message about loading visual data; make h-faders use scroll up/down and be scalable-clickable; new track menu stuff (waveform scaling/shape); fix up ordering of ruler menus; fix initial sensitivity of region menu operations
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3097 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
280ade047c
commit
cdf37e613b
25 changed files with 354 additions and 192 deletions
|
|
@ -130,6 +130,7 @@ class Editor : public PublicEditor
|
|||
|
||||
void connect_to_session (ARDOUR::Session *);
|
||||
ARDOUR::Session* current_session() const { return session; }
|
||||
void first_idle ();
|
||||
|
||||
nframes_t leftmost_position() const { return leftmost_frame; }
|
||||
nframes_t current_page_frames() const {
|
||||
|
|
@ -171,6 +172,8 @@ class Editor : public PublicEditor
|
|||
void set_show_waveforms (bool yn);
|
||||
bool show_waveforms() const { return _show_waveforms; }
|
||||
|
||||
void set_waveform_scale (Editing::WaveformScale);
|
||||
|
||||
void set_show_waveforms_recording (bool yn);
|
||||
bool show_waveforms_recording() const { return _show_waveforms_recording; }
|
||||
|
||||
|
|
@ -1541,6 +1544,7 @@ public:
|
|||
void time_selection_changed ();
|
||||
void track_selection_changed ();
|
||||
void region_selection_changed ();
|
||||
void sensitize_the_right_region_actions (bool have_selected_regions);
|
||||
void point_selection_changed ();
|
||||
void marker_selection_changed ();
|
||||
|
||||
|
|
@ -2105,6 +2109,7 @@ public:
|
|||
|
||||
void remove_tracks ();
|
||||
void toggle_tracks_active ();
|
||||
void waveform_scale_chosen (Editing::WaveformScale);
|
||||
};
|
||||
|
||||
#endif /* __ardour_editor_h__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue