godot-xterm/addons/gut/UserFileViewer.gd

65 lines
1.1 KiB
GDScript
Raw Normal View History

2022-11-09 21:57:46 +01:00
extends Window
2022-11-09 21:57:46 +01:00
@onready var rtl = $TextDisplay/RichTextLabel
2023-01-20 23:34:39 +01:00
func _get_file_as_text(path):
var to_return = null
var f = FileAccess.open(path, FileAccess.READ)
2023-01-20 23:34:39 +01:00
if f != null:
to_return = f.get_as_text()
else:
2023-01-20 23:34:39 +01:00
to_return = str("ERROR: Could not open file. Error code ", FileAccess.get_open_error())
return to_return
2023-01-20 23:34:39 +01:00
func _ready():
rtl.clear()
2023-01-20 23:34:39 +01:00
func _on_OpenFile_pressed():
$FileDialog.popup_centered()
2023-01-20 23:34:39 +01:00
func _on_FileDialog_file_selected(path):
show_file(path)
2023-01-20 23:34:39 +01:00
func _on_Close_pressed():
self.hide()
2023-01-20 23:34:39 +01:00
func show_file(path):
var text = _get_file_as_text(path)
2023-01-20 23:34:39 +01:00
if text == "":
text = "<Empty File>"
rtl.set_text(text)
self.window_title = path
2023-01-20 23:34:39 +01:00
func show_open():
self.popup_centered()
$FileDialog.popup_centered()
2023-01-20 23:34:39 +01:00
func get_rich_text_label():
return $TextDisplay/RichTextLabel
2023-01-20 23:34:39 +01:00
func _on_Home_pressed():
rtl.scroll_to_line(0)
2023-01-20 23:34:39 +01:00
func _on_End_pressed():
2023-01-20 23:34:39 +01:00
rtl.scroll_to_line(rtl.get_line_count() - 1)
func _on_Copy_pressed():
2024-01-06 11:27:15 +01:00
return
# OS.clipboard = rtl.text
2023-01-20 23:34:39 +01:00
func _on_file_dialog_visibility_changed():
if rtl.text.length() == 0 and not $FileDialog.visible:
self.hide()