summaryrefslogtreecommitdiff
path: root/editor/editor_themes.cpp
diff options
context:
space:
mode:
authorvolzhs <volzhs@gmail.com>2017-05-03 06:02:06 +0900
committervolzhs <volzhs@gmail.com>2017-05-03 06:19:15 +0900
commit17e8e343fb900c3b308b3a6cb8611a16b476e71e (patch)
tree55c64ec319ab91f9ba8468c7f4c65d92044ef385 /editor/editor_themes.cpp
parent5a6ccce97d350011b599e793cea95aa4e7899395 (diff)
Revert "Add new editor and default theme (WIP)"
This reverts commit f045efe007cffb87238ee519b7f33d710814ded7.
Diffstat (limited to 'editor/editor_themes.cpp')
-rw-r--r--editor/editor_themes.cpp84
1 files changed, 5 insertions, 79 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp
index 1457f6b421..3b5dbf7fc7 100644
--- a/editor/editor_themes.cpp
+++ b/editor/editor_themes.cpp
@@ -49,85 +49,11 @@ Ref<Theme> create_editor_theme() {
}
focus_sbt->set_draw_center(false);
theme->set_stylebox("EditorFocus", "EditorStyles", focus_sbt);
-
- Ref<StyleBoxFlat> style_panel(memnew(StyleBoxFlat));
- style_panel->set_bg_color(Color::html("#36424e"));
- style_panel->set_default_margin(MARGIN_LEFT, 1);
- style_panel->set_default_margin(MARGIN_RIGHT, 1);
- style_panel->set_default_margin(MARGIN_BOTTOM, 1);
- style_panel->set_default_margin(MARGIN_TOP, 4 * EDSCALE);
- theme->set_stylebox("panel", "TabContainer", style_panel);
- theme->set_stylebox("EditorPanel", "EditorStyles", style_panel);
-
- Ref<StyleBoxFlat> style_bg(memnew(StyleBoxFlat));
- style_bg->set_bg_color(Color::html("#2b353f"));
- style_bg->set_default_margin(MARGIN_LEFT, 0);
- style_bg->set_default_margin(MARGIN_RIGHT, 0);
- style_bg->set_default_margin(MARGIN_BOTTOM, 0);
- style_bg->set_default_margin(MARGIN_TOP, 0);
- theme->set_stylebox("bg", "Tree", style_bg);
- theme->set_stylebox("bg", "ItemList", style_bg);
- theme->set_stylebox("EditorBG", "EditorStyles", style_bg);
-
- Ref<StyleBox> style_tree_btn = theme->get_stylebox("button_pressed", "Tree");
- style_tree_btn->set_default_margin(MARGIN_LEFT, 3 * EDSCALE);
- style_tree_btn->set_default_margin(MARGIN_RIGHT, 3 * EDSCALE);
- theme->set_stylebox("button_pressed", "Tree", style_tree_btn);
-
- Ref<StyleBoxFlat> style_tab(memnew(StyleBoxFlat));
- style_tab->set_default_margin(MARGIN_LEFT, 15 * EDSCALE);
- style_tab->set_default_margin(MARGIN_RIGHT, 15 * EDSCALE);
- style_tab->set_default_margin(MARGIN_BOTTOM, 5 * EDSCALE);
- style_tab->set_default_margin(MARGIN_TOP, 5 * EDSCALE);
-
- Ref<StyleBoxFlat> style_tab_fg = style_tab->duplicate();
- style_tab_fg->set_bg_color(Color::html("#36424e"));
-
- Ref<StyleBoxFlat> style_tab_bg = style_tab->duplicate();
- style_tab_bg->set_draw_center(false);
-
- theme->set_stylebox("tab_fg", "TabContainer", style_tab_fg);
- theme->set_stylebox("tab_bg", "TabContainer", style_tab_bg);
- theme->set_stylebox("tab_fg", "Tabs", style_tab_fg);
- theme->set_stylebox("tab_bg", "Tabs", style_tab_bg);
-
- Ref<StyleBoxFlat> style_panel_debugger(memnew(StyleBoxFlat));
- style_panel_debugger->set_bg_color(Color::html("#3e4c5a"));
- style_panel_debugger->set_default_margin(MARGIN_LEFT, 0);
- style_panel_debugger->set_default_margin(MARGIN_RIGHT, 0);
- style_panel_debugger->set_default_margin(MARGIN_BOTTOM, 0);
- style_panel_debugger->set_default_margin(MARGIN_TOP, 4 * EDSCALE);
- theme->set_stylebox("EditorPanelDebugger", "EditorStyles", style_panel_debugger);
-
- Ref<StyleBoxFlat> style_tab_fg_debugger = style_tab->duplicate();
- style_tab_fg_debugger->set_bg_color(Color::html("#3e4c5a"));
- style_tab_fg_debugger->set_default_margin(MARGIN_LEFT, 10 * EDSCALE);
- style_tab_fg_debugger->set_default_margin(MARGIN_RIGHT, 10 * EDSCALE);
- Ref<StyleBoxFlat> style_tab_bg_debugger = style_tab->duplicate();
- style_tab_bg_debugger->set_draw_center(false);
- style_tab_bg_debugger->set_default_margin(MARGIN_LEFT, 10 * EDSCALE);
- style_tab_bg_debugger->set_default_margin(MARGIN_RIGHT, 10 * EDSCALE);
-
- theme->set_stylebox("EditorTabFGDebugger", "EditorStyles", style_tab_fg_debugger);
- theme->set_stylebox("EditorTabBGDebugger", "EditorStyles", style_tab_bg_debugger);
-
- Ref<StyleBoxFlat> style_textedit_normal(memnew(StyleBoxFlat));
- style_textedit_normal->set_bg_color(Color::html("#29343d"));
- style_textedit_normal->set_default_margin(MARGIN_LEFT, 0);
- style_textedit_normal->set_default_margin(MARGIN_RIGHT, 0);
- style_textedit_normal->set_default_margin(MARGIN_BOTTOM, 0);
- style_textedit_normal->set_default_margin(MARGIN_TOP, 0);
- theme->set_stylebox("normal", "TextEdit", style_textedit_normal);
-
- theme->set_constant("separation", "HSplitContainer", 8 * EDSCALE);
- theme->set_constant("separation", "VSplitContainer", 8 * EDSCALE);
- theme->set_constant("side_margin", "TabContainer", 0);
-
- // theme->set_color("prop_category","Editor",Color::hex(0x3f3a44ff));
- // theme->set_color("prop_section","Editor",Color::hex(0x35313aff));
- // theme->set_color("prop_subsection","Editor",Color::hex(0x312e37ff));
- // theme->set_color("fg_selected","Editor",Color::html("ffbd8e8e"));
- // theme->set_color("fg_error","Editor",Color::html("ffbd8e8e"));
+ theme->set_color("prop_category", "Editor", Color::hex(0x3f3a44ff));
+ theme->set_color("prop_section", "Editor", Color::hex(0x35313aff));
+ theme->set_color("prop_subsection", "Editor", Color::hex(0x312e37ff));
+ theme->set_color("fg_selected", "Editor", Color::html("ffbd8e8e"));
+ theme->set_color("fg_error", "Editor", Color::html("ffbd8e8e"));
return theme;
}