summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
AgeCommit message (Collapse)Author
2020-04-14Keep string markdown untranslatableRobin Gareus
2020-03-31Remember the route count when route lua template sets it by "how_many"Johannes Mueller
If the user has an audio interface with 32 inputs, there is the danger, that they click through the route template list and hit "Generic Audio Track" which then sets the number of routes to be added to 32. When they click back to e.g. "Audio Tracks" this number remains at 32. So they will accidentally add 32 audio tracks although they wanted just one. Somewhat inconvenient. By this commit we remember the number of routes to be added, when it is set by a lua template and thus can set it back when the user clicks back on a route type that does not set it.
2020-03-19Remove Audio+MIDI track, and consolidate route creation methodsRobin Gareus
Audio+MIDI tracks were just MIDI tracks with an additional audio input, and do not directly allow use of vocoders (an instrument is loaded by default). For pitch-correction or similar use-cases one would prefer an audio-track (main data) with MIDI only being used as control-input. Ardour 5/6 pin-connections and side-chain offer a much nicer workflow for this setup. Alternatively one can get those tracks-types by manually adding an input port to an existing track, and creating a custom template.
2020-03-17remove destructive/tape mode tracksPaul Davis
2019-12-14First batch of MessageDialog replacementsRobin Gareus
2019-10-25remove unintended leading spacePaul Davis
2019-08-06Gui should allow foldback bus to be mono.Len Ovens
2019-08-03Update GPL boilerplate and (C)Robin Gareus
Copyright-holder and year information is extracted from git log. git history begins in 2005. So (C) from 1998..2005 is lost. Also some (C) assignment of commits where the committer didn't use --author.
2019-04-15Split new route messages into re-usable piecesRobin Gareus
This improves consistency for the various new-route descriptions and allows to unify messages with Mixbus without re-doing complete strings. It may also benefit translations.
2018-12-19Copy-edit track type descriptions a little, improving consistency and ↵Carl Hetherington
removing some capital letters.
2018-11-12Make foldback bus match foldback sends namewiseLen Ovens
to avoid confusion with listener sends or monitor bus
2018-11-01Allow ListenBus to be added by GUILen Ovens
2018-11-01Correct new track/bus/VCA dialog textLen Ovens
2018-10-31NO-OP: whitespaceRobin Gareus
2018-10-30New Route dialog: add fallback default selectionRobin Gareus
This fixes an issue with Mixbus. If the default "Create Audio Tracks.." template/script is not available. Nothing is selected. Selecting a type/template is required to update various other dialog fields. eg. "Name" field. Previously: Create VCA. OK+Close. Re-open dialog. Now the implicit default was "Audio Track" but the Name-field still showed "VCA".
2018-02-24NO-OP: whitespaceRobin Gareus
- remove trailing whitespace - remove space after opening brackets and before closing brackets - add space around operators - do not use '//' for multi-line comments, do not use "//" on line-start to comment-out code breaking indenting (-Wmisleading-indent) - do add a single space after comment-start /*{SPACE}... or //{SPACE}... - reserve duplicate whitespace " " for alignment, remove other duplicate whitespace - use established "TODO" and "XXX" (highlighted keywords) - remove equal-sign series "====" (those indicate merge conflicts)
2017-12-19Update template list in Route DialogRobin Gareus
2017-09-21s/created with/modified with/Robin Gareus
Once a session has been saved by a more recent version or a different variant, the session file is tied to that version/variant. The created-with version is only for debug purposes and internal use.
2017-09-18manually fix up various cases where Gtk:Frame foo_frame had been changed to ↵Paul Davis
foo_sample
2017-09-18globally change all use of "frame" to refer to audio into "sample".Paul Davis
Generated by tools/f2s. Some hand-editing will be required in a few places to fix up comments related to timecode and video in order to keep the legible
2017-08-24Track Templates: tweaks to MIDI Bus description text.Ben Loftis
2017-08-22Track Templates: Add verbose descriptions for the built-in track types.Ben Loftis
2017-08-22Track templates: clean-up widget sensitivity based on selection.Ben Loftis
2017-08-22RouteDialog: implicit "Add (+close)" on <enter> or double-clickRobin Gareus
2017-08-22Reset RouteDialog: name edited by-userRobin Gareus
* after each "Add" operation * when cleaning the name field
2017-08-22Tweak RouteDialog bottom areaRobin Gareus
2017-08-22Track Templates: yet another layout tweak.Ben Loftis
2017-08-22RouteDialog: retain prior type selectionRobin Gareus
2017-08-22RouteDialog: Move built-in types into template list experimentRobin Gareus
2017-08-21AddRouteDialog: Indicate Type: templateRobin Gareus
2017-08-20Tweak route-dialog layout & sensitivityRobin Gareus
2017-08-20Cont'd work on route-templatesRobin Gareus
2017-08-19Fix copy/paste typo in e0a83a7Robin Gareus
2017-08-18Remove old destructive API (non layered is a dynamic mode) 1/2Robin Gareus
2017-08-18amend e0a83a75 RouteDialog + script detailsRobin Gareus
2017-08-18Redesign Session+Route Template Meta Script APIRobin Gareus
Remove special-cased script types. Allow Action-Scripts to be re-used for session-setup or route-templates.
2017-08-18Push user track-templates to the template listRobin Gareus
2017-08-18NO-OP: whitespace & scopeRobin Gareus
2017-08-17Track templates: add some (unfinished) template files. Hide Created-With ↵Ben Loftis
column in Ardour.
2017-08-17NO-OP: whitespace & scopeRobin Gareus
2017-08-17Track Templates: redesign of Add Track dialog.Ben Loftis
2017-08-05Fix Track/Bus dialog name-entry defaultRobin Gareus
Changing the track-type to add changes the name which marked the name-entry as "edited by user", even though it was Ardour itself which changed the name.
2017-07-17Separate Ardour UI widgets into dedicated libraryRobin Gareus
2017-07-17fix behaviour of AddRouteDialog "Add" buttonPaul Davis
2017-07-17if user has edited name entry in add route dialog, type changes should not ↵Paul Davis
reset it. But using a response button should
2017-07-01NO-OP whitespace (updated GH PR #357)Thomas Brand
2017-06-12Consistent "cancel/close" button position on the left.Robin Gareus
"Add and Close" is an odd one out and this button should really be removed for consistency. Still it allows for a 2-click or 2-keyboard-shortcut very common action.
2017-06-03add route dialog now has "Add" and "Add and Close" buttons. "Add" keeps ↵Daniel Sheeler
dialog open so user can add multiple templates.
2017-05-14Fix double "Tape" in Record Mode drop down when adding new track.André Nusser
This bug probably also lead to "Tape" being shown in mixbus even though it should not.
2017-03-26whenever showing the add routes dialog, put focus in the SpinButton that ↵Paul Davis
determines how many <X> are added