-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathExample.tscn
106 lines (92 loc) · 2.91 KB
/
Example.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[gd_scene load_steps=3 format=3 uid="uid://dr5e61phtucv7"]
[ext_resource type="Script" path="res://example.gd" id="1_fbp2v"]
[sub_resource type="CodeHighlighter" id="CodeHighlighter_xwvvf"]
number_color = Color(0, 0, 0.901961, 1)
symbol_color = Color(0.839216, 0.854902, 0, 1)
function_color = Color(0.844772, 0.506011, 1.92523e-07, 1)
[node name="Node2D" type="Node2D"]
script = ExtResource("1_fbp2v")
[node name="Panel" type="Panel" parent="."]
offset_right = 1147.0
offset_bottom = 648.0
size_flags_horizontal = 6
size_flags_vertical = 6
metadata/_edit_use_anchors_ = true
[node name="title" type="LineEdit" parent="."]
offset_left = 178.0
offset_top = 15.0
offset_right = 589.0
offset_bottom = 64.0
size_flags_horizontal = 6
size_flags_vertical = 6
placeholder_text = "note title"
alignment = 1
metadata/_edit_use_anchors_ = true
[node name="note_text" type="TextEdit" parent="."]
offset_top = 84.0
offset_right = 731.0
offset_bottom = 642.0
size_flags_horizontal = 6
size_flags_vertical = 6
indent_wrapped_lines = true
scroll_smooth = true
scroll_past_end_of_file = true
minimap_draw = true
syntax_highlighter = SubResource("CodeHighlighter_xwvvf")
highlight_all_occurrences = true
highlight_current_line = true
metadata/_edit_use_anchors_ = true
[node name="save_button" type="Button" parent="."]
offset_left = 609.0
offset_top = 13.0
offset_right = 728.0
offset_bottom = 62.0
size_flags_horizontal = 3
size_flags_vertical = 3
text = "SAVE"
metadata/_edit_use_anchors_ = true
[node name="delete" type="Button" parent="."]
offset_left = 761.0
offset_top = 12.0
offset_right = 880.0
offset_bottom = 61.0
size_flags_horizontal = 3
size_flags_vertical = 3
text = "DELETE"
metadata/_edit_use_anchors_ = true
[node name="update" type="Button" parent="."]
offset_left = 23.0
offset_top = 19.0
offset_right = 142.0
offset_bottom = 68.0
size_flags_horizontal = 3
size_flags_vertical = 3
text = "UPDATE"
metadata/_edit_use_anchors_ = true
[node name="note_list" type="ItemList" parent="."]
offset_left = 748.0
offset_top = 79.0
offset_right = 1141.0
offset_bottom = 635.0
metadata/_edit_use_anchors_ = true
[node name="Label" type="Label" parent="."]
offset_left = 756.0
offset_top = 30.0
offset_right = 1141.0
offset_bottom = 53.0
text = "NOTES"
horizontal_alignment = 1
metadata/_edit_use_anchors_ = true
[node name="HTTPRequest" type="HTTPRequest" parent="."]
[node name="REFRESH" type="Button" parent="."]
offset_left = 1039.0
offset_top = 9.0
offset_right = 1115.0
offset_bottom = 63.0
text = "REFRESH"
metadata/_edit_use_anchors_ = true
[connection signal="pressed" from="save_button" to="." method="_on_save_button_pressed"]
[connection signal="pressed" from="delete" to="." method="_on_delete_pressed"]
[connection signal="pressed" from="update" to="." method="_on_update_pressed"]
[connection signal="item_selected" from="note_list" to="." method="_on_note_list_item_selected"]
[connection signal="pressed" from="REFRESH" to="." method="_on_refresh_pressed"]