summaryrefslogtreecommitdiff
path: root/libs/surfaces/control_protocol
AgeCommit message (Collapse)Author
2018-02-15When building with MSVC, allow for the fact that Mixbus and Ardour can be ↵John Emmas
using different versions of the SESSION_FILE format
2018-02-14Accommodate the change from libtimecode to libtemporalJohn Emmas
2017-09-24convert codebase to use Temporal for various time typesPaul Davis
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-07-01Addressing #7371: don't trigger session->undo() from non-GUI-threadJohannes Mueller
When triggering Session::undo() or Session::redo() from a non-GUI-thread (e.g. from a surface protocol) Ardour crashes if setting a CairoWidget dirty due to a ENSURE_GUI_THREAD assertion. (see #7371) By triggering undo by BasicUI::access_action() rather than by Session::undo() we ensure that the GUI thread will finally call Session::undo(). So more like a workaround ... but better than crashing :)
2017-05-23Use braces in BasicUI::jump_by_bars()Tim Mayberry
2017-05-23Use braces in BasicUI::jump_by_seconds()Tim Mayberry
2017-05-23Use correct variable in BasicUI::jump_by_secondsTim Mayberry
2017-05-15It might not be obvious why... but 'ARDOUR::ControlProtocol::name()' needs ↵John Emmas
to be a virtual function Basically, libardour is calling functions from libardour_cp and vice versa. For example, libardour needs 'ARDOUR::ControlProtocol::name()' whereas ardour_cp needs 'ARDOUR::Route::soloed()' and various others. Ordinarily, this would require each library to get built before the other one! :-( To get around this (in MSVC at least) one of the libraries must be forced to use late binding (e.g. by declaring its functions as 'virtual'). It looks like this is already being done for most of the other functions from 'ARDOUR::ControlProtocol', so let's do it for this function too...
2017-05-12don't actually use a method from libardourcp inside libardour; use a ↵Paul Davis
PBD::Signal to avoid linker issues
2017-05-12change the way ControlProtocols (control surfaces) are notified and handle ↵Paul Davis
Stripable selection changes The Editor continues to notify them, but via a direct call to ControlProtocolManager, not a signal. The CP Manager calls the ControlProtocol static method to set up static data structures holding selection info for all surfaces and then notifies each surface/protocol that selection has changed.
2017-04-19Use XMLNode::get/set_property API in ARDOUR::ControlProtocol classTim Mayberry
2017-04-19Add missing header include to ControlProtocol class source fileTim Mayberry
2017-04-01Fix set-*-from-edit-range actions, when accessed from control surfaces.Ben Loftis
2017-03-19BasicUI moved toggle_click,toggle_roll and stop_forget from menu action to ↵Len Ovens
session calls
2017-03-19basic_ui send midi_panic directly to session rather than through GUILen Ovens
2017-03-18OSC fix toggle_monitor_mute/dim/mono in basic_uiLen Ovens
2017-02-25Revert "libs: debug output for faderport/editor mixer strip sync"Paul Davis
This reverts commit 6fb91b1ac25bbeb282228822efbdc91b62941f6e.
2017-02-24libs: debug output for faderport/editor mixer strip syncPaul Davis
2017-02-17Remove direct calls to set solo_control()Robin Gareus
Changing solo-state needs to be done in rt-context to atomically propagate solo/mute. set_control() queues a rt-event, later Session::rt_set_control() calls Session::update_route_solo_state() to propagate solo/mute.
2017-02-01make the leftmost mixer stripable API at least work as advertisedPaul Davis
2017-02-01add new API to ControlProtocol to allow GUI to specify left-most mixer stripPaul Davis
Subject To Change. Mileage May Vary. Offer Not Good In All Territories.
2017-01-28fix another action name in BasicUI after Editor=>Control migrationPaul Davis
2017-01-28fix action names in BasicUI after Editor=>Control migrationPaul Davis
2016-09-27post-rebase fixesPaul Davis
2016-09-27change API for BasicUI::goto_start() to use optional roll-after argPaul Davis
2016-09-27add method (taken from GTK GUI) to goto_nth_marker() to BasicUIPaul Davis
2016-09-27use new shared cancel_all_solo() in Mackie codePaul Davis
2016-09-27add correct implementation for cancel all solo to BasicUIPaul Davis
2016-08-30Update our MSVC project files to generate the most recent Ardour session ↵John Emmas
file format (ver 5) rather than the older v3 format
2016-07-14enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.hPaul Davis
2016-07-06set ControlProtocol::_first_selected_stripable at the right time onlyPaul Davis
2016-07-06a few post-rebase cleanupsPaul Davis
2016-07-06restore/extend/simplify ControlProtocol API to allow tracking of selectionPaul Davis
2016-07-06remove a bunch of code that will no longer be usedPaul Davis
2016-07-04use session stripable selection APIPaul Davis
and remove old ControlProtocol signals to talk to GUI etc.
2016-06-10remove certain ControlProtocol signals related to stripable selectionPaul Davis
includes change to Mackie support so that strips listen for PropertyChange on the stripables they represent, no global selection change used anymore.
2016-05-31use new record safe control in surface supportPaul Davis
2016-05-31remove now-redundant control protocol route-selection signalsPaul Davis
2016-05-31remove no-longer-used TrackSelectionChanged signal from ControlProtocolPaul Davis
2016-05-31add Stripable analogs for Route signals and methods in ControlProtocolPaul Davis
These will go away once all surfaces have migrated to Stripables
2016-05-31first vaguely working version using PresentationInfoPaul Davis
remote control ID and "order keys" have been removed.
2016-05-31universal change in the design of the way Route/Track controls are designed ↵Paul Davis
and used. The controls now own their own state, rather than proxy for state in their owners. Massive changes all over the code to accomodate this. Many things are not finished. Consider this a backup safety commit
2016-05-31use redesigned Route and VCA object architecture/APIPaul Davis
2016-05-27Tempo ramps - rename bbt_time() -> bbt_at_frame(), frame_time() -> ↵nick_m
frame_at_bbt()
2016-05-21Accommodate the fact that 'msvc_resources.rc.in' got moved to a new pathJohn Emmas
2016-05-09copy-n-paste the ARDOUR_UI toggle-roll code into BasicUI (for Faderport and ↵Paul Davis
others)
2016-04-30make BasicUI (for control surfaces) loop toggle work like the GUIPaul Davis
2016-04-04Modify our MSVC projects to build liblua as a DLL rather than a static libJohn Emmas
2016-02-28prepare for update to waf 1.8Robin Gareus
uselib is no longer implicit (inherited by .use). This is still incomplete, some uselibs for non-linux variants may be missing. bld.is_defined("HAVE_XXX") also no longer works and will have to be changed (I think to bld.env["HAVE_XXX"]) in countless places.