From 1e2991681c565ac6ffeb365e7c6a97ecc4a9d0ad Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sat, 13 Sep 2025 13:22:34 +1000 Subject: [PATCH] new icons v1 --- .../Features/LeftSideBar/LeftSideBar.tscn | 16 ++++---- .../LeftSideBar/Resources/SidebarDebug.svg | 5 +++ .../Resources/SidebarDebug.svg.import | 37 +++++++++++++++++++ .../LeftSideBar/Resources/SidebarFolder.svg | 5 +++ .../Resources/SidebarFolder.svg.import | 37 +++++++++++++++++++ .../LeftSideBar/Resources/SidebarProblem.svg | 4 ++ .../Resources/SidebarProblem.svg.import | 37 +++++++++++++++++++ .../LeftSideBar/Resources/SidebarRun.svg | 5 +++ .../Resources/SidebarRun.svg.import | 37 +++++++++++++++++++ src/SharpIDE.Photino/Layout/MainLayout.razor | 9 +++-- 10 files changed, 180 insertions(+), 12 deletions(-) create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg create mode 100644 src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn b/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn index 47fc97c..e6c022f 100644 --- a/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn +++ b/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn @@ -1,12 +1,12 @@ [gd_scene load_steps=8 format=3 uid="uid://biyhfwx36ium8"] -[ext_resource type="Texture2D" uid="uid://bkty6563cthj8" path="res://Features/Run/Resources/Run.svg" id="1_6wc7d"] [ext_resource type="Script" uid="uid://bddno1bbvvp5q" path="res://Features/LeftSideBar/LeftSideBar.cs" id="1_rgaf0"] [ext_resource type="ButtonGroup" uid="uid://c2nmo2x3va0gi" path="res://Features/LeftSideBar/LeftBottomSidebarButtonGroup.tres" id="2_1aad6"] -[ext_resource type="Texture2D" uid="uid://xc8srvqwlwng" path="res://Features/SolutionExplorer/Resources/FolderIcon.svg" id="2_y0trk"] -[ext_resource type="Texture2D" uid="uid://c7cmou8hipsvc" path="res://Features/Run/Resources/Debug.svg" id="4_gyh3f"] -[ext_resource type="Texture2D" uid="uid://rvuk8jybyu6m" path="res://Features/Problems/Resources/Error.svg" id="4_jg03n"] +[ext_resource type="Texture2D" uid="uid://ccj0dw81x3bkc" path="res://Features/LeftSideBar/Resources/SidebarFolder.svg" id="2_jg03n"] +[ext_resource type="Texture2D" uid="uid://uukf1nwjhthv" path="res://Features/LeftSideBar/Resources/SidebarProblem.svg" id="4_prju6"] +[ext_resource type="Texture2D" uid="uid://cre7q0efp4vrq" path="res://Features/LeftSideBar/Resources/SidebarRun.svg" id="5_jg03n"] [ext_resource type="Texture2D" uid="uid://b0170ypw8uf3a" path="res://Features/LeftSideBar/Resources/Terminal.svg" id="6_ddh6f"] +[ext_resource type="Texture2D" uid="uid://butisxqww0boc" path="res://Features/LeftSideBar/Resources/SidebarDebug.svg" id="6_jg03n"] [node name="LeftSideBar" type="Panel"] custom_minimum_size = Vector2(80, 0) @@ -40,7 +40,7 @@ focus_mode = 0 theme_override_font_sizes/font_size = 13 toggle_mode = true text = "Explorer" -icon = ExtResource("2_y0trk") +icon = ExtResource("2_jg03n") icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true @@ -58,7 +58,7 @@ theme_override_font_sizes/font_size = 13 toggle_mode = true button_group = ExtResource("2_1aad6") text = "Problems" -icon = ExtResource("4_jg03n") +icon = ExtResource("4_prju6") icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true @@ -72,7 +72,7 @@ theme_override_font_sizes/font_size = 13 toggle_mode = true button_group = ExtResource("2_1aad6") text = "Run" -icon = ExtResource("1_6wc7d") +icon = ExtResource("5_jg03n") icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true @@ -86,7 +86,7 @@ theme_override_font_sizes/font_size = 13 toggle_mode = true button_group = ExtResource("2_1aad6") text = "Debug" -icon = ExtResource("4_gyh3f") +icon = ExtResource("6_jg03n") icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg new file mode 100644 index 0000000..eabc2f8 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import new file mode 100644 index 0000000..bd958e2 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://butisxqww0boc" +path="res://.godot/imported/SidebarDebug.svg-e03458145016aa2c2106ad2ce79b813f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Features/LeftSideBar/Resources/SidebarDebug.svg" +dest_files=["res://.godot/imported/SidebarDebug.svg-e03458145016aa2c2106ad2ce79b813f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg new file mode 100644 index 0000000..df1a43a --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import new file mode 100644 index 0000000..44dc536 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccj0dw81x3bkc" +path="res://.godot/imported/SidebarFolder.svg-97f6e1c0f0f47ede1e32206806e1510e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Features/LeftSideBar/Resources/SidebarFolder.svg" +dest_files=["res://.godot/imported/SidebarFolder.svg-97f6e1c0f0f47ede1e32206806e1510e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg new file mode 100644 index 0000000..529d5b8 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import new file mode 100644 index 0000000..e9689a4 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uukf1nwjhthv" +path="res://.godot/imported/SidebarProblem.svg-f24099a368b2bb55d1953d2cb3d4dd58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Features/LeftSideBar/Resources/SidebarProblem.svg" +dest_files=["res://.godot/imported/SidebarProblem.svg-f24099a368b2bb55d1953d2cb3d4dd58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg new file mode 100644 index 0000000..3167efa --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg @@ -0,0 +1,5 @@ + + \ No newline at end of file diff --git a/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import new file mode 100644 index 0000000..7b43a26 --- /dev/null +++ b/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cre7q0efp4vrq" +path="res://.godot/imported/SidebarRun.svg-8ef45bb5bf22749053ccd7adff27b0d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://Features/LeftSideBar/Resources/SidebarRun.svg" +dest_files=["res://.godot/imported/SidebarRun.svg-8ef45bb5bf22749053ccd7adff27b0d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/SharpIDE.Photino/Layout/MainLayout.razor b/src/SharpIDE.Photino/Layout/MainLayout.razor index 5d10f81..51f015e 100644 --- a/src/SharpIDE.Photino/Layout/MainLayout.razor +++ b/src/SharpIDE.Photino/Layout/MainLayout.razor @@ -51,11 +51,12 @@ - + - - - + + + +