summaryrefslogtreecommitdiffstats
path: root/editor/plugins/theme_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* 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".
* Use forward-declarations in big editor classestrollodel2022-11-291-0/+2
|
* Rename queue_delete => queue_freeMarc Gilleron2022-10-241-6/+6
| | | | | # Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp
* Fix various -Wmaybe-uninitialized warnings from GCC 12.2.1Rémi Verschelde2022-09-221-16/+16
| | | | | | Not sure why I didn't get those before, it may be due to upstream changes (12.2.1 is a moving target, it's basically 12.3-dev), or simply rebuilding Godot from scratch with different options.
* Make `Vector2i` values paired with `EDSCALE` be just `Vector2`Michael Alexsander2022-09-081-1/+1
|
* Merge pull request #64119 from YuriSizov/theme-init-databaseRémi Verschelde2022-08-291-30/+31
|\
| * Add ThemeDB, expose previously static Theme methodsYuri Sizov2022-08-261-30/+31
| |
* | Revert "Remove NOTIFICATION_ENTER_TREE when paired with ↵Rémi Verschelde2022-08-291-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTIFICATION_THEME_CHANGED" This reverts commit 4b817a565cab8af648c88cfc7ab6481e86ee3625. Fixes #64988. Fixes #64997. This caused several regressions (#64988, #64997, https://github.com/godotengine/godot/issues/64997#issuecomment-1229970605) which point at a flaw in the current logic: - `Control::NOTIFICATION_ENTER_TREE` triggers a *deferred* notification with `NOTIFCATION_THEME_CHANGED` as introduced in #62845. - Some classes use their `THEME_CHANGED` to cache theme items in member variables (e.g. `style_normal`, etc.), and use those member variables in `ENTER_TREE`, `READY`, `DRAW`, etc. Since the `THEME_CHANGE` notification is now deferred, they end up accessing invalid state and this can lead to not applying theme properly (e.g. for EditorHelp) or crashing (e.g. for EditorLog or CodeEdit). So we need to go back to the drawing board and see if `THEME_CHANGED` can be called earlier so that the previous logic still works? Or can we refactor all engine code to make sure that: - `ENTER_TREE` and similar do not depend on theme properties cached in member variables. - Or `THEME_CHANGE` does trigger a general UI update to make sure that any bad theme handling in `ENTER_TREE` and co. gets fixed when `THEME_CHANGE` does arrive for the first time. But that means having a temporary invalid (and possibly still crashing) state, and doing some computations twice which might be heavy (e.g. `EditorHelp::_update_doc()`).
* | Merge pull request #64885 from Mickeon/rename-tooltip-hintRémi Verschelde2022-08-281-30/+30
|\ \ | | | | | | Rename `hint_tooltip` to `tooltip_text` & setter getter
| * | Rename `hint_tooltip` to `tooltip_text` & setgetMicky2022-08-271-30/+30
| |/ | | | | | | | | | | | | | | `hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
* / Remove NOTIFICATION_ENTER_TREE when paired with NOTIFICATION_THEME_CHANGEDAaron Record2022-08-271-7/+4
|/
* Add per-scene UndoRedokobewi2022-08-221-24/+25
|
* Add text overrun behavior for the theme type selectorYuri Sizov2022-08-041-0/+1
|
* Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-0/+1
| | | | up editor includes
* Remove Signal connect bindsJuan Linietsky2022-07-291-33/+33
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Color Pickers Respect SettingsGuh-Feng2022-07-211-0/+1
| | | | Updated editor_node with function that sets up color pickers throughout Godot to respect editor's settings.
* Merge pull request #61347 from fire-forge/theme-iconsRémi Verschelde2022-07-201-8/+27
|\ | | | | Add type icons to Theme editor Import Items tab
| * Use type icons in Theme editor import tabFireForge2022-05-261-8/+27
| | | | | | | | | | - Use + icon for "Add" button - Replace "One" with "1" in data type counts
* | Rename Control PRESET_WIDE to PRESET_FULL_RECTFireForge2022-07-181-1/+1
| |
* | Merge pull request #62827 from fire-forge/ok-cancelRémi Verschelde2022-07-131-3/+3
|\ \ | | | | | | Add `ok_button_text` to AcceptDialog and `cancel_button_text` to ConfirmationDialog
| * | Add ok_button_text to AcceptDialog and cancel_button_text to ConfirmationDialogFireForge2022-07-091-3/+3
| | |
* | | Seperate filter and description in FileDialog.add_filter()FireForge2022-07-091-2/+2
|/ /
* | Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-5/+1
| |
* | Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg2022-06-161-3/+3
| | | | | | | | TextServer.
* | Merge pull request #61455 from fire-forge/tabRémi Verschelde2022-05-311-7/+3
|\ \ | | | | | | Add color contrast to TabContainer backgrounds in the editor
| * | Use "odd" style for TabContainers on base BG colorFireForge2022-05-261-7/+3
| |/ | | | | | | - Use the "odd" style for TabContainers that are on a background with the same color as the default TabContainer background color to add contrast
* / Use consistent casing in editor filter/search barsFireForge2022-05-281-7/+4
|/
* Add the button pressed to some signals in Treetrollodel2022-05-211-4/+12
|
* Fix crash when editing pinned StyleBoxHaoyu Qiu2022-05-161-2/+4
|
* Add a new HashMap implementationreduz2022-05-121-55/+55
| | | | | | | | | | | | | | | | | Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<>
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-10/+10
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Make `TabBar/Container` default their alignments to the left instead of centerMichael Alexsander2022-03-171-2/+2
|
* Make name of editor file dialog filters translatableHaoyu Qiu2022-03-051-2/+2
|
* Make `TabContainer` use `TabBar` internallyMichael Alexsander2022-03-031-1/+1
|
* Remove most EditorNode constructor parameters and fieldstrollodel2022-02-141-5/+4
|
* Merge pull request #57641 from Geometror/compilation-time-improvements-1Rémi Verschelde2022-02-121-0/+2
|\
| * Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-0/+2
| |
* | Add an explicit way to remove a theme typeYuri Sizov2022-02-111-22/+64
|/
* Revert "Add missing SNAME macro optimization to all theme methods call"Rémi Verschelde2022-02-081-10/+10
| | | | | | | | This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters.
* Add missing SNAME macro optimization to all theme methods calljmb4622022-02-061-10/+10
|
* Remove get_focus_owner() from Control, replaced by ↵Gilles Roudière2022-02-031-1/+1
| | | | get_viewport()->gui_get_focus_owner()
* Bring `TabBar` to full parity with the `TabContainer` implementation.Michael Alexsander2022-01-311-2/+2
|
* Rename String::is_subsequence_ofi to String::is_subsequence_ofnWilson E. Alvarez2022-01-261-1/+1
|
* Addded methods to propagate checks & refactored classes to use new methods.Kevin Fischer2022-01-181-56/+19
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add undo/redo capabilities to the theme editorMichael Alexsander2021-12-301-120/+400
|
* Improve user communication in the Add Item Type dialogYuri Sizov2021-12-141-7/+30
|
* align to horizontal_alignment, valign to vertical_alignment, relatedNathan Franke2021-12-091-7/+7
|
* ScrollContainer's scrollbar visibility is now enumkobewi2021-12-071-3/+3
|
* Disable base type changing when no type is selected in the theme editorMichael Alexsander2021-12-031-2/+2
|