forked from LGDG/ExampleProject
37 lines
987 B
GDScript
Executable File
37 lines
987 B
GDScript
Executable File
class_name DesktopWindow
|
|
extends Control
|
|
|
|
@export var desktop: Desktop # desktop
|
|
@export var maximized_windows: Control # maximized windows
|
|
@export var taskbar: Control # taskbar
|
|
|
|
var windowed_rect: Rect2
|
|
|
|
func _input(event: InputEvent):
|
|
if event is InputEventMouseButton:
|
|
if event.pressed:
|
|
if get_global_rect().has_point(get_global_mouse_position()):
|
|
desktop.current_window = self
|
|
get_parent().move_child(self, get_parent().get_child_count())
|
|
elif event is InputEventKey:
|
|
if event.keycode == KEY_F11:
|
|
if event.pressed:
|
|
if desktop.current_window == self:
|
|
toggle_maximized()
|
|
|
|
# toggle maximized
|
|
func toggle_maximized():
|
|
if anchors_preset == Control.PRESET_FULL_RECT:
|
|
set_anchors_and_offsets_preset(Control.PRESET_TOP_LEFT)
|
|
position = windowed_rect.position
|
|
size = windowed_rect.size
|
|
else:
|
|
windowed_rect = get_global_rect()
|
|
set_anchors_and_offsets_preset(Control.PRESET_FULL_RECT)
|
|
|
|
func close():
|
|
visible = false
|
|
|
|
func minimize():
|
|
visible = false
|