summaryrefslogtreecommitdiffstats
path: root/src/gui/PropertiesWindow.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Clean up includes and forward declarationsDavid Robillard1-0/+1
2023-09-22Avoid potential null dereferencesDavid Robillard1-3/+6
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard1-9/+9
2022-09-27Use braced init lists to avoid repeating return typesDavid Robillard1-1/+1
2022-08-18Fix include orderDavid Robillard1-1/+2
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-10/+25
2022-08-18Use default member initializationDavid Robillard1-1/+0
2022-08-18Use auto when declaring iteratorsDavid Robillard1-3/+4
2020-12-15Clean up includes in guiDavid Robillard1-3/+31
2020-12-14Fix unnecessary parameter copying overheadDavid Robillard1-2/+2
2020-12-14Use "auto" to avoid redundancyDavid Robillard1-9/+11
2020-12-14Avoid "using namespace"David Robillard1-1/+1
2020-08-02Remove std::shared_ptr aliasDavid Robillard1-2/+3
2020-08-02Fix double-promotion warningsDavid Robillard1-2/+2
2019-12-08Cleanup: Use "using" instead of "typedef" where appropriateDavid Robillard1-1/+1
2019-03-09Clean up includes and forward declarationsDavid Robillard1-10/+13
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard1-3/+3
2019-03-08Pass World everywhere by referenceDavid Robillard1-21/+20
2018-09-23Use lowercase namespace namesDavid Robillard1-19/+19
2018-01-21Add URI class and remove use of Raul::URIDavid Robillard1-24/+26
2018-01-21Replace insert(make_pair(...)) with emplaceDavid Robillard1-7/+6
2017-12-25Use auto for iteratorsDavid Robillard1-2/+2
2017-12-25Remove superfluous using namespace declarationsDavid Robillard1-2/+0
2017-12-25Use nullptrDavid Robillard1-3/+3
2017-02-15Move Properties out of ResourceDavid Robillard1-4/+4
2016-09-11Use URIDs for prototypesDavid Robillard1-8/+4
2015-10-26Use URIDs almost everywhereDavid Robillard1-13/+8
This fixes some issues where types are lost after saving and re-loading many times. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5788 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-04-01Support adding datatype properties.David Robillard1-28/+87
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5649 a436a847-0d15-0410-975c-d299462d15a1
2015-03-28Unify value widgets in properties dialog.David Robillard1-278/+207
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-28Improve properties window.David Robillard1-44/+158
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5646 a436a847-0d15-0410-975c-d299462d15a1
2015-02-07Fix crash when properties window object goes away.David Robillard1-0/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5537 a436a847-0d15-0410-975c-d299462d15a1
2014-08-09Fix initial size of properties window.David Robillard1-7/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5447 a436a847-0d15-0410-975c-d299462d15a1
2014-01-24Fix various whitespace and formatting issues.David Robillard1-20/+20
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5325 a436a847-0d15-0410-975c-d299462d15a1
2013-11-01Remove unused typedefs.David Robillard1-1/+0
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5167 a436a847-0d15-0410-975c-d299462d15a1
2013-06-09Fix zero minimum for float property values (#895).David Robillard1-2/+10
Fix odd crash bug introduced in r5138. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5140 a436a847-0d15-0410-975c-d299462d15a1
2013-06-09Support removing properties from the properties dialog.David Robillard1-7/+30
You can definitely blow your leg off with this one, clever ontology awareness (e.g. required properties) would be good... git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5138 a436a847-0d15-0410-975c-d299462d15a1
2013-02-23Remove Raul::fmt wrapper, the last vestige of boost dependency for Raul.David Robillard1-3/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5077 a436a847-0d15-0410-975c-d299462d15a1
2013-02-23Move Atom implementation out of Raul so it can depend on LV2.David Robillard1-8/+8
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5076 a436a847-0d15-0410-975c-d299462d15a1
2013-02-02More generic Atom class.David Robillard1-6/+6
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5024 a436a847-0d15-0410-975c-d299462d15a1
2013-02-02Add option to enable/disable canvas animation (fix/avoid #879).David Robillard1-1/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5016 a436a847-0d15-0410-975c-d299462d15a1
2013-01-12Remove Raul::SharedPtr and switch to std::shared_ptr.David Robillard1-2/+2
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-12Lint.David Robillard1-1/+1
Fix test suite compilation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4937 a436a847-0d15-0410-975c-d299462d15a1
2013-01-11Use range-based for loops where possible.David Robillard1-18/+18
Mmm, shiny. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4919 a436a847-0d15-0410-975c-d299462d15a1
2013-01-11C++11-safe conversions.David Robillard1-1/+2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4914 a436a847-0d15-0410-975c-d299462d15a1
2013-01-08Add support for URID ports.David Robillard1-163/+36
Fix glib errors when resetting properties dialog. Move RDFS domain/range/classes/etc code to reusable location. Add preliminary "mesp" (message processing) plugin package. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4903 a436a847-0d15-0410-975c-d299462d15a1
2012-12-22More sophisticated domain and range handling for properties dialog.David Robillard1-51/+98
Now any classes in the super/sub class closure of the domain/range will be shown. In particular, this makes lv2:designation show up with the expected value. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4886 a436a847-0d15-0410-975c-d299462d15a1
2012-12-21Show properties with no domain in add selector of properties dialog.David Robillard1-2/+3
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4885 a436a847-0d15-0410-975c-d299462d15a1
2012-12-21Provide access to properties window for Graphs from canvas menu.David Robillard1-0/+4
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4884 a436a847-0d15-0410-975c-d299462d15a1
2012-12-21Strip trailing whitespace.David Robillard1-1/+1
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4883 a436a847-0d15-0410-975c-d299462d15a1