diff options
Diffstat (limited to 'editor/project_manager.h')
-rw-r--r-- | editor/project_manager.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editor/project_manager.h b/editor/project_manager.h index 1c829e971d..d472666d1a 100644 --- a/editor/project_manager.h +++ b/editor/project_manager.h @@ -38,6 +38,7 @@ class CheckBox; class EditorAbout; class EditorAssetLibrary; class EditorFileDialog; +class EditorTitleBar; class HFlowContainer; class LineEdit; class LinkButton; @@ -71,12 +72,17 @@ class ProjectManager : public Control { void _update_size_limits(); void _update_theme(bool p_skip_creation = false); + void _titlebar_resized(); MarginContainer *root_container = nullptr; Panel *background_panel = nullptr; VBoxContainer *main_vbox = nullptr; - HBoxContainer *title_bar = nullptr; + EditorTitleBar *title_bar = nullptr; + Control *left_menu_spacer = nullptr; + Control *left_spacer = nullptr; + Control *right_menu_spacer = nullptr; + Control *right_spacer = nullptr; Button *title_bar_logo = nullptr; HBoxContainer *main_view_toggles = nullptr; Button *quick_settings_button = nullptr; |