summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2016-02-23Add new sources to MSVC project (libardour)Robin Gareus
adapted from John Emmas' lua branch
2016-02-23Implement Lua session-scriptsRobin Gareus
2016-02-23Implement Lua DSP processor/pluginRobin Gareus
2016-02-23libardour lua-script-managerRobin Gareus
2016-02-23include static liblua with libardour & prepare bindingsRobin Gareus
2016-02-22basic DSP lib (for lua bindings)Robin Gareus
2016-02-22add lua search pathRobin Gareus
2016-02-22add realloc pool to MSVC projectRobin Gareus
2016-02-22realloc-pool unit-testRobin Gareus
2016-02-22time-bound memory-poolRobin Gareus
O(1) realloc() for use with Lua. A standard malloc/free/realloc API is exposed for testing and other potential use-cases. The current configuration it's performs well for lua-metatables (regular calls to realloc() with varying tiny chunks ~1-50 bytes) For the use-case at hand it outperforms TLSF.
2016-02-22Add a VC project for building the new lua branch with MSVCRobin Gareus
(untested, new paths -- adopted from John Emmas project)
2016-02-22LuaBridge: support argument references via table returnRobin Gareus
2016-02-22customize LuaBridgeRobin Gareus
* introduce boost::shared_ptr support * support enum & const * allow to add non-class member functions * STL iterators (vector, list, set, bitset & map) * support reference arguments (framecnt_t&) * add support for arrays of basic types (e.g. float*, int*) * fix compiler warnings
2016-02-22add liblua wrapper and build-scriptsRobin Gareus
2016-02-22NO-OP whitespaceRobin Gareus
2016-02-22add LuaBridgeRobin Gareus
https://github.com/vinniefalco/LuaBridge
2016-02-22add lua-5.3.2Robin Gareus
2016-02-22fix merge/rebase mistakePaul Davis
2016-02-22fix an error during merge/rebase fixupsPaul Davis
2016-02-22cleanup post-rebase-against-master messesPaul Davis
2016-02-22a bunch of stuff to make tab/window switching work better, and provide Alt-m ↵Paul Davis
to toggle between editor+mixer in a sane way
2016-02-22provide Tabbable::change_visibility(), which has slightly odd semantics that ↵Paul Davis
are neither toggle nor one-shot
2016-02-22allow pixbuf_from_string() to return the full size pixbuf, with optional paddingPaul Davis
2016-02-22remove tab-related code for tabbed notebook, add tooltips to new buttonsPaul Davis
2016-02-22tab-free tabbed display, part 1.2Paul Davis
2016-02-22add syntax and scaffolding for MIDI binding maps to refer to selected ↵Paul Davis
tracks/busses. THIS DOES NOT WORK YET. Selection information is not available in libardour at this time
2016-02-22fix tooltip text to accurately describe how to reattach window.Paul Davis
This commit incorrectly describes top level menu structure inside a file in libs/gtkmm2ext.
2016-02-22fix inadvertent case changePaul Davis
2016-02-22additional GTKOSX => __APPLE__ changes missed in previous commitPaul Davis
2016-02-22add a clarifying commentPaul Davis
2016-02-22change operator<< for Keyboardkey to show state in hexPaul Davis
2016-02-22no more munging with keyvals/accels on OS XPaul Davis
2016-02-22remove Bindings::ignored_state and use Keyboard::RelevantModifierMaskPaul Davis
2016-02-22set PrimaryModifier on OS X to match the actual bits used by GTK for CommandPaul Davis
2016-02-22remove Gtkmm2ext::possibly_translate_mod_to_make_legal_accelerator().Paul Davis
This is no longer needed because we can set the modifier to the actual bits that GTK uses for Command (META+MOD2)
2016-02-22remove all trace of SAE from source code.Paul Davis
This had become incoherent over time, and posed a development hazard and burden going forward
2016-02-22replicate the remove-all-trailing whitespace commit(s) in masterPaul Davis
2016-02-22change suffix of keybinding files to ".keys" to avoid conflict with earlier ↵Paul Davis
versions. Move some code around that should never have been inside libs/ardour to begin with.
2016-02-22update Mackie code to use new API to get all actionsPaul Davis
2016-02-22cleanup Bindings/ActionMap API to get all actions for various purposesPaul Davis
2016-02-22create a two-way association between an action map and a bindings object, ↵Paul Davis
rather than just one way. This helps us lookup bindings when printing out lists for the user
2016-02-22more changes to Bindings, Keyboard APIsPaul Davis
2016-02-22radically change Keyboard/Binding API design to disconnect Gtk::Action ↵Paul Davis
lookup from binding definition We need this because we need binding information/objects before all Actions have been defined.
2016-02-22various fixes for saving bindings statePaul Davis
2016-02-22fix memory lifetime management issuePaul Davis
2016-02-22change/extend/rework Bindings API to allow replacement and provide ↵Paul Davis
stub/hook/call to save bindings
2016-02-22initial compilable version of saving key bindings with "new" schemePaul Davis
2016-02-22small rationalization of naming and code for managing plugin GUI visibilityPaul Davis
2016-02-22bindings: prevent double registration and double signal connection, and ↵Paul Davis
provide get_all_actions() methods
2016-02-22remove all action-registering API from Gtkmm2ext::ActionManagerPaul Davis