Mike-Solar
|
bb40b4923e
|
style: unify identifier naming per updated conventions
Automated with clang-tidy readability-identifier-naming (config added to
.clang-tidy) plus scripted passes, per the updated rules now documented
in CONTRIBUTING.md:
- types (class/struct/enum/alias/template params): PascalCase
- functions, variables, members: snake_case (incl. rational -> Rational)
- private/protected members: trailing underscore; static member
variables likewise (instance_, available_themes_)
- constants and enum values: snake_case (kLinear -> k_linear,
F32P -> f32p); ALL_CAPS reserved for macros
- macros: OAK_ prefix (OLIVE_ADD_TEST/OLIVE_ASSERT/OLIVE_CONFIG ->
OAK_ADD_TEST/OAK_ASSERT/OAK_CONFIG, GL_PREAMBLE -> OAK_GL_PREAMBLE,
include guards -> OAK_*)
- file names: all lowercase (Current/Plugin/OliveHost/OliveClip/
OlivePluginInstance -> current/plugin/olivehost/oliveclip/
oliveplugininstance)
- getters share the member name sans underscore, setters set_foo()
- Qt and third-party (OpenFX) virtual overrides and framework callbacks
keep their original names (exempt in .clang-tidy)
Manual follow-ups required where automation could not reach:
- string-based QMetaObject/SIGNAL/SLOT references updated to renamed
methods (AddTask, CreatedFile, DeleteSpecificFile, moveSelectionUp, ...)
- macro bodies referencing renamed methods (OLIVE_CONFIG,
NODE_DEFAULT_DESTRUCTOR, MANAGEDDISPLAYWIDGET_*)
- self-shadowing locals renamed where signals/methods became same-named
(size_changed, worker_count, selected_items, import param, filters)
- third_party OFX member/namespace usages restored (OFX::Host::*,
_created, _clipPrefsDirty, createInstance, clearPersistentMessage)
- STL protocol aliases restored (const_iterator) with .clang-tidy
ignore rules; qHash overloads restored
Full build and test suite pass: ctest 4/4, ~1960 gtest cases green.
|
2026-07-19 16:10:54 +08:00 |
|
Mike-Solar
|
e5eeaddf2f
|
format: reformatting files
|
2026-07-13 15:30:43 +08:00 |
|
Mike-Solar
|
bfb1b2fce4
|
update copyright back
|
2026-01-16 21:22:05 +08:00 |
|
Mike-Solar
|
b8669f6a11
|
Change project name;
|
2026-01-05 16:22:26 +08:00 |
|
Mike Solar
|
6fdfd03ffd
|
update: update copyright
|
2025-08-05 17:12:49 +08:00 |
|
Mike Solar
|
74f73ab3be
|
change: change code style to Linux style except indent.
|
2025-08-03 03:09:40 +08:00 |
|
itsmattkc
|
11e4e051c3
|
move undo files around for better organization
|
2023-02-20 16:09:22 -08:00 |
|
itsmattkc
|
71e8665fbf
|
move item setting to a node flag
|
2023-02-19 21:30:49 -08:00 |
|
itsmattkc
|
2c4347e9a6
|
node: merge various metadata functions into one
|
2023-02-19 21:16:05 -08:00 |
|
itsmattkc
|
b8ee27e1cb
|
node: removed dumb undoable param
|
2023-02-19 11:36:46 -08:00 |
|
itsmattkc
|
af76fbf0e1
|
folder: revise child exists to find child function
|
2022-12-08 11:25:31 -08:00 |
|
itsmattkc
|
15a67bc12a
|
project: auto-select imported files
|
2022-07-26 11:39:35 -07:00 |
|
itsmattkc
|
4b366a9b73
|
update copyright year to 2022
|
2022-05-10 10:38:56 -07:00 |
|
itsmattkc
|
d55d9c820f
|
code: use macros for default node functions
Easier to maintain
|
2022-05-04 11:01:17 -07:00 |
|
itsmattkc
|
93be94bc2c
|
more work
|
2021-11-16 23:58:34 -08:00 |
|
itsmattkc
|
b07bccb7dc
|
nodes: revert to single output
|
2021-09-07 22:01:36 -07:00 |
|
itsmattkc
|
3b9421f90e
|
multiundocommand: keep undo/redo under protected
Minor code improvement
|
2021-08-01 13:37:32 -07:00 |
|
itsmattkc
|
5254be3fb5
|
folder: make ListChildrenOfType recursive
Most functions assume this is recursive but it wasn't. Now it is.
|
2021-07-27 18:52:18 -07:00 |
|
itsmattkc
|
52c5617159
|
undo: wrapped redo/undo functions to ensure prepare is called
|
2021-07-17 00:14:24 -07:00 |
|
itsmattkc
|
f876240443
|
use nodes as context rather than void
|
2021-05-27 13:32:32 +10:00 |
|
itsmattkc
|
74a1507c6f
|
Merge branch 'master' into nodeview-redux
|
2021-05-23 10:49:11 +10:00 |
|
itsmattkc
|
09dc79f9f6
|
project: remove array element when deleting a folder's subitem
Fixes #1639
|
2021-05-23 10:38:30 +10:00 |
|
itsmattkc
|
8e9859b2b3
|
initial commit
|
2021-05-16 09:58:57 +10:00 |
|
itsmattkc
|
77d4b18a60
|
updated copyright year for 2021 [skip ci]
|
2021-04-17 18:56:50 +10:00 |
|
itsmattkc
|
cb75e37e77
|
moved several files around
Mostly moved classes that became node derivatives into the node/ folder.
|
2021-04-08 12:15:59 +10:00 |
|