summaryrefslogtreecommitdiffstats
path: root/src/gui/App.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-07-13Add missing includesDavid Robillard1-0/+2
According to include-what-you-use, anyway. Most of these seem questionable/unnecessary, but since the whole point here is to avoid wasting time doing manually what machines can do, just do what the tool says to keep the checks clean even if it's suboptimal.
2023-09-23Clean up includes and forward declarationsDavid Robillard1-1/+1
2023-05-12Clean up includesDavid Robillard1-1/+1
2022-12-14Avoid use of std::bindDavid Robillard1-5/+4
2022-12-14Concatenate nested namespacesDavid Robillard1-4/+2
2022-12-14Use std::variantDavid Robillard1-5/+5
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-1/+3
2022-08-18Use default member initializationDavid Robillard1-9/+0
2022-08-18Use auto when declaring iteratorsDavid Robillard1-1/+1
2020-12-15Clean up includes in guiDavid Robillard1-17/+25
2020-12-14Avoid "using namespace"David Robillard1-10/+16
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-5/+5
2020-08-02Remove redundant pointer get() callsDavid Robillard1-1/+1
2020-08-02Use nullptr for empty smart pointersDavid Robillard1-1/+1
2020-08-02Use auto with pointer casts to remove redundancyDavid Robillard1-1/+1
2020-08-02Use std::make_sharedDavid Robillard1-7/+7
2020-08-02Remove wrappers for standard memory functionsDavid Robillard1-4/+5
2020-08-02Fix uninitialized membersDavid Robillard1-13/+12
2020-08-02Don't access static methods through instancesDavid Robillard1-2/+2
2020-08-02Fix unnecessary parameter copiesDavid Robillard1-1/+1
2020-08-01Use modern castsDavid Robillard1-1/+1
2019-03-09Clean up includes and forward declarationsDavid Robillard1-22/+24
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard1-12/+10
2019-03-08Pass World everywhere by referenceDavid Robillard1-29/+29
2018-09-23Use lowercase namespace namesDavid Robillard1-12/+12
2018-01-22Speed up animation and update GUI at 30HzDavid Robillard1-4/+3
2018-01-22Only enqueue messages when the engine is remoteDavid Robillard1-10/+19
When the engine is local, messages are emitted in the Gtk thread and applied immediately. This should make the GUI more responsive.
2018-01-21Add URI class and remove use of Raul::URIDavid Robillard1-12/+12
2017-12-25Use auto for iteratorsDavid Robillard1-3/+3
2017-12-25Remove superfluous using namespace declarationsDavid Robillard1-7/+5
2017-12-25Always use bracesDavid Robillard1-5/+10
2017-12-25Use nullptrDavid Robillard1-2/+2
2017-12-24Clean up includes in public headersDavid Robillard1-0/+1
2017-12-16Move sequence numbers into messages and simplify interfacesDavid Robillard1-1/+1
2017-12-16Add Message struct and remove tons of interface boilerplateDavid Robillard1-24/+18
2017-03-20Fix round-trip preservation of property contextsDavid Robillard1-4/+6
2017-03-19Shrink status bar text and fix initial DSP load displayDavid Robillard1-8/+2
2017-03-18Use new suil init API to fix Qt5 plugin UIsDavid Robillard1-0/+3
2017-02-15Move Properties out of ResourceDavid Robillard1-3/+3
2016-12-04Fix initialization order warningDavid Robillard1-1/+1
2016-10-29Fix minor memory issuesDavid Robillard1-0/+1
2016-10-02Show audio and load information in status lineDavid Robillard1-7/+74
2016-09-18Add fancy communication loggingDavid Robillard1-0/+24
2016-08-01Show colorized log output in messages windowDavid Robillard1-7/+9
2015-10-24Fix LV2 UIs that send during instantiationDavid Robillard1-1/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5780 a436a847-0d15-0410-975c-d299462d15a1
2015-04-05Hide close/quit menu items in plugin GUI.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5669 a436a847-0d15-0410-975c-d299462d15a1
2015-04-04Update copyright dates.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5653 a436a847-0d15-0410-975c-d299462d15a1
2015-03-28Unify value widgets in properties dialog.David Robillard1-0/+10
This shows the fancy URI selector for URI properties, and can show numeric controls for the property-to-add. The ontologies need some work, along with smarter widget creation, before the latter will actually be useful. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5648 a436a847-0d15-0410-975c-d299462d15a1
2015-03-13Fix crash on save in separate GUI process.David Robillard1-0/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5628 a436a847-0d15-0410-975c-d299462d15a1
2015-02-24Demodularize Parser and Serialiser.David Robillard1-4/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5606 a436a847-0d15-0410-975c-d299462d15a1