diff --git a/app/assets/textures/icon_round_32.png b/app/assets/textures/icon_round_32.png new file mode 100644 index 0000000..69a9c04 Binary files /dev/null and b/app/assets/textures/icon_round_32.png differ diff --git a/app/assets/textures/icon_round_32.png.import b/app/assets/textures/icon_round_32.png.import new file mode 100644 index 0000000..055d5e0 --- /dev/null +++ b/app/assets/textures/icon_round_32.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwclokgfijavb" +path="res://.godot/imported/icon_round_32.png-94be4e4ec9838a368ee616a959216155.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/textures/icon_round_32.png" +dest_files=["res://.godot/imported/icon_round_32.png-94be4e4ec9838a368ee616a959216155.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 diff --git a/app/scenes/components/tab.tscn b/app/scenes/components/tab.tscn index d11610b..3f5d696 100644 --- a/app/scenes/components/tab.tscn +++ b/app/scenes/components/tab.tscn @@ -1,9 +1,11 @@ -[gd_scene load_steps=9 format=3 uid="uid://dkfy3rcfbxqc6"] +[gd_scene load_steps=11 format=3 uid="uid://dkfy3rcfbxqc6"] [ext_resource type="StyleBox" uid="uid://cf4jgdfsjmjxl" path="res://assets/styles/tab.stylebox" id="1_8hbf0"] +[ext_resource type="Script" path="res://scripts/ui/tabs/tab_icon.gd" id="2_2mqph"] [ext_resource type="LabelSettings" uid="uid://bo2334w4lf3ug" path="res://assets/styles/text.tres" id="2_gll4d"] [ext_resource type="Texture2D" uid="uid://db7adnvbsxena" path="res://assets/textures/icon_round_16.png" id="2_pitbs"] [ext_resource type="Texture2D" uid="uid://cli88m5w3op6l" path="res://assets/textures/close_tab.svg" id="2_y6odh"] +[ext_resource type="Texture2D" uid="uid://cwclokgfijavb" path="res://assets/textures/icon_round_32.png" id="3_p1x2u"] [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_rxuw8"] @@ -47,11 +49,14 @@ theme_override_constants/margin_right = 10 layout_mode = 2 theme_override_constants/separation = 7 -[node name="Panel" type="Panel" parent="MarginContainer/HBoxContainer"] +[node name="Panel" type="Panel" parent="MarginContainer/HBoxContainer" node_paths=PackedStringArray("icon", "icon_hires")] custom_minimum_size = Vector2(16, 16) layout_mode = 2 size_flags_vertical = 4 theme_override_styles/panel = SubResource("StyleBoxEmpty_rxuw8") +script = ExtResource("2_2mqph") +icon = NodePath("TextureRect") +icon_hires = NodePath("TextureRectHiRes") [node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer/Panel"] texture_filter = 6 @@ -66,6 +71,19 @@ texture = ExtResource("2_pitbs") expand_mode = 1 stretch_mode = 5 +[node name="TextureRectHiRes" type="TextureRect" parent="MarginContainer/HBoxContainer/Panel"] +texture_filter = 6 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_vertical = 4 +texture = ExtResource("3_p1x2u") +expand_mode = 1 +stretch_mode = 5 + [node name="Label" type="Label" parent="MarginContainer/HBoxContainer"] layout_mode = 2 size_flags_horizontal = 3 diff --git a/app/scripts/ui/tabs/tab_icon.gd b/app/scripts/ui/tabs/tab_icon.gd new file mode 100644 index 0000000..43a3112 --- /dev/null +++ b/app/scripts/ui/tabs/tab_icon.gd @@ -0,0 +1,13 @@ +extends Panel + +@export var icon: TextureRect +@export var icon_hires: TextureRect + + +func _ready() -> void: + if DisplayServer.screen_get_scale() == 2.0: + icon.hide() + icon_hires.show() + else: + icon.show() + icon_hires.hide()