mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
ui changes.
This commit is contained in:
parent
d4ee6574b2
commit
d48610d5b8
@ -7,20 +7,26 @@
|
|||||||
[node name="RDP_Panel" type="Panel"]
|
[node name="RDP_Panel" type="Panel"]
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
|
margin_left = -9.0
|
||||||
|
margin_top = 1.0
|
||||||
|
margin_right = -9.0
|
||||||
|
margin_bottom = 1.0
|
||||||
script = ExtResource( 3 )
|
script = ExtResource( 3 )
|
||||||
|
|
||||||
[node name="CourseBrand" type="TextureRect" parent="."]
|
[node name="CourseBrand" type="TextureRect" parent="."]
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
rect_scale = Vector2( 0.25, 0.25 )
|
rect_scale = Vector2( 0.2, 0.2 )
|
||||||
texture = ExtResource( 2 )
|
texture = ExtResource( 2 )
|
||||||
expand = true
|
expand = true
|
||||||
stretch_mode = 6
|
stretch_mode = 6
|
||||||
|
|
||||||
[node name="Tokens_TOut" type="TextEdit" parent="."]
|
[node name="Tokens_TOut" type="TextEdit" parent="."]
|
||||||
anchor_left = 0.25
|
anchor_left = 0.2
|
||||||
anchor_right = 0.5
|
anchor_right = 0.465
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 1.2
|
||||||
|
margin_right = -0.136017
|
||||||
grow_horizontal = 0
|
grow_horizontal = 0
|
||||||
theme = ExtResource( 1 )
|
theme = ExtResource( 1 )
|
||||||
readonly = true
|
readonly = true
|
||||||
@ -28,9 +34,10 @@ highlight_current_line = true
|
|||||||
show_line_numbers = true
|
show_line_numbers = true
|
||||||
|
|
||||||
[node name="AST_TOut" type="TextEdit" parent="."]
|
[node name="AST_TOut" type="TextEdit" parent="."]
|
||||||
anchor_left = 0.5
|
anchor_left = 0.465
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 1.83997
|
||||||
grow_horizontal = 0
|
grow_horizontal = 0
|
||||||
theme = ExtResource( 1 )
|
theme = ExtResource( 1 )
|
||||||
readonly = true
|
readonly = true
|
||||||
@ -51,20 +58,33 @@ window_title = "Open a File"
|
|||||||
mode = 0
|
mode = 0
|
||||||
access = 2
|
access = 2
|
||||||
|
|
||||||
[node name="ParseLetterFile_Btn" type="Button" parent="."]
|
[node name="VBox" type="VBoxContainer" parent="."]
|
||||||
anchor_top = 0.25
|
anchor_top = 0.196
|
||||||
anchor_right = 0.247
|
anchor_right = 0.2
|
||||||
anchor_bottom = 0.274
|
anchor_bottom = 1.0
|
||||||
margin_left = 2.0
|
margin_top = 2.39999
|
||||||
margin_right = 0.071991
|
margin_right = -1.8
|
||||||
margin_bottom = 14.6
|
margin_bottom = -2.0
|
||||||
|
|
||||||
|
[node name="ParseLetterFile_Btn" type="Button" parent="VBox"]
|
||||||
|
margin_right = 203.0
|
||||||
|
margin_bottom = 32.0
|
||||||
|
focus_neighbour_top = NodePath("../../CourseBrand")
|
||||||
|
size_flags_vertical = 3
|
||||||
|
size_flags_stretch_ratio = 0.08
|
||||||
text = "Parse a letter file"
|
text = "Parse a letter file"
|
||||||
|
|
||||||
[node name="Back_Btn" type="Button" parent="."]
|
[node name="Separator" type="HSeparator" parent="VBox"]
|
||||||
anchor_top = 0.95
|
modulate = Color( 0.145098, 0.145098, 0.164706, 0 )
|
||||||
anchor_right = 0.247
|
margin_top = 36.0
|
||||||
anchor_bottom = 0.992
|
margin_right = 203.0
|
||||||
margin_left = 2.0
|
margin_bottom = 441.0
|
||||||
margin_right = 0.071991
|
size_flags_vertical = 15
|
||||||
margin_bottom = 2.59998
|
|
||||||
|
[node name="Back_Btn" type="Button" parent="VBox"]
|
||||||
|
margin_top = 445.0
|
||||||
|
margin_right = 203.0
|
||||||
|
margin_bottom = 478.0
|
||||||
|
size_flags_vertical = 3
|
||||||
|
size_flags_stretch_ratio = 0.08
|
||||||
text = "Course Directory"
|
text = "Course Directory"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Building a parser from scratch
|
# Building a parser from scratch
|
||||||
|
|
||||||
[Img](https://i.imgur.com/rEzWwGs.png)
|
![Img](https://i.imgur.com/rEzWwGs.png)
|
||||||
|
|
||||||
## Lecutres
|
## Lecutres
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ var Parser = preload("Parser.gd").new()
|
|||||||
onready var Tokens_TOut = get_node("Tokens_TOut")
|
onready var Tokens_TOut = get_node("Tokens_TOut")
|
||||||
onready var AST_TOut = get_node("AST_TOut")
|
onready var AST_TOut = get_node("AST_TOut")
|
||||||
onready var FDialog = get_node("Letter_FDialog")
|
onready var FDialog = get_node("Letter_FDialog")
|
||||||
onready var FD_Btn = get_node("ParseLetterFile_Btn")
|
onready var FD_Btn = get_node("VBox/ParseLetterFile_Btn")
|
||||||
onready var Back_Btn = get_node("Back_Btn")
|
onready var Back_Btn = get_node("VBox/Back_Btn")
|
||||||
|
|
||||||
|
|
||||||
func tokens_out(text):
|
func tokens_out(text):
|
||||||
|
@ -11,38 +11,43 @@ anchor_bottom = 1.0
|
|||||||
script = ExtResource( 1 )
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
[node name="HBox" type="HBoxContainer" parent="."]
|
[node name="HBox" type="HBoxContainer" parent="."]
|
||||||
anchor_left = 0.15
|
anchor_left = 0.5
|
||||||
anchor_top = 0.25
|
anchor_top = 0.5
|
||||||
anchor_right = 0.85
|
anchor_right = 0.5
|
||||||
anchor_bottom = 0.75
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -452.0
|
||||||
|
margin_top = -125.5
|
||||||
|
margin_right = 452.0
|
||||||
|
margin_bottom = 125.5
|
||||||
|
size_flags_horizontal = 3
|
||||||
|
size_flags_vertical = 3
|
||||||
alignment = 1
|
alignment = 1
|
||||||
|
|
||||||
[node name="RDP_Btn" type="Button" parent="HBox"]
|
[node name="RDP_Btn" type="Button" parent="HBox"]
|
||||||
margin_left = 84.0
|
margin_right = 433.0
|
||||||
margin_right = 339.0
|
margin_bottom = 251.0
|
||||||
margin_bottom = 150.0
|
|
||||||
rect_min_size = Vector2( 255, 150 )
|
rect_min_size = Vector2( 255, 150 )
|
||||||
size_flags_horizontal = 0
|
size_flags_horizontal = 3
|
||||||
size_flags_vertical = 0
|
size_flags_vertical = 7
|
||||||
theme = ExtResource( 4 )
|
theme = ExtResource( 4 )
|
||||||
icon = ExtResource( 2 )
|
icon = ExtResource( 2 )
|
||||||
icon_align = 1
|
icon_align = 1
|
||||||
expand_icon = true
|
expand_icon = true
|
||||||
|
|
||||||
[node name="VSeparator" type="VSeparator" parent="HBox"]
|
[node name="VSeparator" type="VSeparator" parent="HBox"]
|
||||||
margin_left = 343.0
|
margin_left = 437.0
|
||||||
margin_right = 373.0
|
margin_right = 467.0
|
||||||
margin_bottom = 300.0
|
margin_bottom = 251.0
|
||||||
theme = ExtResource( 4 )
|
theme = ExtResource( 4 )
|
||||||
custom_constants/separation = 30
|
custom_constants/separation = 30
|
||||||
|
|
||||||
[node name="RegM_Btn" type="Button" parent="HBox"]
|
[node name="RegM_Btn" type="Button" parent="HBox"]
|
||||||
margin_left = 377.0
|
margin_left = 471.0
|
||||||
margin_right = 632.0
|
margin_right = 904.0
|
||||||
margin_bottom = 150.0
|
margin_bottom = 251.0
|
||||||
rect_min_size = Vector2( 255, 150 )
|
rect_min_size = Vector2( 255, 150 )
|
||||||
size_flags_horizontal = 0
|
size_flags_horizontal = 3
|
||||||
size_flags_vertical = 0
|
size_flags_vertical = 3
|
||||||
theme = ExtResource( 4 )
|
theme = ExtResource( 4 )
|
||||||
icon = ExtResource( 3 )
|
icon = ExtResource( 3 )
|
||||||
icon_align = 1
|
icon_align = 1
|
||||||
|
@ -21,7 +21,7 @@ _global_script_class_icons={
|
|||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="Parser"
|
config/name="Parser"
|
||||||
run/main_scene="res://Persistent.tscn"
|
run/main_scene="res://Scenes/Persistent.tscn"
|
||||||
config/icon="res://Assets/Branding/RDP_Class_cover_small.png"
|
config/icon="res://Assets/Branding/RDP_Class_cover_small.png"
|
||||||
|
|
||||||
[autoload]
|
[autoload]
|
||||||
|
Loading…
Reference in New Issue
Block a user