Ashet OS

enum: ashet.WindowEvent.Type

Items

widget_notify = 0
key_press = 1
key_release = 2
mouse_enter = 3
mouse_leave = 4
mouse_motion = 7
mouse_button_press = 6
mouse_button_release = 5
window_close = 8

The user requested the window to be closed.

window_minimize = 9

The window was minimized and is not visible anymore.

window_restore = 10

The window was restored from minimized state.

window_moving = 11

The window is currently moving on the screen. Query window.bounds to get the new position.

window_moved = 12

The window was moved on the screen. Query window.bounds to get the new position.

window_resizing = 13

The window size is currently changing. Query window.bounds to get the new size.

window_resized = 14

The window size changed. Query window.bounds to get the new size.