Added Emulator Select and Pick options.

On branch feat/godot-configurator
 Changes to be committed:
	modified:   tools/configurator/main.gd
	modified:   tools/configurator/main.tscn
	modified:   tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres
This commit is contained in:
monkeyx-net 2024-07-28 22:39:20 +01:00
parent 58f0d2f283
commit 84cd957aaa
3 changed files with 87 additions and 47 deletions

View file

@ -11,6 +11,8 @@ var log_results: Dictionary
var theme_option: OptionButton
signal signal_theme_changed
var custom_theme: Theme = $".".theme
var emu_select_option: OptionButton
var emu_pick_option: OptionButton
func _ready():
class_functions = ClassFunctions.new()
@ -28,14 +30,19 @@ func _ready():
func _get_nodes() -> void:
status_code_label = get_node("%status_code_label")
theme_option = get_node("%theme_optionbutton")
emu_select_option = get_node("%emu_select_option")
emu_pick_option = get_node("%emu_pick_option")
func _connect_signals() -> void:
#signal_theme_changed.connect(_conf_theme)
theme_option.item_selected.connect(_conf_theme)
signal_theme_changed.emit(theme_option.item_selected)
emu_select_option.item_selected.connect(_emu_select)
func _emu_select(index: int) -> void:
emu_pick_option.visible = true
func _conf_theme(index: int) -> void:
match index:
1:
custom_theme = preload("res://assets/themes/default_theme.tres")

View file

@ -410,6 +410,39 @@ text = "TK_GENTOOLS"
[node name="tools_separator" type="HSeparator" parent="Background/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"]
layout_mode = 2
[node name="emu_select_option" type="OptionButton" parent="Background/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 4
item_count = 3
selected = 0
popup/item_0/text = "TK_SELECT_EMU"
popup/item_0/id = 0
popup/item_0/disabled = true
popup/item_0/separator = true
popup/item_1/text = "RetroArch"
popup/item_1/id = 1
popup/item_2/text = "MAME"
popup/item_2/id = 2
[node name="emu_pick_option" type="OptionButton" parent="Background/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"]
unique_name_in_owner = true
visible = false
layout_mode = 2
size_flags_horizontal = 4
item_count = 4
selected = 0
popup/item_0/text = "TK_ACTION_EMU"
popup/item_0/id = 0
popup/item_0/disabled = true
popup/item_0/separator = true
popup/item_1/text = "HELP"
popup/item_1/id = 1
popup/item_2/text = "LAUNCH"
popup/item_2/id = 2
popup/item_3/text = "RESET"
popup/item_3/id = 3
[node name="emu_open_button" type="Button" parent="Background/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"]
layout_mode = 2
text = "TK_EMUOPEN"

File diff suppressed because one or more lines are too long