aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/sampler_ui.c
AgeCommit message (Collapse)AuthorFilesLines
2022-09-08Adopt REUSE machine-readable licensing standardDavid Robillard1-16/+2
2022-05-26Suppress new warnings in clang-tidy 13David Robillard1-2/+6
2020-12-26Format all code with clang-formatDavid Robillard1-293/+293
2020-12-26Add clang-format suppression commentsDavid Robillard1-0/+3
2020-12-16Add assertions for atom buffer sizesDavid Robillard1-0/+5
This avoids warnings about potential null pointer dereferences, which is true, but in this case the buffer are static so it's really a programming error if there is ever an overrun.
2020-12-16Clean up includesDavid Robillard1-0/+1
2020-12-16Fix implicit and narrowing conversionsDavid Robillard1-2/+2
2020-12-16Simplify degenerate switchesDavid Robillard1-6/+1
2020-05-22eg-sampler: Fix size of note-on atom sent from UIDavid Robillard1-1/+1
2020-03-17eg-sampler: Destroy widgets in the correct orderMichael Fisher1-6/+19
2020-03-17eg-sampler: Improve UI show/hide handlingMichael Fisher1-4/+43
Ensures that gtk_init() is only called once, and that the idle callback does not block the UI thread.
2020-03-17Add a UI feature to request a parameter value from the hostDavid Robillard1-7/+27
2019-01-10Sort includes from local to standard and fix exposed issuesDavid Robillard1-13/+13
This order is better because it ensures that headers can stand alone and include everything they need. Several missing includes were exposed by this, and are also fixed in this commit.
2018-09-23Clean up includesDavid Robillard1-1/+11
2018-09-22Install standard headers to simpler include pathsDavid Robillard1-8/+8
2016-10-05Avoid repeatedly requesting the same peaksDavid Robillard1-0/+5
2016-10-05Add play button to UIDavid Robillard1-12/+46
2016-10-05Draw waveform aligned to pixel gridDavid Robillard1-0/+3
2016-10-04eg-sampler: Add waveform display to UIDavid Robillard1-41/+128
2016-07-31eg-sampler: Support thread-safe state restorationDavid Robillard1-12/+10
2016-07-31Clean up example plugin initializationDavid Robillard1-20/+18
2016-07-30Use calloc to allocate instancesDavid Robillard1-1/+5
2015-01-18Fix whitespacee.David Robillard1-1/+1
2014-10-31eg-sampler: Support patch:Get, and request initial state from UI.David Robillard1-1/+14
2014-08-06Order book chapters in build script rather than by bundle name.David Robillard1-0/+241
2013-02-11Order examples in a sensible progression for the book.David Robillard1-201/+0
2012-08-09Fix missing static declarations (-Wstrict-prototypes).David Robillard1-1/+1
2012-08-05Layout UI vertically.David Robillard1-2/+2
2012-04-06Tidy and improve documentation.David Robillard1-2/+2
2012-03-16Update for patch extension.David Robillard1-2/+2
2012-02-19atom/atom-helpers.h => atom/util.h.David Robillard1-1/+1
2012-02-19Clean up code, update copyright dates.David Robillard1-4/+4
2012-02-18Remove state:Path and use new atom:Path instead.David Robillard1-34/+6
Remove suggestion to use file URIs in plugins, which is much too tedious. If plugins use standard atom types, hosts should be able to map paths in any way (which they may need to regardless). Unfortunately it's slightly less pretty in Turtle to have a special path type rather than a (possibly relative) URI. Factor out common write_set_filename_msg in sampler example. Establish common URI define convention LV2_EXTNAME__URILOCALNAME and define all URIs in state, message, and atom.
2012-02-18Make forge API more fool-proof and automatically update container sizes to ↵David Robillard1-7/+10
any depth.
2012-02-18Fix invalid messages sent between plugin and UI.David Robillard1-5/+5
2012-02-18Send notifications to the UI and display loaded sample path.David Robillard1-10/+30
2012-02-17Send a proper file URI to load sample instead of a path string.David Robillard1-5/+19
2012-02-13Centralize URI map cache and use in both plugin and UI.David Robillard1-7/+9
2012-02-09Add message extension.David Robillard1-6/+21
2012-02-08Heavily revise atom extension into a release candidate.David Robillard1-15/+17
2012-01-04Update to match released urid extension.David Robillard1-2/+2
2011-11-09Clean up URID extension.David Robillard1-7/+7
2011-11-09Rename Object to Thing.David Robillard1-6/+6
Add definition of Message.
2011-11-09Implement file name changing from UI.David Robillard1-43/+35
2011-10-10Add missing fileDavid Robillard1-0/+181