From 2e5c0de21b0f35531e3d42e63c27df80cf3fad02 Mon Sep 17 00:00:00 2001 From: dam Date: Wed, 1 Dec 2021 02:26:44 +0000 Subject: Convert from native to godot --- main.tscn | 141 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 main.tscn (limited to 'main.tscn') diff --git a/main.tscn b/main.tscn new file mode 100644 index 0000000..16e73df --- /dev/null +++ b/main.tscn @@ -0,0 +1,141 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://main.gd" type="Script" id=1] + +[node name="main" type="Node"] + +[node name="ScrollContainer" type="ScrollContainer" parent="."] +anchor_right = 1.0 +anchor_bottom = 1.0 +scroll_horizontal_enabled = false +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="VBoxContainer" type="VBoxContainer" parent="ScrollContainer"] +margin_right = 720.0 +margin_bottom = 548.0 +rect_min_size = Vector2( 720, 0 ) +rect_clip_content = true +script = ExtResource( 1 ) + +[node name="process_number" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_right = 720.0 +margin_bottom = 24.0 +placeholder_text = "Nº Processo" +caret_blink = true + +[node name="surgery_number" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 28.0 +margin_right = 720.0 +margin_bottom = 52.0 +placeholder_text = "Nº Cirurgia" +caret_blink = true + +[node name="place" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 56.0 +margin_right = 720.0 +margin_bottom = 80.0 +placeholder_text = "Local" +caret_blink = true + +[node name="anesthesia" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 84.0 +margin_right = 720.0 +margin_bottom = 108.0 +placeholder_text = "Anesthesics" +caret_blink = true + +[node name="first_aider" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 112.0 +margin_right = 720.0 +margin_bottom = 136.0 +placeholder_text = "1º Ajudante" +caret_blink = true + +[node name="type" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 140.0 +margin_right = 720.0 +margin_bottom = 164.0 +placeholder_text = "Tipo" +caret_blink = true + +[node name="sub_type" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 168.0 +margin_right = 720.0 +margin_bottom = 192.0 +placeholder_text = "Subtipo" +caret_blink = true + +[node name="sub_sub_type" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 196.0 +margin_right = 720.0 +margin_bottom = 220.0 +placeholder_text = "Sub-Subtipo" +caret_blink = true + +[node name="pathology" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 224.0 +margin_right = 720.0 +margin_bottom = 248.0 +placeholder_text = "Patologia" +caret_blink = true + +[node name="intervention" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 252.0 +margin_right = 720.0 +margin_bottom = 276.0 +placeholder_text = "Intervenção" +caret_blink = true + +[node name="urgency" type="CheckBox" parent="ScrollContainer/VBoxContainer"] +margin_top = 280.0 +margin_right = 720.0 +margin_bottom = 304.0 +text = "Urgência" + +[node name="notes" type="LineEdit" parent="ScrollContainer/VBoxContainer"] +margin_top = 308.0 +margin_right = 720.0 +margin_bottom = 332.0 +placeholder_text = "Notas" +caret_blink = true + +[node name="output" type="RichTextLabel" parent="ScrollContainer/VBoxContainer"] +margin_top = 336.0 +margin_right = 720.0 +margin_bottom = 386.0 +rect_min_size = Vector2( 0, 50 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="timer" type="RichTextLabel" parent="ScrollContainer/VBoxContainer"] +margin_top = 390.0 +margin_right = 720.0 +margin_bottom = 440.0 +rect_min_size = Vector2( 0, 50 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="button" type="Button" parent="ScrollContainer/VBoxContainer"] +margin_top = 444.0 +margin_right = 720.0 +margin_bottom = 494.0 +grow_horizontal = 2 +grow_vertical = 2 +rect_min_size = Vector2( 0, 50 ) +text = "PRESS ME" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="log" type="RichTextLabel" parent="ScrollContainer/VBoxContainer"] +margin_top = 498.0 +margin_right = 720.0 +margin_bottom = 548.0 +rect_min_size = Vector2( 0, 50 ) +__meta__ = { +"_edit_use_anchors_": false +} -- cgit v1.2.3