summaryrefslogtreecommitdiffstats
path: root/editor/plugins/theme_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-0/+4
|\
| * Merge pull request #97884 from passivestar/list-variationsThaddeus Crews2024-11-271-0/+2
| |\ | | | | | | | | | Add theme type variations for secondary Trees and ItemLists
| | * Add theme type variations for secondary Trees and ItemListspassivestar2024-11-191-0/+2
| | |
| * | Untangle ColorPicker includeskobewi2024-11-221-0/+2
| |/
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-44/+44
|\|
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-44/+44
| |
* | 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>
* Fix closing Theme Editor not actually closing itkobewi2024-09-271-66/+12
|
* Use InputMap actions consistently across all LineEdit's that filter an ↵Marius Hanl2024-08-311-13/+7
| | | | | | | | | underlying Tree or ItemList. - Instead of checking for Key::UP, Key::DOWN, Key::PAGEUP, Key::PAGEDOWN etc., we rather check for the action like 'ui_up' or 'ui_down'. - Also use AcceptDialog's 'register_text_enter' functionality to consistently close a dialog when ENTER is pressed while the LineEdit has focus (instead of redirecting ENTER keys to e.g. the underlying Tree). - Unify the LineEdit filter behavior for the SceneTreeDialog and corresponding usages - Improve OK Button disablement (something should be selected)
* Make ThemeTypeDialog List navigatable when the LineEdit selectedMarius Hanl2024-08-281-0/+19
| | | | | This behavior is the same as in the CreateDialog. The arrow keys or page up/page down navigate the List while the LineEdit has focus.
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-6/+6
|
* [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-3/+3
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-3/+3
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-2/+2
|
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-1/+1
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-37/+37
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-8/+8
|
* Fallback to default theme for variation itemskobewi2024-05-101-3/+19
|
* [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-2/+2
|
* Editor: Display deprecated/experimental messages in tooltipsDanil Alexeev2024-04-181-3/+5
|
* Fix unexpected auto translation of Tree contentHaoyu Qiu2024-03-181-0/+3
|
* Add editor shortcuts to toggle bottom panel visibilityHugo Locurcio2024-03-051-1/+2
| | | | | | | | Default shortcuts use the first or second letter of each word. This also adds a new shortcut to toggle the last opened bottom panel. On editor startup, this defaults to the first panel in the list (which is the Output panel).
* Extract BottomPanel from EditorNodekit2024-02-201-3/+4
|
* Make auto translation inheritableMichael Alexsander2024-02-151-2/+2
|
* Fetch theme editor items from ThemeDBkobewi2024-01-311-10/+15
|
* Split theme generation logic into several subroutinesYuri Sizov2024-01-161-3/+2
| | | | | | | | | | | | | | | | | | | | This change introduces a new theme configuration struct to be passed to the aforementioned routines to better control reuse of styles and definitions in the generator. Everything not passed and not explicitly shared is scoped so it is not automatically accessible throughout the routine. This should ensure that the decision to share styles is a conscious one. In the future we will try to reduce the number of unique definitions and share most of it. This PR is a stepping stone on this path. This also puts the effort into separating redefinitions of default theme items vs custom types introduced only by the editor. In a few cases where editor-specific definitions need to reference default definitions we simply fetch them from the theme. It's not ideal and hides the dependency a bit, but hopefully these cases will be abstracted properly in due time.
* Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* Add const lvalue ref to container parametersMuller-Castro2024-01-051-1/+1
|
* Merge pull request #83577 from DennisManaa/fix-translation-for-item-listRémi Verschelde2024-01-041-0/+1
|\ | | | | | | Add automatic translation of items to ItemList
| * Implement automatic translation for ItemListDennisManaa2023-10-231-0/+1
| |
* | Disable Add button when theme item name is emptykobewi2023-12-111-0/+9
|/
* Don't auto translate theme type listHaoyu Qiu2023-10-121-0/+1
|
* Merge pull request #81523 from KoBeWi/epic_self_roastRémi Verschelde2023-10-061-12/+90
|\ | | | | | | Allow contextual plugins to persist temporarily
| * Allow contextual plugins to persist temporarilykobewi2023-10-061-12/+90
| |
* | Show doc tooltips when hovering properties in the theme editorMichael Alexsander2023-10-041-3/+9
|/
* Fix leak when closing theme editor preview tabsYuri Sizov2023-09-271-0/+2
|
* Add white Font and Mesh iconsMewPurPur2023-09-251-5/+5
|
* Fix accessing editor theme items throughout the UIYuri Sizov2023-09-151-1/+1
| | | | This also exposes `EditorInterface::get_editor_theme`.
* Add theme contexts to various parts of the editorYuri Sizov2023-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | 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.
* Add EditorStringNames singletonkobewi2023-09-031-104/+105
|
* Use ui_text_submit to confirm and close text promptsjsjtxietian2023-09-011-1/+1
| | | | | Fix press space when enter editor layout name will confirm and save layout, same in theme editor
* Unify and streamline connecting to Resource changeskobewi2023-07-171-8/+8
|
* Use defined key mapping for closing popups and dialogsArman Elgudzhyan2023-05-201-13/+7
| | | | As opposed to hardcoding the escape key. Also removed such hardcoding in a few other places as well as a hardcoded enter key in one of the affected input fields.
* Improve includes of EditorNode (and everything else)Yuri Sizov2023-04-071-1/+8
| | | | | | Also start organizing editor-specific GUI components into a dedicated folder, `editor/gui`. Also move `editor_file_server` next to the rest of debugger classes.
* Add missing handler for removing font sizes in ThemesYuri Sizov2023-03-071-0/+4
|
* Theme Editor: fix leading styleboxes / main stylesrsjtdrjgfuzkfg2023-02-161-1/+6
| | | | | | | | | | | | | | | Recent changes in Godot cause the theme editor to become hidden when editing a child resource. This causes a crash when editing style box resources marked as "main styles" (= leading styleboxes in the code), as they try to reference the currently edited theme. This commit works around the issue by permitting the Theme Editor to keep a reference to the most recently edited Theme. Furthermore, it adds an assertion to avoid a similar crash in the future. Long-term, the workaround should probably be removed when the theme editor is fixed to remain visible while editing child resources, but I'd keep the assertion.
* Avoid cleaning up editor plugins when property list changesYuri Sizov2023-02-111-70/+1
| | | | | Also removes a usability hack from the Theme editor, as it doesn't work anymore, and it confuses the Inspector.
* Fix handling of nulls in some editorskobewi2023-01-231-3/+7
|
* Add EditorUndoRedoManager singletonkobewi2023-01-161-24/+24
|