mirror of
https://github.com/Relintai/godot-engine.file-editor.git
synced 2024-11-12 22:27:22 +01:00
Update file for #25
This commit is contained in:
parent
6076b056de
commit
c1242cb160
@ -66,9 +66,7 @@ var current_ini_editor : Control
|
|||||||
var current_csv_editor : Control
|
var current_csv_editor : Control
|
||||||
var current_font : DynamicFont
|
var current_font : DynamicFont
|
||||||
|
|
||||||
|
|
||||||
func _ready():
|
func _ready():
|
||||||
|
|
||||||
clean_editor()
|
clean_editor()
|
||||||
update_version()
|
update_version()
|
||||||
connect_signals()
|
connect_signals()
|
||||||
@ -361,7 +359,7 @@ func open_file(path : String, font : String = "null"):
|
|||||||
current_file_path = path
|
current_file_path = path
|
||||||
|
|
||||||
var vanilla_editor = open_in_vanillaeditor(path)
|
var vanilla_editor = open_in_vanillaeditor(path)
|
||||||
if font != "null":
|
if font != "null" and vanilla_editor.get("custom_fonts/font")!=null:
|
||||||
vanilla_editor.set_font(font)
|
vanilla_editor.set_font(font)
|
||||||
var ini_editor = open_in_inieditor(path)
|
var ini_editor = open_in_inieditor(path)
|
||||||
var csv_editor = open_in_csveditor(path)
|
var csv_editor = open_in_csveditor(path)
|
||||||
@ -372,47 +370,42 @@ func open_file(path : String, font : String = "null"):
|
|||||||
current_editor.show()
|
current_editor.show()
|
||||||
|
|
||||||
func generate_file_item(path : String , veditor : Control , inieditor : Control, csveditor : Control):
|
func generate_file_item(path : String , veditor : Control , inieditor : Control, csveditor : Control):
|
||||||
OpenFileName.set_text(path)
|
OpenFileName.set_text(path)
|
||||||
OpenFileList.add_item(path.get_file(),IconLoader.load_icon_from_name("file"),true)
|
OpenFileList.add_item(path.get_file(),IconLoader.load_icon_from_name("file"),true)
|
||||||
current_file_index = OpenFileList.get_item_count()-1
|
current_file_index = OpenFileList.get_item_count()-1
|
||||||
OpenFileList.set_item_metadata(current_file_index,[veditor,inieditor,csveditor])
|
OpenFileList.set_item_metadata(current_file_index,[veditor,inieditor,csveditor])
|
||||||
OpenFileList.select(OpenFileList.get_item_count()-1)
|
OpenFileList.select(OpenFileList.get_item_count()-1)
|
||||||
|
|
||||||
func open_in_vanillaeditor(path : String) -> Control:
|
func open_in_vanillaeditor(path : String) -> Control:
|
||||||
var editor = VanillaEditor.instance()
|
var editor = VanillaEditor.instance()
|
||||||
SplitEditorContainer.add_child(editor,true)
|
SplitEditorContainer.add_child(editor,true)
|
||||||
|
|
||||||
if current_editor and current_editor!=editor:
|
if current_editor and current_editor!=editor:
|
||||||
editor.show()
|
editor.show()
|
||||||
current_editor.hide()
|
current_editor.hide()
|
||||||
if current_csv_editor and current_csv_editor.visible:
|
if current_csv_editor and current_csv_editor.visible:
|
||||||
current_csv_editor.hide()
|
current_csv_editor.hide()
|
||||||
if current_ini_editor and current_ini_editor.visible:
|
if current_ini_editor and current_ini_editor.visible:
|
||||||
current_ini_editor.hide()
|
current_ini_editor.hide()
|
||||||
|
|
||||||
current_editor = editor
|
current_editor = editor
|
||||||
|
editor.connect("text_changed",self,"_on_vanillaeditor_text_changed")
|
||||||
|
|
||||||
editor.connect("text_changed",self,"_on_vanillaeditor_text_changed")
|
var current_file : File = File.new()
|
||||||
|
current_file.open(path,File.READ)
|
||||||
var current_file : File = File.new()
|
var current_content = ""
|
||||||
current_file.open(path,File.READ)
|
current_content = current_file.get_as_text()
|
||||||
var current_content = ""
|
|
||||||
current_content = current_file.get_as_text()
|
var last_modified = OS.get_datetime_from_unix_time(current_file.get_modified_time(path))
|
||||||
|
|
||||||
var last_modified = OS.get_datetime_from_unix_time(current_file.get_modified_time(path))
|
current_file.close()
|
||||||
|
editor.new_file_open(current_content,last_modified,current_file_path)
|
||||||
current_file.close()
|
update_list()
|
||||||
|
|
||||||
editor.new_file_open(current_content,last_modified,current_file_path)
|
if WrapBTN.get_selected_id() == 1:
|
||||||
|
current_editor.set_wrap_enabled(true)
|
||||||
update_list()
|
|
||||||
|
return editor
|
||||||
if WrapBTN.get_selected_id() == 1:
|
|
||||||
current_editor.set_wrap_enabled(true)
|
|
||||||
|
|
||||||
|
|
||||||
return editor
|
|
||||||
|
|
||||||
func open_in_inieditor(path : String) -> Control:
|
func open_in_inieditor(path : String) -> Control:
|
||||||
var extension = path.get_file().get_extension()
|
var extension = path.get_file().get_extension()
|
||||||
|
@ -3,6 +3,8 @@ extends Node
|
|||||||
|
|
||||||
const lastopenedfile_path : String = "res://addons/file-editor/lastopenedfiles.lastcfg"
|
const lastopenedfile_path : String = "res://addons/file-editor/lastopenedfiles.lastcfg"
|
||||||
|
|
||||||
|
var editor_plugin : EditorPlugin = EditorPlugin.new()
|
||||||
|
|
||||||
func _ready():
|
func _ready():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@ -40,3 +42,6 @@ func store_editor_fonts(file_name : String, font_path : String):
|
|||||||
file.load(lastopenedfile_path)
|
file.load(lastopenedfile_path)
|
||||||
file.set_value("Fonts",file_name,font_path)
|
file.set_value("Fonts",file_name,font_path)
|
||||||
file.save(lastopenedfile_path)
|
file.save(lastopenedfile_path)
|
||||||
|
|
||||||
|
func get_editor_font():
|
||||||
|
return editor_plugin.get_editor_interface().get_editor_settings().get_setting("interface/editor/code_font")
|
||||||
|
@ -25,7 +25,6 @@ var current_path = ""
|
|||||||
var current_filename = ""
|
var current_filename = ""
|
||||||
var Preview = load("res://addons/file-editor/scenes/Preview.tscn")
|
var Preview = load("res://addons/file-editor/scenes/Preview.tscn")
|
||||||
|
|
||||||
|
|
||||||
var search_flag = 0
|
var search_flag = 0
|
||||||
|
|
||||||
signal text_changed()
|
signal text_changed()
|
||||||
@ -39,6 +38,7 @@ func _ready():
|
|||||||
ReadOnly.set("custom_icons/unchecked",IconLoader.load_icon_from_name("edit"))
|
ReadOnly.set("custom_icons/unchecked",IconLoader.load_icon_from_name("edit"))
|
||||||
|
|
||||||
add_to_group("vanilla_editor")
|
add_to_group("vanilla_editor")
|
||||||
|
load_default_font()
|
||||||
|
|
||||||
func set_font(font_path : String) -> void:
|
func set_font(font_path : String) -> void:
|
||||||
var dynamic_font : DynamicFont = DynamicFont.new()
|
var dynamic_font : DynamicFont = DynamicFont.new()
|
||||||
@ -47,6 +47,11 @@ func set_font(font_path : String) -> void:
|
|||||||
dynamic_font.set_font_data(dynamic_font_data)
|
dynamic_font.set_font_data(dynamic_font_data)
|
||||||
TextEditor.set("custom_fonts/font",dynamic_font)
|
TextEditor.set("custom_fonts/font",dynamic_font)
|
||||||
|
|
||||||
|
func load_default_font() -> void:
|
||||||
|
var default_font = LastOpenedFiles.get_editor_font()
|
||||||
|
if default_font:
|
||||||
|
set_font(default_font)
|
||||||
|
|
||||||
func set_wrap_enabled(enabled:bool):
|
func set_wrap_enabled(enabled:bool):
|
||||||
TextEditor.set_wrap_enabled(enabled)
|
TextEditor.set_wrap_enabled(enabled)
|
||||||
TextEditor.update()
|
TextEditor.update()
|
||||||
|
Loading…
Reference in New Issue
Block a user