summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_ui.cc
AgeCommit message (Collapse)Author
2017-08-06Allow to select VCAsRobin Gareus
2017-07-20Equivalent fix for #7429 for the mixerJohannes Mueller
The previous commit addressed only the behavior of clicking a route in the editor window. Now we handle the same issue in the mixer window.
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-12Honor groups for mixer selectionRobin Gareus
2017-07-08Add select-all-tracks mixer-shortcut (following editor)Robin Gareus
2017-07-08Fix gain inc/dec with multiple-selection spanning groupsRobin Gareus
When tracks in a gain-sharing group are selected, stepping gain up/down affected the tracks N times: for-each selected track inc/dec gain w/grouping. When a mix of grouped and un-grouped tracks is selected, this lead to inconsistent gain changes. The new approach expands the groups first. Ignoring groups is not correct either for single selection.
2017-07-01NO-OP whitespace (updated GH PR #357)Thomas Brand
2017-06-22Remove LocaleGuard from MixerUI classTim Mayberry
The float <=> string conversions that this guard was protecting are now using PBD::to_string/string_to() via XMLNode::get/set_property()
2017-06-17Remove CruftRobin Gareus
2017-06-17Remove CruftRobin Gareus
2017-06-17Use Stripable::Sorter in GUI consistently.Robin Gareus
2017-06-14Squelch error message when toggling master-bus visibility.Robin Gareus
2017-05-10Remember Monitor-section state (show/hide, attached/detached)Robin Gareus
2017-05-08remove misc. debug outputPaul Davis
2017-05-08when a Route is removed, don't bother triggering a ↵Paul Davis
sync-presentation-info-from-treeview because it isn't necessary Also, don't update mixer selection unless selection actually changed
2017-05-05use CoreSelection for track selectionPaul Davis
2017-04-19Use XMLNode::get/set_property API in Mixer_UI classTim Mayberry
2017-03-26improve correct selection (in mixer) of newly added tracks/bussesPaul Davis
2017-03-16consolidate context-menu popup methodsRobin Gareus
2017-03-10Use dedicated "show editor/mixer" actionsRobin Gareus
2017-03-08Mixer sidebar: show group context menu on right-click onlyRobin Gareus
2017-02-26make sure that when extending the selection in the editor and mixer, the ↵Paul Davis
clicked-upon track gets set_selected() called last This makes it be the "first" selected strip for control surfaces and the editor mixer
2017-02-20ensure that when mixer is shown in its own tab, it has a default focus ↵Paul Davis
widget, so that alt-m will always work
2017-02-18Don't scroll-jump when selecting all tracksRobin Gareus
2017-02-18VCA spill should not show hidden tracksRobin Gareus
2017-02-17Fix route ordering (mixer TV lacks master-bus)Robin Gareus
Skip master bus' order-key when re-ordering routes in the mixer. This also fixes a related issue: When a new track is added, Session::RouteAdded will call be handled by Editor::add_routes AND Mixer_UI::add_routes, leading to calls to both: - EditorRoutes::sync_presentation_info_from_treeview() - Mixer_UI::sync_presentation_info_from_treeview () which potentially set different order-keys.
2017-02-02Right-click on a VCA to assign it to the selected channels.Ben Loftis
2017-01-30left/right align mixer-stripsRobin Gareus
2017-01-28further improvement to Mixer_UI::move_stripable_into_view()Paul Davis
2017-01-28improve the behaviour of Mixer_UI::move_stripable_into_view()Paul Davis
Don't change anything if the strip is visible; if we have to move to show it, try to show the requested strip in the middle
2017-01-28ensure mixer shows a recently selected stripPaul Davis
This doesn't guarantee that is it the MOST recently selected strip
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-27use RAII for class-wide PresentationInfo::Change signal, along with ↵Paul Davis
properties to describe what changed
2017-01-26Fix mixer continuous multi-selectionRobin Gareus
Shift+select needs to iterate over strips as they are visually ordered. (Previously the order of adding/loading strips was used)
2017-01-18push sorted Stripable order back to PI (for control surfaces)Robin Gareus
2017-01-16Prepare generic spill ([mix]busses)Robin Gareus
2017-01-09Fix mixer scrollingRobin Gareus
2017-01-06fix route ordering (and related possible crash on re-order)Robin Gareus
2017-01-02allow to shrink mixer left-side paneRobin Gareus
2017-01-02remove VCA title/heading (increases min width)Robin Gareus
2016-12-22Display VCAs at the end of the Track/Bus listRobin Gareus
2016-12-22spill chained VCAsRobin Gareus
2016-12-21backport/minimize difference to mixbus branchRobin Gareus
2016-12-21Don't try to scroll to stripables on different panesRobin Gareus
2016-12-21Vertically line up mixer strip (backport from Mixbus)Robin Gareus
2016-11-13basic Mac VST Cocoa UI supportRobin Gareus
2016-11-11static MonitorSection Action -- fixes #7098Robin Gareus
ActionManager registered actions are static global and cannot reference an instance (this) directly.
2016-11-07Set session dirty if tracks are reordered by user.Len Ovens