summaryrefslogtreecommitdiffstats
path: root/scene/theme/theme_db.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Improve Editor Inspector/Theme item lookup performanceaaronp642024-08-201-12/+12
| | | | | | | | | | | Changes to reduce the latency between changing node selection in the editor and seeing the new node reflected in the Inspector tab - Use Vector instead of List for ThemeOwner::get_theme_type_dependencies and related functions - Use Vector instead of List for ThemeContext::themes, set_themes(), and get_themes() - Add ClassDB:get_inheritance_chain_nocheck to get all parent/ancestor classes at once, to avoid repeated ClassDB locking overhead - Update BIND_THEME_ITEM macros and ThemeDB::update_class_instance_items to use provided StringNames for call to ThemeItemSetter, instead of creating a new StringName in each call These changes reduce the time taken by EditorInspector::update_tree by around 30-35%
* Use Core/Scene stringnames consistentlykobewi2024-05-131-3/+3
|
* Fetch theme editor items from ThemeDBkobewi2024-01-311-1/+4
|
* Merge pull request #84760 from KoBeWi/ultimate_get_property_list_reloadedRémi Verschelde2024-01-291-8/+22
|\ | | | | | | Fetch override list from ThemeDB
| * Fetch override list from ThemeDBkobewi2024-01-291-8/+22
| |
* | Mark 'gui/theme/custom' and 'gui/theme/custom_font' as basic propertiesMarius Hanl2023-12-021-2/+2
|/
* Use bound theme properties for documentationYuri Sizov2023-09-261-3/+31
|
* [Scene,Main] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-121-1/+1
|
* Register theme properties with ThemeDBYuri Sizov2023-09-111-0/+44
|
* Add theme contexts to various parts of the editorYuri Sizov2023-09-061-0/+18
| | | | | | | | | | | | | | | | | | | | This change defines additional theme contexts for editor branches to prevent theme leaking between the default theme, the project theme, and the editor theme. - Both editor window and EditorNode define an editor-specific context with the editor theme and the default theme. - The 2D viewport defines a project-specific context with the project theme and the default theme. - Theme editor preview tabs define the default-only context with the default theme. Additionally, the default theme context now only includes the project theme for running projects (both export and debug). This prevents the project theme from leaking into the editor. This commit also does a little clean up on the theming aspects of the EditorNode.
* Introduce the concept of global theme contextsYuri Sizov2023-09-061-27/+191
| | | | | | | | | | | | | | | | | This commit adds the default theme context, which replaces the need to manually check the project and the default theme all the time; simplifies related code. It also adds framework for custom theme contexts, to be used by the editor. Custom contexts can be attached to any node, and not necessarily a GUI/Window node. Contexts do no break theme inheritance and only define which global themes a node uses as a fallback. Contexts propagate NOTIFICATION_THEME_CHANGED when one of their global themes changes. This ensures that global themes act just like themes assigned to individual nodes and can be previewed live in the editor.
* Fix ThemeDB initialization in testsYuri Sizov2023-09-041-0/+12
| | | | Also fixes class name shadowing in Viewport/Window tests.
* Move default theme files to scene/themeYuri Sizov2023-08-281-1/+1
| | | | This also puts the default theme icons into their own folder.
* Merge pull request #68429 from KoBeWi/PropertySettingsRémi Verschelde2023-01-061-14/+7
|\ | | | | Add PropertyInfo overload for GLOBAL_DEF
| * Add PropertyInfo overload for GLOBAL_DEFkobewi2022-12-111-14/+7
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* | Add fallback values for font and scale to the default themeYuri Sizov2022-12-211-4/+3
|/
* Merge pull request #65641 from voylin/Adding_ttf_otf_to_custom_font_dialogueRémi Verschelde2022-11-291-1/+1
|\ | | | | | | Adding .tff .otf, .woff and .woff2 to custom font extensions - Fixes #65633
| * Adding tff, otf, woff(2) to custom font extensionsVoylin2022-09-141-1/+1
| | | | | | | | | | | | | | | | This pull request is to fix #65633 When trying to add a custom font, my '.ttf' and '.otf' fonts were not visible unless I selected 'All files'. By adding these to the custom property info makes it more convenient to select a different font, without doing the extra clicks to select 'All Files'. Not a big change, but something I wanted to fix as it seems appropriate to do so.
* | Hide Antialiasing import option on DynamicFonts with MSDF enabledHugo Locurcio2022-11-031-2/+2
|/ | | | | | | | Antialiasing cannot be adjusted on fonts rendered with MSDF. Internally, Godot always uses grayscale antialiasing for those fonts. This also tweaks property hints for consistency, and renames uses of "sub-pixel" to the more commonly used "subpixel".
* Add ThemeDB, expose previously static Theme methodsYuri Sizov2022-08-261-0/+237