aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_qt.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-05-02Remove old-style casts in C++David Robillard1-4/+6
2023-05-02Fix code formattingDavid Robillard1-2/+2
2023-02-03Suppress/fix new warnings in clang-tidy 15David Robillard1-10/+10
2022-08-17Use default member initializersDavid Robillard1-5/+0
2022-08-17Use C++14David Robillard1-4/+4
2022-08-17Move Port definition to its own headerDavid Robillard1-0/+1
2022-08-17Separate options.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Move JalvURIDs and JalvNodes to their own headersDavid Robillard1-0/+1
2022-08-17Clean up includesDavid Robillard1-2/+0
2022-08-17Clearly separate frontends from common internalsDavid Robillard1-10/+10
2022-08-17Separate ui.h from jalv_internal.hDavid Robillard1-0/+1
2022-08-17Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
2022-05-30Build Qt moc output as a separate objectDavid Robillard1-60/+1
This avoids the weird cyclic dependency, and avoids including generated code in the source which can trigger many compiler and clang-tidy warnings.
2022-05-27Add Gtk plugin selector UIAlexandros Theodotou1-0/+6
2022-05-27Use consistent comment stylesDavid Robillard1-1/+1
2022-05-27Format all code with clang-formatDavid Robillard1-478/+469
2022-05-27Use "auto" to avoid repeating type namesDavid Robillard1-15/+16
2022-05-27Use braced init listsDavid Robillard1-5/+2
2022-05-27Avoid "typedef" in C++David Robillard1-2/+2
2022-05-27Avoid "else" after "return"David Robillard1-14/+20
2021-02-15Pass ui:scaleFactor option to UIsAlexandros Theodotou1-0/+6
This option was added in LV2 1.18.0.
2021-02-15Remove Qt4 supportDavid Robillard1-45/+29
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-14Explicitly delete unused special member functionsDavid Robillard1-0/+6
2020-12-14Make member variable privateDavid Robillard1-2/+1
2020-12-14Add missing member initializationDavid Robillard1-5/+10
2020-12-14Don't use C casts in C++ codeDavid Robillard1-5/+7
2020-12-14Don't declare default argumentsDavid Robillard1-11/+15
2020-12-14Use explicit constructorsDavid Robillard1-6/+6
2020-12-14Fix unused parameter warningsDavid Robillard1-6/+6
2020-12-14Use the appropriate math functions for the operand precisionDavid Robillard1-2/+2
2020-12-14Initialize all variablesDavid Robillard1-10/+13
2020-12-14Clean up includesDavid Robillard1-2/+2
2020-09-27Clean up includesDavid Robillard1-5/+22
2020-07-21Fix use of deprecated Qt APIDavid Robillard1-1/+1
2020-07-21Add missing override specifiersDavid Robillard1-12/+12
2020-07-21Use modern casts in C++David Robillard1-2/+2
2020-07-21Use nullptr in C++David Robillard1-8/+8
2020-05-09Always call jalv_init_ui()David Robillard1-0/+2
2019-11-10Remove debug noiseDavid Robillard1-1/+0
2019-11-10Support rdfs:label for port groupsDavid Robillard1-0/+6
2019-11-03Use screen refresh rate with Gtk3 and Qt5David Robillard1-0/+11
2019-10-17Avoid deprecated QFontMetrics::widthDavid Robillard1-2/+13
2019-10-17Replace use of deprecated qSortDavid Robillard1-1/+1
2019-10-17Clean up includesDavid Robillard1-4/+4
2019-04-21Use modern LV2 includesDavid Robillard1-2/+2
2018-12-27Remove unused jalv_ui_resize()David Robillard1-12/+0
This function was added many years ago to support the UI resize feature, but has been dead code for a long time and nobody seems to have noticed, so it can't be that important.
2018-11-10Free LilvNodes when no longer requiredTimo Wischer1-0/+3
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
2018-11-10Move exit semaphore to Jalv structDavid Robillard1-1/+1
2018-09-24Fix unused parameter warningsTimo Wischer1-2/+2
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>