Godot-TextEditor/addons/text_editor/TextEditor.tscn

552 lines
16 KiB
Plaintext
Raw Normal View History

2021-11-20 14:53:02 +01:00
[gd_scene load_steps=26 format=2]
2021-10-11 18:41:26 +02:00
2021-10-18 21:20:19 +02:00
[ext_resource path="res://addons/text_editor/TE_Console.gd" type="Script" id=1]
2021-10-19 01:50:21 +02:00
[ext_resource path="res://addons/text_editor/TE_Editor.gd" type="Script" id=2]
2021-10-11 18:41:26 +02:00
[ext_resource path="res://addons/text_editor/TE_FilesList.gd" type="Script" id=3]
[ext_resource path="res://addons/text_editor/TE_FileEditor.gd" type="Script" id=4]
[ext_resource path="res://addons/text_editor/TE_SymbolsList.gd" type="Script" id=5]
2021-10-11 23:00:17 +02:00
[ext_resource path="res://addons/text_editor/TE_FileTabs.gd" type="Script" id=6]
2021-10-11 18:41:26 +02:00
[ext_resource path="res://addons/text_editor/TE_TagsPanel.gd" type="Script" id=7]
2021-10-11 23:00:17 +02:00
[ext_resource path="res://addons/text_editor/TE_LineEdit.gd" type="Script" id=8]
[ext_resource path="res://addons/text_editor/TE_MetaInfo.gd" type="Script" id=9]
2021-10-11 18:41:26 +02:00
[ext_resource path="res://addons/text_editor/fonts/font_i.tres" type="DynamicFont" id=10]
[ext_resource path="res://addons/text_editor/fonts/font_b.tres" type="DynamicFont" id=11]
[ext_resource path="res://addons/text_editor/fonts/font_r.tres" type="DynamicFont" id=12]
[ext_resource path="res://addons/text_editor/fonts/font_bi.tres" type="DynamicFont" id=13]
[ext_resource path="res://addons/text_editor/fonts/font.tres" type="DynamicFont" id=14]
2021-10-18 21:20:19 +02:00
[ext_resource path="res://addons/text_editor/TE_Search.gd" type="Script" id=15]
[ext_resource path="res://addons/text_editor/TE_MetaTabs.gd" type="Script" id=16]
[ext_resource path="res://addons/text_editor/TE_ScriptInfo.gd" type="Script" id=17]
2021-10-11 18:41:26 +02:00
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=8]
[sub_resource type="Theme" id=9]
2021-10-11 18:41:26 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=10]
2021-10-11 23:00:17 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=11]
2021-10-18 21:20:19 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=12]
2021-10-18 21:20:19 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=13]
2021-10-18 21:20:19 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=14]
2021-10-18 21:20:19 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
[sub_resource type="Theme" id=15]
2021-10-19 01:50:21 +02:00
TooltipLabel/fonts/font = ExtResource( 12 )
2021-10-19 01:52:40 +02:00
[node name="editor" type="Control"]
2021-10-11 18:41:26 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-24 17:09:48 +01:00
p_console = NodePath("c/div1/div2/c/c/c/meta_tabs/console")
p_progress_bar = NodePath("c/c/c/progress")
2021-10-11 18:41:26 +02:00
[node name="file_editor" type="TextEdit" parent="."]
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 222.0
margin_top = 74.0
margin_right = 214.0
margin_bottom = 30.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 8 )
2021-10-11 18:41:26 +02:00
custom_fonts/font = ExtResource( 14 )
highlight_current_line = true
syntax_highlighting = true
show_line_numbers = true
draw_tabs = true
fold_gutter = true
highlight_all_occurrences = true
minimap_draw = true
script = ExtResource( 4 )
[node name="c" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
custom_constants/separation = 0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="c" type="PanelContainer" parent="c"]
margin_right = 1024.0
2021-10-19 01:50:21 +02:00
margin_bottom = 38.0
2021-10-11 18:41:26 +02:00
[node name="c" type="HBoxContainer" parent="c/c"]
margin_left = 7.0
margin_top = 7.0
margin_right = 1017.0
2021-10-19 01:50:21 +02:00
margin_bottom = 31.0
2021-10-11 18:41:26 +02:00
[node name="test" type="Button" parent="c/c/c"]
2021-10-11 23:00:17 +02:00
margin_right = 12.0
2021-10-19 01:50:21 +02:00
margin_bottom = 24.0
2021-10-11 23:00:17 +02:00
text = "⟳"
2021-10-11 18:41:26 +02:00
[node name="file_button" type="MenuButton" parent="c/c/c"]
2021-10-11 23:00:17 +02:00
margin_left = 16.0
margin_right = 48.0
2021-10-19 01:50:21 +02:00
margin_bottom = 24.0
2021-10-11 18:41:26 +02:00
text = "file"
items = [ "New File", null, 0, false, false, 0, 0, null, "", false, "Extensions", null, 0, false, false, 1, 0, null, "Extensions", false, "New File", null, 0, false, false, 2, 0, null, "", false, "Extensions", null, 0, false, false, 3, 0, null, "Extensions", false ]
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-11 21:09:16 +02:00
[node name="view_button" type="MenuButton" parent="c/c/c"]
2021-10-11 23:00:17 +02:00
margin_left = 52.0
margin_right = 93.0
2021-10-19 01:50:21 +02:00
margin_bottom = 24.0
2021-10-11 21:09:16 +02:00
focus_mode = 2
text = "view"
items = [ "New File", null, 0, false, false, 0, 0, null, "", false, "Extensions", null, 0, false, false, 1, 0, null, "Extensions", false, "New File", null, 0, false, false, 2, 0, null, "", false, "Extensions", null, 0, false, false, 3, 0, null, "Extensions", false ]
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-19 01:50:21 +02:00
[node name="word_wrap" type="CheckBox" parent="c/c/c"]
margin_left = 97.0
margin_right = 155.0
margin_bottom = 24.0
text = "wrap"
2021-11-24 17:09:48 +01:00
[node name="tab_colors" type="CheckBox" parent="c/c/c"]
margin_left = 159.0
margin_right = 250.0
margin_bottom = 24.0
text = "tab colors"
[node name="space" type="Control" parent="c/c/c"]
margin_left = 254.0
margin_right = 978.0
margin_bottom = 24.0
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="progress" type="ProgressBar" parent="c/c/c"]
visible = false
margin_left = 878.0
margin_right = 978.0
margin_bottom = 24.0
rect_min_size = Vector2( 100, 0 )
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
[node name="version" type="Label" parent="c/c/c"]
modulate = Color( 1, 1, 1, 0.521569 )
2021-11-24 17:09:48 +01:00
margin_left = 982.0
2021-11-20 14:53:02 +01:00
margin_top = 3.0
margin_right = 1010.0
margin_bottom = 20.0
custom_fonts/font = ExtResource( 12 )
2021-11-24 17:09:48 +01:00
text = "v1.9"
2021-11-20 14:53:02 +01:00
align = 2
2021-10-11 22:14:08 +02:00
[node name="div1" type="HSplitContainer" parent="c"]
2021-10-19 01:50:21 +02:00
margin_top = 38.0
2021-10-11 18:41:26 +02:00
margin_right = 1024.0
margin_bottom = 600.0
size_flags_vertical = 3
split_offset = -300
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-11 22:14:08 +02:00
[node name="c2" type="PanelContainer" parent="c/div1"]
2021-10-11 18:41:26 +02:00
margin_right = 206.0
2021-10-19 01:50:21 +02:00
margin_bottom = 562.0
2021-10-11 18:41:26 +02:00
rect_min_size = Vector2( 200, 0 )
size_flags_horizontal = 3
size_flags_vertical = 3
2021-10-11 22:14:08 +02:00
[node name="c" type="Panel" parent="c/div1/c2"]
2021-10-11 18:41:26 +02:00
margin_left = 7.0
margin_top = 7.0
margin_right = 199.0
2021-10-19 01:50:21 +02:00
margin_bottom = 555.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
[node name="c" type="VBoxContainer" parent="c/div1/c2/c"]
2021-10-11 18:41:26 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
2021-11-20 14:53:02 +01:00
__meta__ = {
"_edit_use_anchors_": false
}
[node name="filter" type="LineEdit" parent="c/div1/c2/c/c"]
margin_right = 192.0
2021-11-24 17:09:48 +01:00
margin_bottom = 27.0
custom_fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
clear_button_enabled = true
[node name="list_files" type="RichTextLabel" parent="c/div1/c2/c/c"]
2021-11-24 17:09:48 +01:00
margin_top = 31.0
2021-11-20 14:53:02 +01:00
margin_right = 192.0
margin_bottom = 548.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 9 )
2021-10-11 18:41:26 +02:00
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
meta_underlined = false
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-20 14:53:02 +01:00
p_filter = NodePath("../filter")
2021-10-11 18:41:26 +02:00
2021-11-20 14:53:02 +01:00
[node name="file_popup" type="PopupMenu" parent="c/div1/c2/c/c/list_files"]
2021-10-11 18:41:26 +02:00
margin_right = 20.0
margin_bottom = 20.0
custom_fonts/font = ExtResource( 14 )
items = [ "Rename", null, 0, false, false, 0, 0, null, "", false, "", null, 0, false, false, -1, 0, null, "", true, "Remove", null, 0, false, false, 2, 0, null, "", false ]
2021-11-20 14:53:02 +01:00
[node name="dir_popup" type="PopupMenu" parent="c/div1/c2/c/c/list_files"]
2021-10-11 18:41:26 +02:00
margin_right = 20.0
margin_bottom = 20.0
custom_fonts/font = ExtResource( 14 )
2021-11-20 14:53:02 +01:00
items = [ "New File", null, 0, false, false, 0, 0, null, "", false, "", null, 0, false, false, -1, 0, null, "", true, "Remove", null, 0, false, false, 2, 0, null, "", false, "", null, 0, false, false, -1, 0, null, "", true, "Tint Yellow", null, 0, false, false, 4, 0, null, "", false, "Tint Red", null, 0, false, false, 5, 0, null, "", false, "Tint Blue", null, 0, false, false, 6, 0, null, "", false, "Tint Green", null, 0, false, false, 7, 0, null, "", false, "Reset Tint", null, 0, false, false, 8, 0, null, "", false ]
2021-10-11 18:41:26 +02:00
2021-10-11 22:14:08 +02:00
[node name="div2" type="HSplitContainer" parent="c/div1"]
2021-10-11 18:41:26 +02:00
margin_left = 218.0
margin_right = 1024.0
2021-10-19 01:50:21 +02:00
margin_bottom = 562.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
split_offset = -80
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-11 22:14:08 +02:00
[node name="c" type="VBoxContainer" parent="c/div1/div2"]
2021-10-11 18:41:26 +02:00
margin_right = 614.0
2021-10-19 01:50:21 +02:00
margin_bottom = 562.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-10-11 22:14:08 +02:00
[node name="line_edit" type="LineEdit" parent="c/div1/div2/c"]
2021-10-11 18:41:26 +02:00
visible = false
margin_right = 614.0
2021-10-18 21:20:19 +02:00
margin_bottom = 32.0
2021-10-11 18:41:26 +02:00
custom_fonts/font = ExtResource( 12 )
script = ExtResource( 8 )
2021-10-18 21:20:19 +02:00
[node name="c" type="VSplitContainer" parent="c/div1/div2/c"]
margin_right = 614.0
2021-10-19 01:50:21 +02:00
margin_bottom = 562.0
2021-10-18 21:20:19 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="tab_container" type="TabContainer" parent="c/div1/div2/c/c"]
2021-10-11 18:41:26 +02:00
margin_right = 614.0
2021-11-24 17:09:48 +01:00
margin_bottom = 275.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-24 17:09:48 +01:00
custom_constants/top_margin = 0
custom_constants/side_margin = 0
2021-10-11 18:41:26 +02:00
custom_fonts/font = ExtResource( 12 )
tab_align = 0
drag_to_rearrange_enabled = true
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-24 17:09:48 +01:00
[node name="c" type="Control" parent="c/div1/div2/c/c"]
margin_top = 287.0
2021-10-11 18:41:26 +02:00
margin_right = 614.0
2021-10-24 17:27:27 +02:00
margin_bottom = 562.0
2021-11-24 17:09:48 +01:00
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="meta_tabs" type="TabContainer" parent="c/div1/div2/c/c/c"]
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-10-18 21:20:19 +02:00
script = ExtResource( 16 )
2021-11-24 17:09:48 +01:00
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-18 21:20:19 +02:00
2021-11-24 17:09:48 +01:00
[node name="console" type="RichTextLabel" parent="c/div1/div2/c/c/c/meta_tabs"]
visible = false
2021-10-18 21:20:19 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 10 )
2021-10-19 01:50:21 +02:00
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
2021-10-18 21:20:19 +02:00
bbcode_enabled = true
meta_underlined = false
2021-10-19 01:50:21 +02:00
text = "active: False
2021-10-23 05:51:34 +02:00
active: False
2021-11-20 14:53:02 +01:00
active: False
active: False
active: False
2021-11-24 17:09:48 +01:00
active: False
2021-10-19 01:50:21 +02:00
"
2021-10-18 21:20:19 +02:00
script = ExtResource( 1 )
2021-11-24 17:09:48 +01:00
[node name="meta" type="RichTextLabel" parent="c/div1/div2/c/c/c/meta_tabs"]
2021-10-19 01:50:21 +02:00
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 11 )
2021-10-19 01:50:21 +02:00
custom_constants/table_hseparation = 16
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
script = ExtResource( 9 )
2021-11-24 17:09:48 +01:00
[node name="search" type="VBoxContainer" parent="c/div1/div2/c/c/c/meta_tabs"]
2021-11-20 14:53:02 +01:00
visible = false
2021-10-18 21:20:19 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-24 17:09:48 +01:00
[node name="c" type="HBoxContainer" parent="c/div1/div2/c/c/c/meta_tabs/search"]
2021-10-24 17:27:27 +02:00
margin_right = 606.0
margin_bottom = 27.0
2021-11-24 17:09:48 +01:00
[node name="le" type="LineEdit" parent="c/div1/div2/c/c/c/meta_tabs/search/c"]
margin_right = 409.0
2021-10-24 17:27:27 +02:00
margin_bottom = 27.0
2021-10-18 21:20:19 +02:00
size_flags_horizontal = 3
custom_fonts/font = ExtResource( 12 )
2021-11-24 17:09:48 +01:00
[node name="all" type="CheckBox" parent="c/div1/div2/c/c/c/meta_tabs/search/c"]
margin_left = 413.0
margin_right = 504.0
2021-10-24 17:27:27 +02:00
margin_bottom = 27.0
2021-11-20 14:53:02 +01:00
custom_fonts/font = ExtResource( 12 )
2021-10-24 17:27:27 +02:00
pressed = true
text = "all files"
2021-11-24 17:09:48 +01:00
[node name="case" type="CheckBox" parent="c/div1/div2/c/c/c/meta_tabs/search/c"]
margin_left = 508.0
2021-10-24 17:27:27 +02:00
margin_right = 606.0
margin_bottom = 27.0
2021-11-20 14:53:02 +01:00
custom_fonts/font = ExtResource( 12 )
2021-10-24 17:27:27 +02:00
text = "match case"
2021-11-24 17:09:48 +01:00
[node name="rte" type="RichTextLabel" parent="c/div1/div2/c/c/c/meta_tabs/search"]
2021-10-24 17:27:27 +02:00
margin_top = 31.0
margin_right = 606.0
margin_bottom = 231.0
2021-10-18 21:20:19 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 12 )
2021-10-18 21:20:19 +02:00
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
meta_underlined = false
script = ExtResource( 15 )
2021-11-24 17:09:48 +01:00
[node name="sys" type="VBoxContainer" parent="c/div1/div2/c/c/c/meta_tabs"]
2021-10-18 21:20:19 +02:00
visible = false
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
2021-10-19 01:50:21 +02:00
2021-11-24 17:09:48 +01:00
[node name="update" type="Button" parent="c/div1/div2/c/c/c/meta_tabs/sys"]
2021-10-24 17:27:27 +02:00
margin_right = 606.0
2021-11-24 17:09:48 +01:00
margin_bottom = 23.0
2021-10-18 21:20:19 +02:00
size_flags_horizontal = 3
2021-10-19 01:50:21 +02:00
custom_fonts/font = ExtResource( 12 )
text = "⟳"
2021-10-11 18:41:26 +02:00
2021-11-24 17:09:48 +01:00
[node name="sys" type="RichTextLabel" parent="c/div1/div2/c/c/c/meta_tabs/sys"]
margin_top = 27.0
2021-10-24 17:27:27 +02:00
margin_right = 606.0
2021-11-24 17:09:48 +01:00
margin_bottom = 227.0
2021-10-18 21:20:19 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 13 )
2021-10-18 21:20:19 +02:00
custom_constants/table_hseparation = 101
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
meta_underlined = false
text = "idwords ⯆unique"
script = ExtResource( 17 )
2021-11-24 17:09:48 +01:00
[node name="image" type="VBoxContainer" parent="c/div1/div2/c/c/c/meta_tabs"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 4.0
margin_top = 32.0
margin_right = -4.0
margin_bottom = -4.0
[node name="image" type="TextureRect" parent="c/div1/div2/c/c/c/meta_tabs/image"]
margin_right = 606.0
margin_bottom = 239.0
size_flags_horizontal = 3
size_flags_vertical = 3
expand = true
stretch_mode = 6
2021-10-11 22:14:08 +02:00
[node name="c2" type="PanelContainer" parent="c/div1/div2"]
2021-10-11 18:41:26 +02:00
margin_left = 626.0
margin_right = 806.0
2021-10-19 01:50:21 +02:00
margin_bottom = 562.0
2021-10-11 18:41:26 +02:00
rect_min_size = Vector2( 100, 0 )
size_flags_vertical = 3
2021-10-11 22:14:08 +02:00
[node name="c" type="VSplitContainer" parent="c/div1/div2/c2"]
2021-10-11 18:41:26 +02:00
margin_left = 7.0
margin_top = 7.0
margin_right = 173.0
2021-10-19 01:50:21 +02:00
margin_bottom = 555.0
2021-10-11 18:41:26 +02:00
custom_constants/autohide = 0
2021-10-19 01:50:21 +02:00
split_offset = 180
2021-10-11 18:41:26 +02:00
2021-10-11 22:14:08 +02:00
[node name="c" type="Panel" parent="c/div1/div2/c2/c"]
2021-10-11 18:41:26 +02:00
margin_right = 166.0
2021-10-19 01:50:21 +02:00
margin_bottom = 448.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
[node name="c" type="VBoxContainer" parent="c/div1/div2/c2/c/c"]
2021-10-11 18:41:26 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
2021-11-20 14:53:02 +01:00
size_flags_horizontal = 3
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="filter" type="LineEdit" parent="c/div1/div2/c2/c/c/c"]
margin_right = 166.0
2021-11-24 17:09:48 +01:00
margin_bottom = 27.0
custom_fonts/font = ExtResource( 12 )
2021-11-20 14:53:02 +01:00
clear_button_enabled = true
[node name="list_symbols" type="RichTextLabel" parent="c/div1/div2/c2/c/c/c"]
2021-11-24 17:09:48 +01:00
margin_top = 31.0
2021-11-20 14:53:02 +01:00
margin_right = 166.0
margin_bottom = 448.0
2021-10-11 18:41:26 +02:00
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 14 )
2021-10-11 18:41:26 +02:00
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
bbcode_text = "[color=#ff808080][i][center]*No symbols*"
meta_underlined = false
text = "*No symbols*"
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-20 14:53:02 +01:00
p_filter = NodePath("../filter")
2021-10-11 18:41:26 +02:00
2021-10-11 22:14:08 +02:00
[node name="c2" type="Panel" parent="c/div1/div2/c2/c"]
2021-10-19 01:50:21 +02:00
margin_top = 460.0
2021-10-11 18:41:26 +02:00
margin_right = 166.0
2021-10-19 01:50:21 +02:00
margin_bottom = 548.0
2021-10-11 18:41:26 +02:00
size_flags_horizontal = 3
size_flags_vertical = 3
2021-10-11 22:14:08 +02:00
[node name="list_tags" type="RichTextLabel" parent="c/div1/div2/c2/c/c2"]
2021-10-11 18:41:26 +02:00
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
size_flags_vertical = 3
2021-11-20 14:53:02 +01:00
theme = SubResource( 15 )
2021-10-11 18:41:26 +02:00
custom_fonts/bold_italics_font = ExtResource( 13 )
custom_fonts/italics_font = ExtResource( 10 )
custom_fonts/bold_font = ExtResource( 11 )
custom_fonts/normal_font = ExtResource( 12 )
bbcode_enabled = true
bbcode_text = "[color=#ff808080][i][center]*No tags*"
meta_underlined = false
text = "*No tags*"
script = ExtResource( 7 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="popup" type="ConfirmationDialog" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -100.0
margin_top = -35.0
margin_right = 100.0
margin_bottom = 35.0
[node name="popup_unsaved" type="ConfirmationDialog" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -100.0
margin_top = -35.0
margin_right = 100.0
margin_bottom = 35.0
window_title = "Warning"
dialog_text = "Unsaved data will be lost."
[node name="file_dialog" type="FileDialog" parent="."]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -297.5
margin_top = -157.0
margin_right = 297.5
margin_bottom = 157.0
current_dir = "res://test_files"
current_path = "res://test_files/"
__meta__ = {
"_edit_use_anchors_": false
}