summaryrefslogtreecommitdiffstats
path: root/src/gui/ConnectWindow.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-07-13Add missing includesDavid Robillard1-0/+1
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-0/+2
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard1-1/+1
2022-12-14Concatenate nested namespacesDavid Robillard1-4/+2
2022-12-14Use std::variantDavid Robillard1-3/+3
2022-08-18Use a consistent style for empty bracesDavid Robillard1-2/+1
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-6/+10
2022-08-18Use default member initializationDavid Robillard1-21/+0
2021-01-02Update for latest raulDavid Robillard1-2/+2
2020-12-15Clean up includes in guiDavid Robillard1-7/+1
2020-12-14Avoid "using namespace"David Robillard1-5/+3
2020-08-03Clean up includesDavid Robillard1-0/+27
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check.
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-5/+5
2020-08-02Use nullptr for empty smart pointersDavid Robillard1-1/+1
2020-08-02Use auto with pointer casts to remove redundancyDavid Robillard1-2/+2
2020-08-02Remove wrappers for standard memory functionsDavid Robillard1-2/+3
2020-08-02Fix uninitialized membersDavid Robillard1-1/+1
2020-08-02Fix unnecessary parameter copiesDavid Robillard1-1/+1
2019-12-08Cleanup: Use empty() instead of size() where appropriateDavid Robillard1-1/+1
2019-03-09Fix misleading connect window labelDavid Robillard1-1/+1
2019-03-09Clean up includes and forward declarationsDavid Robillard1-11/+11
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard1-1/+1
2019-03-08Pass World everywhere by referenceDavid Robillard1-21/+22
2018-09-23Use lowercase namespace namesDavid Robillard1-12/+12
2018-01-22Speed up animation and update GUI at 30HzDavid Robillard1-1/+1
2018-01-22Only enqueue messages when the engine is remoteDavid Robillard1-6/+7
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 std::move to potentially avoid copyingDavid Robillard1-3/+3
2017-12-25Remove superfluous using namespace declarationsDavid Robillard1-3/+2
2017-12-25Always use bracesDavid Robillard1-8/+15
2017-12-25Use nullptrDavid Robillard1-15/+15
2017-12-24Clean up includes in public headersDavid Robillard1-1/+1
2017-12-16Add Message struct and remove tons of interface boilerplateDavid Robillard1-2/+13
2017-12-16Clean up includesDavid Robillard1-2/+1
2017-12-16Use unbounded queue for client signalsDavid Robillard1-1/+1
2017-02-15Move static path stuff to its own headerDavid Robillard1-1/+1
2016-10-14Don't request plugins until necessaryDavid Robillard1-2/+0
2016-08-17Rename main graph and control/notify portsDavid Robillard1-1/+1
2015-10-02Don't connect twice to server on initial load.David Robillard1-1/+11
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5734 a436a847-0d15-0410-975c-d299462d15a1
2015-08-29Fix crash when clicking activate before connection.David Robillard1-0/+13
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5716 a436a847-0d15-0410-975c-d299462d15a1
2015-05-25Use ingen:/ as base URI on the wire.David Robillard1-1/+1
This allows referring to non-graph items, which are converted to bundle-relative URIs on save, resolving issue #1049. Change root graph URI to ingen:/graph. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5687 a436a847-0d15-0410-975c-d299462d15a1
2015-04-04Fix whitespace.David Robillard1-5/+5
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5654 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-16Fix launching GUI with no engine.David Robillard1-100/+149
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5640 a436a847-0d15-0410-975c-d299462d15a1
2015-02-08Server-side copy paste with LV2 state support.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5541 a436a847-0d15-0410-975c-d299462d15a1
2014-02-02Disable responses in the usual case where the UI doesn't care.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5333 a436a847-0d15-0410-975c-d299462d15a1
2014-01-24Update for latest LV2 Atom Object simplifications.David Robillard1-2/+19
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5319 a436a847-0d15-0410-975c-d299462d15a1
2013-01-12Remove Raul::SharedPtr and switch to std::shared_ptr.David Robillard1-8/+8
Use project local short type aliases for shared_ptr and friends. Move Raul::Disposable and Raul::Manageable into Raul::Maid. Use sets to store machina nodes and edges to avoid O(n) searches. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4939 a436a847-0d15-0410-975c-d299462d15a1
2013-01-11Use type safe enumerations.David Robillard1-10/+10
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4918 a436a847-0d15-0410-975c-d299462d15a1
2012-12-23Use more sensible URI scheme for Ingen paths.David Robillard1-6/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4889 a436a847-0d15-0410-975c-d299462d15a1