summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/types_convert.h
AgeCommit message (Collapse)Author
2019-11-22redesign of declicking and fades around loop boundariesPaul Davis
2019-08-11Add types/enum for screensaver modeRobin Gareus
2019-08-03Update libardour GPL boilerplate and (C) from git logRobin Gareus
2019-02-12Selection-after-split behavior ( libardour part )Ben Loftis
2018-09-20switch transport masters to use properties and notify via PropertyChangedPaul Davis
2018-09-13Implement new Enclosed region equivalence modeColin Fletcher
2018-07-03reverse velocity display related commitsPaul Davis
2018-07-03enum convert for VelocityDisplayOptionPaul Davis
2018-01-30Update PluginManager: implement plugin tagsRobin Gareus
* move plugin-meta-data (status, tag) into dedicated sub-dir * load/save space separated tags * pre-seed tags with plugin-category (if unset) * breaking API change: PluginStatusesChanged() signal includes change
2017-11-23Add clock-delta mode enumRobin Gareus
2017-09-18initial (incomplete) framework for DiskIOPoint manipulationPaul Davis
2017-06-21Remove Cruft -- AutomationStyle never did anything.Robin Gareus
Trim automation is planned via SlavableAC as normal AutomationMode. Some of this code have a revival (a special "Trim+Preview" state before merging Automation but that has to be more general than Pan & Gain.
2017-04-20Remove unused enumRobin Gareus
2017-04-19Changes needed for building Tim's new 'string_convert' stuff with MSVC ↵John Emmas
(libardour)
2017-04-19Add header for PBD::to_string/string_to() specialisations for libardour typesTim Mayberry
Add PBD::to_/string_to specializations for ARDOUR::DataType These could go into the data_type.h header but they don't really need to and it means that ardour/types_convert.h can just be included by source files that need to do type<=>string conversion. A potential problem with this is that if all the specializations are contained in a single header then any class that requires inclusion of that header to do serialization will be recompiled each time types_convert.h is changed. I'm not going to worry about it at this stage, it can always be broken up or improved upon later.