summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
AgeCommit message (Collapse)Author
2017-07-27Fix pasting automation at 0Robin Gareus
2017-07-25Fix #6280 – region (first_frame()==0) selectable with SnapRegionBoundaryJohannes Mueller
Issue #6280 states that when selecting ranges using SnapToRegionBoundary it's not possible to select regions with first_frame() == 0. This is because Playlist::find_next_region() does not consider region boundaries == pos but only > pos. Thus it never considers pos == 0 to be a region boundary. This solution tries to be as little invasive as possible without changing the semantics of PlayList::find_next_region(). Therefore position 0 is added to the region boundary cache if there's a region starting at position 0 in any track.
2017-07-22Rework region selection XMLnick_m
Ensures that selection is restored in the same object type order it was created in, which may some day make a difference.
2017-07-22Cropping a single region to time selection works for multiple rangesnick_m
Should fix 7285.
2017-07-22Add missing braces to Editor::cut_copy conditionalnick_m
2017-07-22Editor::playhead_forward/backward_to_grid snaps even in magnetic modenick_m
2017-07-19Rationalize Editor Zooming: make it harder for user to step into ridiculous ↵Ben Loftis
zoom-out scales.
2017-07-17Remove ArdourPrompter wrapperRobin Gareus
2017-07-17Remove <gtkmm.h> include from header files.Robin Gareus
2017-07-17Move more Gtkmm2ext widgets into libwidgetRobin Gareus
2017-07-17Separate Ardour UI widgets into dedicated libraryRobin Gareus
2017-07-01NO-OP whitespace (updated GH PR #357)Thomas Brand
2017-06-21GUI: prepare for API changesRobin Gareus
remove use of - unbound_min/max - list->default_value and min/max_y
2017-06-17NO-OP: whitespaceRobin Gareus
2017-04-29Add a "select topmost" track editor actionRobin Gareus
2017-03-10Fix crash when removing time from track with automationTim Mayberry
Resolves : #7287
2017-03-04Add reset region gain action for selected regionsTim Mayberry
2017-03-02Fix crash when inserting time with split intersected regionsRobin Gareus
2017-02-27complete changes to tempo type.nick_m
- this implements in the intention behind the previous commit. a tempo mark is constant until its end has been changed by a shift-drag on the next marker.
2017-02-27rework tempo editing.nick_m
most changes are due to a new design where tempo discontinuities at the beginning of a ramped section may be set. this allows easier mapping of live performance, especially in the common case of a ramped ritard before the beginning of a new section. feature summary: holding constraint modifier (shift) while dragging the BBT ruler area drags the tempo lines by changing the start tempo (as before) holding copy modifier (control) while dragging the BBT ruler area drags the tempo lines by changing the end tempo (ahem. not quite there) dragging a tempo mark while holding constraint (shift) will change the previous end tempo to match the marker position *worth trying*. holding constraint and copy modifier (control + shift) while dragging the BBT ruler area attempts to'pinch' or twist the surrounding tempi sp that later ones are not repositioned (currently suffereng from rounding errors)
2017-02-19fix missing command in Editor::snap_regions_to_grid ()nick_m
- fixes 7246
2017-02-13GUI action Transport/RecordCountInRobin Gareus
2017-02-08NO-OP: whitespace changesPaul Davis
2017-02-08improved fix for #7208, hopefullyPaul Davis
2017-02-04'CheckMenuItem' conflicts with an item already existing in MSVCJohn Emmas
2017-02-04more inconsistent menu item fiddling.nick_m
2017-02-04more messing about with inconsistent menu state.nick_m
2017-02-04allow "Glue to Bars & Beats" in region menu to be in an inconsistent state.nick_m
- toggling an inconsistent lock style sets all selected regions to AudioTime
2017-02-04rework snapnick_m
snap now fills in a struct (MusicFrame) which contins a snapped frame along with a music divisor. this gives useful information wrt magnetic snap which may or may not have rounded to an exact musical position. region position may now be set musically (using quarter notes for now). this patch fixes several problems in the current code: - dragging a list of music-locked regions now maintains correct musical offsets within the list. - splitting regions using magnetic snap works correctly (#7192) - cut drag should now work correctly with magnetic snap. - musical length of split midi regions is no longer frame based.
2017-01-27remove editor/mixer selection change signals; make editor and mixer use ↵Paul Davis
PresentationInfo::Change more correctly; make Selection a bit smarter when setting track selection
2017-01-22make undo/redo work for Regions > Edit > Close GapsPaul Davis
2017-01-19GUI: use new preroll-rec + trim modeRobin Gareus
2017-01-19Remove rec-with-preroll, prepare for reworkRobin Gareus
2017-01-19Remove Editor API to calc preroll durationRobin Gareus
2017-01-18Promote the preroll_seconds config option to include musical time:Robin Gareus
Interpret negative preroll time as bars
2017-01-18prepare for musical-time prerollRobin Gareus
2017-01-18Add GUI action to record with prerollRobin Gareus
2017-01-12Support repeated jump-backward-to-mark while playing.Ben Loftis
2016-12-29allow all types of range location (loop, start, end etc.) to be glued to ↵nick_m
bars and beats.
2016-12-19Tweak behavior of Play-With-Preroll actionBen Loftis
2016-12-19Follow Edits => Follow RangeBen Loftis
* "Follow Edits" button had several behaviors that confused users. * "Follow Range" only has 2 behaviors: ** Click anywhere in Range mode (or Smart mode) to locate the playhead. ** When you select a Range, "Play" will play the selected range.
2016-12-13Change Zoom to Selection action (Z key) to zoom on both axesTim Mayberry
Add Zoom to Selection (Horizontal) action to access previous behavior. Remove Editor::temporal_zoom_region as it was duplicate code and broken for both_axes Should Resolve: #7112
2016-12-06Don't move the Range Selection after performing Multi DuplicateTim Mayberry
This is necessary for a single Duplicate so you can keep duplicating but it doesn't make sense to move it for Multi Duplicate.
2016-11-28Speed up track deletion when Editor-Mixer is visibleRobin Gareus
2016-11-21Make Cut mode respect snap modiferTim Mayberry
2016-11-11Use the frame corresponding to the current mouse position when zoom draggingTim Mayberry
Editor::mouse_frame only works within the track canvas. If a zoom drag is initiated and the mouse cursor goes outside of the track canvas the zoom position should still based on the current x position of the cursor.
2016-11-11Change Editor temporal zoom methods to be able to use different scale for ↵Tim Mayberry
the zoom
2016-11-10prevent crash during track-deletion (un-selecting deleted tracks)Robin Gareus
2016-10-20Track Add/Remove Time dialog improvements:Ben Loftis
Add a clock to show the position of the edit, to remove ambiguity If a Range is selected, pre-fill the position and length clocks Clock format should default to the editor's secondary clock mode
2016-09-27add explicit "duplicate-regions" actionPaul Davis