Concept Framework 2.0 documentation | Contents | Index |
Name | Type | Access | Version | Deprecated |
OnEnterNotify | event | public | version 1.0 | no |
OnEnterNotify(Sender, EventData) |
Sender | the event firing control |
EventData | contains a string, encapsulating X, Y, the crossing mode, the notify type and , the state of the modifiers keys (Alt, Ctrl, Shift, etc), all of these separated by ":" |
Generated when the pointer enters a window.
EventData can be evaluated like this : EventData=StrNumberSplit(EventData,":"); X=EventData[0]; Y=EventData[1]; Mode=EventData[2]; Detail=EventData[3]; state=EventData[4]; Mode(the crossing mode) can be one of this values: GDK_CROSSING_NORMAL, GDK_CROSSING_GRAB or GDK_CROSSING_UNGRAB. Detail(the kind of crossing that happened ) can be one of this values: GDK_NOTIFY_INFERIOR, GDK_NOTIFY_ANCESTOR, GDK_NOTIFY_VIRTUAL, GDK_NOTIFY_NONLINEAR or GDK_NOTIFY_NONLINEAR_VIRTUAL. |
Documented by Eduard Suica, generation time: Fri Jan 21 18:06:08 2011 GMT | (c)2011 RadGs Software |