Enum ControlNotification
#[repr(i32)]pub enum ControlNotification {
Show 65 variants
RESIZED = 40,
MOUSE_ENTER = 41,
MOUSE_EXIT = 42,
MOUSE_ENTER_SELF = 60,
MOUSE_EXIT_SELF = 61,
FOCUS_ENTER = 43,
FOCUS_EXIT = 44,
THEME_CHANGED = 45,
SCROLL_BEGIN = 47,
SCROLL_END = 48,
LAYOUT_DIRECTION_CHANGED = 49,
TRANSFORM_CHANGED = 2_000,
LOCAL_TRANSFORM_CHANGED = 35,
DRAW = 30,
VISIBILITY_CHANGED = 31,
ENTER_CANVAS = 32,
EXIT_CANVAS = 33,
WORLD_2D_CHANGED = 36,
ENTER_TREE = 10,
EXIT_TREE = 11,
MOVED_IN_PARENT = 12,
READY = 13,
PAUSED = 14,
UNPAUSED = 15,
PHYSICS_PROCESS = 16,
PROCESS = 17,
PARENTED = 18,
UNPARENTED = 19,
SCENE_INSTANTIATED = 20,
DRAG_BEGIN = 21,
DRAG_END = 22,
PATH_RENAMED = 23,
CHILD_ORDER_CHANGED = 24,
INTERNAL_PROCESS = 25,
INTERNAL_PHYSICS_PROCESS = 26,
POST_ENTER_TREE = 27,
DISABLED = 28,
ENABLED = 29,
RESET_PHYSICS_INTERPOLATION = 2_001,
EDITOR_PRE_SAVE = 9_001,
EDITOR_POST_SAVE = 9_002,
WM_MOUSE_ENTER = 1_002,
WM_MOUSE_EXIT = 1_003,
WM_WINDOW_FOCUS_IN = 1_004,
WM_WINDOW_FOCUS_OUT = 1_005,
WM_CLOSE_REQUEST = 1_006,
WM_GO_BACK_REQUEST = 1_007,
WM_SIZE_CHANGED = 1_008,
WM_DPI_CHANGE = 1_009,
VP_MOUSE_ENTER = 1_010,
VP_MOUSE_EXIT = 1_011,
OS_MEMORY_WARNING = 2_009,
TRANSLATION_CHANGED = 2_010,
WM_ABOUT = 2_011,
CRASH = 2_012,
OS_IME_UPDATE = 2_013,
APPLICATION_RESUMED = 2_014,
APPLICATION_PAUSED = 2_015,
APPLICATION_FOCUS_IN = 2_016,
APPLICATION_FOCUS_OUT = 2_017,
TEXT_SERVER_CHANGED = 2_018,
POSTINITIALIZE = 0,
PREDELETE = 1,
EXTENSION_RELOADED = 2,
Unknown(i32),
}
Expand description
Variants§
RESIZED = 40
MOUSE_ENTER = 41
MOUSE_EXIT = 42
MOUSE_ENTER_SELF = 60
MOUSE_EXIT_SELF = 61
FOCUS_ENTER = 43
FOCUS_EXIT = 44
THEME_CHANGED = 45
SCROLL_BEGIN = 47
SCROLL_END = 48
LAYOUT_DIRECTION_CHANGED = 49
TRANSFORM_CHANGED = 2_000
LOCAL_TRANSFORM_CHANGED = 35
DRAW = 30
VISIBILITY_CHANGED = 31
ENTER_CANVAS = 32
EXIT_CANVAS = 33
WORLD_2D_CHANGED = 36
ENTER_TREE = 10
EXIT_TREE = 11
MOVED_IN_PARENT = 12
READY = 13
PAUSED = 14
UNPAUSED = 15
PHYSICS_PROCESS = 16
PROCESS = 17
PARENTED = 18
UNPARENTED = 19
SCENE_INSTANTIATED = 20
DRAG_BEGIN = 21
DRAG_END = 22
PATH_RENAMED = 23
CHILD_ORDER_CHANGED = 24
INTERNAL_PROCESS = 25
INTERNAL_PHYSICS_PROCESS = 26
POST_ENTER_TREE = 27
DISABLED = 28
ENABLED = 29
RESET_PHYSICS_INTERPOLATION = 2_001
EDITOR_PRE_SAVE = 9_001
EDITOR_POST_SAVE = 9_002
WM_MOUSE_ENTER = 1_002
WM_MOUSE_EXIT = 1_003
WM_WINDOW_FOCUS_IN = 1_004
WM_WINDOW_FOCUS_OUT = 1_005
WM_CLOSE_REQUEST = 1_006
WM_GO_BACK_REQUEST = 1_007
WM_SIZE_CHANGED = 1_008
WM_DPI_CHANGE = 1_009
VP_MOUSE_ENTER = 1_010
VP_MOUSE_EXIT = 1_011
OS_MEMORY_WARNING = 2_009
TRANSLATION_CHANGED = 2_010
WM_ABOUT = 2_011
CRASH = 2_012
OS_IME_UPDATE = 2_013
APPLICATION_RESUMED = 2_014
APPLICATION_PAUSED = 2_015
APPLICATION_FOCUS_IN = 2_016
APPLICATION_FOCUS_OUT = 2_017
TEXT_SERVER_CHANGED = 2_018
POSTINITIALIZE = 0
PREDELETE = 1
EXTENSION_RELOADED = 2
Unknown(i32)
Since Godot represents notifications as integers, it’s always possible that a notification outside the known types
is received. For example, the user can manually issue notifications through Object::notify()
.
This is also necessary if you develop an extension on a Godot version and want to be forward-compatible with newer versions. If Godot adds new notifications, they will be unknown to your extension, but you can still handle them.
Trait Implementations§
§impl Clone for ControlNotification
impl Clone for ControlNotification
§fn clone(&self) -> ControlNotification
fn clone(&self) -> ControlNotification
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ControlNotification
impl Debug for ControlNotification
§impl From<i32> for ControlNotification
impl From<i32> for ControlNotification
§fn from(enumerator: i32) -> ControlNotification
fn from(enumerator: i32) -> ControlNotification
Always succeeds, mapping unknown integers to the Unknown
variant.
§impl Hash for ControlNotification
impl Hash for ControlNotification
§impl Ord for ControlNotification
impl Ord for ControlNotification
§fn cmp(&self, other: &ControlNotification) -> Ordering
fn cmp(&self, other: &ControlNotification) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for ControlNotification
impl PartialEq for ControlNotification
§impl PartialOrd for ControlNotification
impl PartialOrd for ControlNotification
impl Copy for ControlNotification
impl Eq for ControlNotification
impl StructuralPartialEq for ControlNotification
Auto Trait Implementations§
impl Freeze for ControlNotification
impl RefUnwindSafe for ControlNotification
impl Send for ControlNotification
impl Sync for ControlNotification
impl Unpin for ControlNotification
impl UnwindSafe for ControlNotification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)