Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Window managment constants (WM_xxxx, ...)" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2013-11-19 16:34:28 -0900 (Tue, 19 Nov 2013) $" revision: "$Revision: 93466 $" class interface WEL_WINDOW_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access generating_type: TYPE [detachable WEL_WINDOW_CONSTANTS] -- Type of current object -- (type of which it is a direct instance) -- (from ANY) ensure -- from ANY generating_type_not_void: Result /= Void generator: STRING_8 -- Name of current object's generating class -- (base class of the type of which it is a direct instance) -- (from ANY) ensure -- from ANY generator_not_void: Result /= Void generator_not_empty: not Result.is_empty feature -- Comparison frozen deep_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void -- or attached to isomorphic object structures? -- (from ANY) ensure -- from ANY instance_free: class shallow_implies_deep: standard_equal (a, b) implies Result both_or_none_void: (a = Void) implies (Result = (b = Void)) same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b)) symmetric: Result implies deep_equal (b, a) frozen equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached -- to objects considered equal? -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.is_equal (b)) frozen is_deep_equal alias "≡≡≡" (other: WEL_WINDOW_CONSTANTS): BOOLEAN -- Are Current and other attached to isomorphic object structures? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY shallow_implies_deep: standard_is_equal (other) implies Result same_type: Result implies same_type (other) symmetric: Result implies other.is_deep_equal (Current) is_equal (other: WEL_WINDOW_CONSTANTS): BOOLEAN -- Is other attached to an object considered -- equal to current object? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY symmetric: Result implies other ~ Current consistent: standard_is_equal (other) implies Result frozen standard_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached to -- field-by-field identical objects of the same type? -- Always uses default object comparison criterion. -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.standard_is_equal (b)) frozen standard_is_equal alias "" (other: WEL_WINDOW_CONSTANTS): BOOLEAN -- Is other attached to an object of the same type -- as current object, and field-by-field identical to it? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY same_type: Result implies same_type (other) symmetric: Result implies other.standard_is_equal (Current) feature -- Status report conforms_to (other: ANY): BOOLEAN -- Does type of current object conform to type -- of other (as per Eiffel: The Language, chapter 13)? -- (from ANY) require -- from ANY other_not_void: other /= Void same_type (other: ANY): BOOLEAN -- Is type of current object identical to type of other? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY definition: Result = (conforms_to (other) and other.conforms_to (Current)) feature -- Duplication copy (other: WEL_WINDOW_CONSTANTS) -- Update current object using fields of object attached -- to other, so as to yield equal objects. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_equal: Current ~ other frozen deep_copy (other: WEL_WINDOW_CONSTANTS) -- Effect equivalent to that of: -- `copy` (other . `deep_twin`) -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY deep_equal: deep_equal (Current, other) frozen deep_twin: WEL_WINDOW_CONSTANTS -- New object structure recursively duplicated from Current. -- (from ANY) ensure -- from ANY deep_twin_not_void: Result /= Void deep_equal: deep_equal (Current, Result) frozen standard_copy (other: WEL_WINDOW_CONSTANTS) -- Copy every field of other onto corresponding field -- of current object. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_standard_equal: standard_is_equal (other) frozen standard_twin: WEL_WINDOW_CONSTANTS -- New object field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) ensure -- from ANY standard_twin_not_void: Result /= Void equal: standard_equal (Result, Current) frozen twin: WEL_WINDOW_CONSTANTS -- New object equal to Current -- `twin` calls `copy`; to change copying/twinning semantics, redefine `copy`. -- (from ANY) ensure -- from ANY twin_not_void: Result /= Void is_equal: Result ~ Current feature -- Basic operations frozen default: detachable WEL_WINDOW_CONSTANTS -- Default value of object's type -- (from ANY) frozen default_pointer: POINTER -- Default value of type POINTER -- (Avoid the need to write p.`default` for -- some p of type POINTER.) -- (from ANY) ensure -- from ANY instance_free: class default_rescue -- Process exception for routines with no Rescue clause. -- (Default: do nothing.) -- (from ANY) frozen do_nothing -- Execute a null action. -- (from ANY) ensure -- from ANY instance_free: class feature -- Extended window styles Cw_usedefault: INTEGER_32 = -2147483648 -- Declared in Windows as CW_USEDEFAULT Ws_ex_acceptfiles: INTEGER_32 = 16 -- Declared in Windows as WS_EX_ACCEPTFILES Ws_ex_clientedge: INTEGER_32 = 512 -- Declared in Windows as WS_EX_CLIENTEDGE Ws_ex_contexthelp: INTEGER_32 = 1024 -- Declared in Windows as WS_EX_CONTEXTHELP Ws_ex_controlparent: INTEGER_32 = 65536 -- Declared in Windows as WS_EX_CONTROLPARENT Ws_ex_dlgmodalframe: INTEGER_32 = 1 -- Declared in Windows as WS_EX_DLGMODALFRAME Ws_ex_left: INTEGER_32 = 0 -- Declared in Windows as WS_EX_LEFT Ws_ex_leftscrollbar: INTEGER_32 = 16384 -- Declared in Windows as WS_EX_LEFTSCROLLBAR Ws_ex_ltrreading: INTEGER_32 = 0 -- Declared in Windows as WS_EX_LTRREADING Ws_ex_mdichild: INTEGER_32 = 64 -- Declared in Windows as WS_EX_MDICHILD Ws_ex_noparentnotify: INTEGER_32 = 4 -- Declared in Windows as WS_EX_NOPARENTNOTIFY Ws_ex_overlappedwindow: INTEGER_32 = 768 -- Declared in Windows as WS_EX_OVERLAPPEDWINDOW Ws_ex_palettewindow: INTEGER_32 = 392 -- Declared in Windows as WS_EX_PALETTEWINDOW Ws_ex_right: INTEGER_32 = 4096 -- Declared in Windows as WS_EX_RIGHT Ws_ex_rightscrollbar: INTEGER_32 = 0 -- Declared in Windows as WS_EX_RIGHTSCROLLBAR Ws_ex_rtlreading: INTEGER_32 = 8192 -- Declared in Windows as WS_EX_RTLREADING Ws_ex_staticedge: INTEGER_32 = 131072 -- Declared in Windows as WS_EX_STATICEDGE Ws_ex_toolwindow: INTEGER_32 = 128 -- Declared in Windows as WS_EX_TOOLWINDOW Ws_ex_topmost: INTEGER_32 = 8 -- Declared in Windows as WS_EX_TOPMOST Ws_ex_transparent: INTEGER_32 = 32 -- Declared in Windows as WS_EX_TRANSPARENT Ws_ex_windowedge: INTEGER_32 = 256 -- Declared in Windows as WS_EX_WINDOWEDGE feature -- Output Io: STD_FILES -- Handle to standard file setup -- (from ANY) ensure -- from ANY instance_free: class io_not_void: Result /= Void out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY out_not_void: Result /= Void print (o: detachable ANY) -- Write terse external representation of o -- on standard output. -- (from ANY) ensure -- from ANY instance_free: class frozen tagged_out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY tagged_out_not_void: Result /= Void feature -- Platform Operating_environment: OPERATING_ENVIRONMENT -- Objects available from the operating system -- (from ANY) ensure -- from ANY instance_free: class operating_environment_not_void: Result /= Void feature -- Reflected Window Message IDs. Defined in OleCtl.h Ocm__base: INTEGER_32 -- Declared in Windows as OCM__BASE. Ocm_chartoitem: INTEGER_32 -- Declared in Windows as OCM_CHARTOITEM. Ocm_command: INTEGER_32 -- Declared in Windows as OCM_COMMAND. Ocm_compareitem: INTEGER_32 -- Declared in Windows as OCM_COMPAREITEM. Ocm_ctlcolor: INTEGER_32 -- Declared in Windows as OCM_CTLCOLOR. Ocm_ctlcolorbtn: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORBTN. Ocm_ctlcolordlg: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORDLG. Ocm_ctlcoloredit: INTEGER_32 -- Declared in Windows as OCM_CTLCOLOREDIT. Ocm_ctlcolorlistbox: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORLISTBOX. Ocm_ctlcolormsgbox: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORMSGBOX. Ocm_ctlcolorscrollbar: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORSCROLLBAR. Ocm_ctlcolorstatic: INTEGER_32 -- Declared in Windows as OCM_CTLCOLORSTATIC. Ocm_deleteitem: INTEGER_32 -- Declared in Windows as OCM_DELETEITEM. Ocm_drawitem: INTEGER_32 -- Declared in Windows as OCM_DRAWITEM. Ocm_hscroll: INTEGER_32 -- Declared in Windows as OCM_HSCROLL. Ocm_measureitem: INTEGER_32 -- Declared in Windows as OCM_MEASUREITEM. Ocm_notify: INTEGER_32 -- Declared in Windows as OCM_NOTIFY. Ocm_parentnotify: INTEGER_32 -- Declared in Windows as OCM_PARENTNOTIFY. Ocm_vkeytoitem: INTEGER_32 -- Declared in Windows as OCM_VKEYTOITEM. Ocm_vscroll: INTEGER_32 -- Declared in Windows as OCM_VSCROLL. feature -- Show Window (SW) constants Sw_hide: INTEGER_32 = 0 -- Declared in Windows as SW_HIDE Sw_minimize: INTEGER_32 = 6 -- Declared in Windows as SW_MINIMIZE Sw_otherunzoom: INTEGER_32 = 4 -- Declared in Windows as SW_OTHERUNZOOM Sw_otherzoom: INTEGER_32 = 2 -- Declared in Windows as SW_OTHERZOOM Sw_parentclosing: INTEGER_32 = 1 -- Declared in Windows as SW_PARENTCLOSING Sw_parentopening: INTEGER_32 = 3 -- Declared in Windows as SW_PARENTOPENING Sw_restore: INTEGER_32 = 9 -- Declared in Windows as SW_RESTORE Sw_show: INTEGER_32 = 5 -- Declared in Windows as SW_SHOW Sw_showmaximized: INTEGER_32 = 3 -- Declared in Windows as SW_SHOWMAXIMIZED Sw_showminimized: INTEGER_32 = 2 -- Declared in Windows as SW_SHOWMINIMIZED Sw_showminnoactive: INTEGER_32 = 7 -- Declared in Windows as SW_SHOWMINNOACTIVE Sw_showna: INTEGER_32 = 8 -- Declared in Windows as SW_SHOWNA Sw_shownoactivate: INTEGER_32 = 4 -- Declared in Windows as SW_SHOWNOACTIVATE Sw_shownormal: INTEGER_32 = 1 -- Declared in Windows as SW_SHOWNORMAL feature -- Show Window Position (SWP) constants Swp_drawframe: INTEGER_32 = 32 -- Declared in Windows as SWP_FRAMECHANGED -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `swp_framechanged`. Swp_framechanged: INTEGER_32 = 32 -- Declared in Windows as SWP_FRAMECHANGED -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `swp_drawframe`. Swp_hidewindow: INTEGER_32 = 128 -- Declared in Windows as SWP_HIDEWINDOW Swp_noactivate: INTEGER_32 = 16 -- Declared in Windows as SWP_NOACTIVATE Swp_nocopybits: INTEGER_32 = 256 -- Declared in Windows as SWP_NOCOPYBITS Swp_nomove: INTEGER_32 = 2 -- Declared in Windows as SWP_NOMOVE Swp_noownerzorder: INTEGER_32 = 512 -- Declared in Windows as SWP_NOOWNERZORDER -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `swp_noreposition`. Swp_noredraw: INTEGER_32 = 8 -- Declared in Windows as SWP_NOREDRAW Swp_noreposition: INTEGER_32 = 512 -- Declared in Windows as SWP_NOOWNERZORDER -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `swp_noownerzorder`. Swp_nosendchanging: INTEGER_32 = 1024 -- Declared in Windows as SWP_NOSENDCHANGING Swp_nosize: INTEGER_32 = 1 -- Declared in Windows as SWP_NOSIZE Swp_nozorder: INTEGER_32 = 4 -- Declared in Windows as SWP_NOZORDER Swp_showwindow: INTEGER_32 = 64 -- Declared in Windows as SWP_SHOWWINDOW feature -- Window Activate Mode Wa_active: INTEGER_32 = 1 -- Activated by some method other than a mouse click (for -- example, by a call to the SetActiveWindow function or by use -- of the keyboard interface to select the window). -- -- Declared in Windows as WA_ACTIVE Wa_clickactive: INTEGER_32 = 2 -- Activated by a mouse click. -- -- Declared in Windows as WA_CLICKACTIVE Wa_inactive: INTEGER_32 = 0 -- Deactivated. -- -- Declared in Windows as WA_INACTIVE feature -- Window Messages Wm_activate: INTEGER_32 = 6 -- Declared in Windows as WM_ACTIVATE Wm_activateapp: INTEGER_32 = 28 -- Declared in Windows as WM_ACTIVATEAPP Wm_afxfirst: INTEGER_32 = 864 -- Declared in Windows as WM_AFXFIRST Wm_afxlast: INTEGER_32 = 895 -- Declared in Windows as WM_AFXLAST Wm_app: INTEGER_32 = 32768 -- Declared in Windows as WM_APP Wm_appcommand: INTEGER_32 = 793 -- Declared in Windows as WM_APPCOMMAND Wm_askcbformatname: INTEGER_32 = 780 -- Declared in Windows as WM_ASKCBFORMATNAME Wm_canceljournal: INTEGER_32 = 75 -- Declared in Windows as WM_CANCELJOURNAL Wm_cancelmode: INTEGER_32 = 31 -- The WM_CANCELMODE message is sent to cancel certain modes, such as mouse -- capture. -- For example, the system sends this message to the active window when a dialog -- box or message box is displayed. Certain functions also send this message -- explicitly to the specified window regardless of whether it is the active -- window. For example, the EnableWindow function sends this message when -- disabling the specified window. -- -- Declared in Windows as WM_CANCELMODE Wm_capturechanged: INTEGER_32 = 533 -- Declared in Windows as WM_CAPTURECHANGED Wm_changecbchain: INTEGER_32 = 781 -- Declared in Windows as WM_CHANGECBCHAIN Wm_changeuistate: INTEGER_32 = 295 -- Declared in Windows as WM_CHANGEUISTATE Wm_char: INTEGER_32 = 258 -- Declared in Windows as WM_CHAR Wm_chartoitem: INTEGER_32 = 47 -- Declared in Windows as WM_CHARTOITEM Wm_childactivate: INTEGER_32 = 34 -- Declared in Windows as WM_CHILDACTIVATE Wm_clear: INTEGER_32 = 771 -- Declared in Windows as WM_CLEAR Wm_close: INTEGER_32 = 16 -- Declared in Windows as WM_CLOSE Wm_command: INTEGER_32 = 273 -- Declared in Windows as WM_COMMAND Wm_commnotify: INTEGER_32 = 68 -- Declared in Windows as WM_COMMNOTIFY Wm_compacting: INTEGER_32 = 65 -- Declared in Windows as WM_COMPACTING Wm_compareitem: INTEGER_32 = 57 -- Declared in Windows as WM_COMPAREITEM Wm_contextmenu: INTEGER_32 = 123 -- Declared in Windows as WM_CONTEXTMENU Wm_copy: INTEGER_32 = 769 -- Declared in Windows as WM_COPY Wm_copydata: INTEGER_32 = 74 -- Declared in Windows as WM_COPYDATA Wm_create: INTEGER_32 = 1 -- Declared in Windows as WM_CREATE Wm_ctlcolor: INTEGER_32 = 25 -- Declared in Windows as WM_CTLCOLOR Wm_ctlcolorbtn: INTEGER_32 = 309 -- Declared in Windows as WM_CTLCOLORBTN Wm_ctlcolordlg: INTEGER_32 = 310 -- Declared in Windows as WM_CTLCOLORDLG Wm_ctlcoloredit: INTEGER_32 = 307 -- Declared in Windows as WM_CTLCOLOREDIT Wm_ctlcolorlistbox: INTEGER_32 = 308 -- Declared in Windows as WM_CTLCOLORLISTBOX Wm_ctlcolormsgbox: INTEGER_32 = 306 -- Declared in Windows as WM_CTLCOLORMSGBOX Wm_ctlcolorscrollbar: INTEGER_32 = 311 -- Declared in Windows as WM_CTLCOLORSCROLLBAR Wm_ctlcolorstatic: INTEGER_32 = 312 -- Declared in Windows as WM_CTLCOLORSTATIC Wm_cut: INTEGER_32 = 768 -- Declared in Windows as WM_CUT Wm_deadchar: INTEGER_32 = 259 -- Declared in Windows as WM_DEADCHAR Wm_deleteitem: INTEGER_32 = 45 -- Declared in Windows as WM_DELETEITEM Wm_destroy: INTEGER_32 = 2 -- Declared in Windows as WM_DESTROY Wm_destroyclipboard: INTEGER_32 = 775 -- Declared in Windows as WM_DESTROYCLIPBOARD Wm_devicechange: INTEGER_32 = 537 -- Declared in Windows as WM_DEVICECHANGE Wm_devmodechange: INTEGER_32 = 27 -- Declared in Windows as WM_DEVMODECHANGE Wm_displaychange: INTEGER_32 = 126 -- Declared in Windows as WM_DISPLAYCHANGE Wm_drawclipboard: INTEGER_32 = 776 -- Declared in Windows as WM_DRAWCLIPBOARD Wm_drawitem: INTEGER_32 = 43 -- Declared in Windows as WM_DRAWITEM Wm_dropfiles: INTEGER_32 = 563 -- Declared in Windows as WM_DROPFILES Wm_enable: INTEGER_32 = 10 -- Declared in Windows as WM_ENABLE Wm_endsession: INTEGER_32 = 22 -- Declared in Windows as WM_ENDSESSION Wm_enteridle: INTEGER_32 = 289 -- Declared in Windows as WM_ENTERIDLE Wm_entermenuloop: INTEGER_32 = 529 -- Declared in Windows as WM_ENTERMENULOOP Wm_entersizemove: INTEGER_32 = 561 -- Declared in Windows as WM_ENTERSIZEMOVE Wm_erasebkgnd: INTEGER_32 = 20 -- Declared in Windows as WM_ERASEBKGND Wm_exitmenuloop: INTEGER_32 = 530 -- Declared in Windows as WM_EXITMENULOOP Wm_exitsizemove: INTEGER_32 = 562 -- Declared in Windows as WM_EXITSIZEMOVE Wm_fontchange: INTEGER_32 = 29 -- Declared in Windows as WM_FONTCHANGE Wm_forwardmsg: INTEGER_32 = 895 -- Declared in Windows as WM_FORWARDMSG -- Used to forward a message to another window for processing. -- WPARAM - DWORD dwUserData - defined by user -- LPARAM - LPMSG pMsg - a pointer to the MSG structure -- return value - 0 if the message was not processed, nonzero if it was. Wm_getdlgcode: INTEGER_32 = 135 -- Declared in Windows as WM_GETDLGCODE Wm_getfont: INTEGER_32 = 49 -- Declared in Windows as WM_GETFONT Wm_gethotkey: INTEGER_32 = 51 -- Declared in Windows as WM_GETHOTKEY Wm_geticon: INTEGER_32 = 127 -- Declared in Windows as WM_GETICON Wm_getminmaxinfo: INTEGER_32 = 36 -- Declared in Windows as WM_GETMINMAXINFO Wm_getobject: INTEGER_32 = 61 -- Declared in Windows as WM_GETOBJECT Wm_gettext: INTEGER_32 = 13 -- Declared in Windows as WM_GETTEXT Wm_gettextlength: INTEGER_32 = 14 -- Declared in Windows as WM_GETTEXTLENGTH Wm_handheldfirst: INTEGER_32 = 856 -- Declared in Windows as WM_HANDHELDFIRST Wm_handheldlast: INTEGER_32 = 863 -- Declared in Windows as WM_HANDHELDLAST Wm_help: INTEGER_32 = 83 -- Declared in Windows as WM_HELP Wm_hotkey: INTEGER_32 = 786 -- Declared in Windows as WM_HOTKEY Wm_hscroll: INTEGER_32 = 276 -- Declared in Windows as WM_HSCROLL Wm_hscrollclipboard: INTEGER_32 = 782 -- Declared in Windows as WM_HSCROLLCLIPBOARD Wm_iconerasebkgnd: INTEGER_32 = 39 -- Declared in Windows as WM_ICONERASEBKGND Wm_ime_char: INTEGER_32 = 646 -- Declared in Windows as WM_IME_CHAR Wm_ime_composition: INTEGER_32 = 271 -- Declared in Windows as WM_IME_COMPOSITION Wm_ime_compositionfull: INTEGER_32 = 644 -- Declared in Windows as WM_IME_COMPOSITIONFULL Wm_ime_control: INTEGER_32 = 643 -- Declared in Windows as WM_IME_CONTROL Wm_ime_endcomposition: INTEGER_32 = 270 -- Declared in Windows as WM_IME_ENDCOMPOSITION Wm_ime_keydown: INTEGER_32 = 656 -- Declared in Windows as WM_IME_KEYDOWN wm_ime_keylast: INTEGER_32 -- Declared in Windows as WM_IME_KEYLAST Wm_ime_keyup: INTEGER_32 = 657 -- Declared in Windows as WM_IME_KEYUP Wm_ime_notify: INTEGER_32 = 642 -- Declared in Windows as WM_IME_NOTIFY Wm_ime_request: INTEGER_32 = 648 -- Declared in Windows as WM_IME_REQUEST Wm_ime_select: INTEGER_32 = 645 -- Declared in Windows as WM_IME_SELECT Wm_ime_setcontext: INTEGER_32 = 641 -- Declared in Windows as WM_IME_SETCONTEXT Wm_ime_startcomposition: INTEGER_32 = 269 -- Declared in Windows as WM_IME_STARTCOMPOSITION Wm_initdialog: INTEGER_32 = 272 -- Declared in Windows as WM_INITDIALOG Wm_initmenu: INTEGER_32 = 278 -- Declared in Windows as WM_INITMENU Wm_initmenupopup: INTEGER_32 = 279 -- Declared in Windows as WM_INITMENUPOPUP Wm_inputlangchange: INTEGER_32 = 81 -- Declared in Windows as WM_INPUTLANGCHANGE Wm_inputlangchangerequest: INTEGER_32 = 80 -- Declared in Windows as WM_INPUTLANGCHANGEREQUEST Wm_keydown: INTEGER_32 = 256 -- Declared in Windows as WM_KEYDOWN Wm_keyfirst: INTEGER_32 = 256 -- Declared in Windows as WM_KEYFIRST wm_keylast: INTEGER_32 -- Declared in Windows as WM_KEYLAST Wm_keyup: INTEGER_32 = 257 -- Declared in Windows as WM_KEYUP Wm_killfocus: INTEGER_32 = 8 -- Declared in Windows as WM_KILLFOCUS Wm_lbuttondblclk: INTEGER_32 = 515 -- Declared in Windows as WM_LBUTTONDBLCLK Wm_lbuttondown: INTEGER_32 = 513 -- Declared in Windows as WM_LBUTTONDOWN Wm_lbuttonup: INTEGER_32 = 514 -- Declared in Windows as WM_LBUTTONUP Wm_mbuttondblclk: INTEGER_32 = 521 -- Declared in Windows as WM_MBUTTONDBLCLK Wm_mbuttondown: INTEGER_32 = 519 -- Declared in Windows as WM_MBUTTONDOWN Wm_mbuttonup: INTEGER_32 = 520 -- Declared in Windows as WM_MBUTTONUP Wm_mdiactivate: INTEGER_32 = 546 -- Declared in Windows as WM_MDIACTIVATE Wm_mdicascade: INTEGER_32 = 551 -- Declared in Windows as WM_MDICASCADE Wm_mdicreate: INTEGER_32 = 544 -- Declared in Windows as WM_MDICREATE Wm_mdidestroy: INTEGER_32 = 545 -- Declared in Windows as WM_MDIDESTROY Wm_mdigetactive: INTEGER_32 = 553 -- Declared in Windows as WM_MDIGETACTIVE Wm_mdiiconarrange: INTEGER_32 = 552 -- Declared in Windows as WM_MDIICONARRANGE Wm_mdimaximize: INTEGER_32 = 549 -- Declared in Windows as WM_MDIMAXIMIZE Wm_mdinext: INTEGER_32 = 548 -- Declared in Windows as WM_MDINEXT Wm_mdirefreshmenu: INTEGER_32 = 564 -- Declared in Windows as WM_MDIREFRESHMENU Wm_mdirestore: INTEGER_32 = 547 -- Declared in Windows as WM_MDIRESTORE Wm_mdisetmenu: INTEGER_32 = 560 -- Declared in Windows as WM_MDISETMENU Wm_mditile: INTEGER_32 = 550 -- Declared in Windows as WM_MDITILE Wm_measureitem: INTEGER_32 = 44 -- Declared in Windows as WM_MEASUREITEM Wm_menuchar: INTEGER_32 = 288 -- Declared in Windows as WM_MENUCHAR Wm_menucommand: INTEGER_32 = 294 -- Declared in Windows as WM_MENUCOMMAND Wm_menudrag: INTEGER_32 = 291 -- Declared in Windows as WM_MENUDRAG Wm_menugetobject: INTEGER_32 = 292 -- Declared in Windows as WM_MENUGETOBJECT Wm_menurbuttonup: INTEGER_32 = 290 -- Declared in Windows as WM_MENURBUTTONUP Wm_menuselect: INTEGER_32 = 287 -- Declared in Windows as WM_MENUSELECT Wm_mouseactivate: INTEGER_32 = 33 -- Declared in Windows as WM_MOUSEACTIVATE Wm_mousefirst: INTEGER_32 = 512 -- Declared in Windows as WM_MOUSEFIRST Wm_mousehover: INTEGER_32 = 673 -- Require Windows98, Windows NT 4.0 or later -- Declared in Windows as WM_MOUSEHOVER wm_mouselast: INTEGER_32 -- Declared in Windows as WM_MOUSELAST Wm_mouseleave: INTEGER_32 = 675 -- Require Windows98, Windows NT 4.0 or later -- Declared in Windows as WM_MOUSELEAVE Wm_mousemove: INTEGER_32 = 512 -- Declared in Windows as WM_MOUSEMOVE Wm_mousewheel: INTEGER_32 = 522 -- Declared in Windows as WM_MOUSEWHEEL Wm_move: INTEGER_32 = 3 -- Declared in Windows as WM_MOVE Wm_moving: INTEGER_32 = 534 -- Declared in Windows as WM_MOVING Wm_ncactivate: INTEGER_32 = 134 -- Declared in Windows as WM_NCACTIVATE Wm_nccalcsize: INTEGER_32 = 131 -- Declared in Windows as WM_NCCALCSIZE Wm_nccreate: INTEGER_32 = 129 -- Declared in Windows as WM_NCCREATE Wm_ncdestroy: INTEGER_32 = 130 -- Declared in Windows as WM_NCDESTROY Wm_nchittest: INTEGER_32 = 132 -- Declared in Windows as WM_NCHITTEST Wm_nclbuttondblclk: INTEGER_32 = 163 -- Declared in Windows as WM_NCLBUTTONDBLCLK Wm_nclbuttondown: INTEGER_32 = 161 -- Declared in Windows as WM_NCLBUTTONDOWN Wm_nclbuttonup: INTEGER_32 = 162 -- Declared in Windows as WM_NCLBUTTONUP Wm_ncmbuttondblclk: INTEGER_32 = 169 -- Declared in Windows as WM_NCMBUTTONDBLCLK Wm_ncmbuttondown: INTEGER_32 = 167 -- Declared in Windows as WM_NCMBUTTONDOWN Wm_ncmbuttonup: INTEGER_32 = 168 -- Declared in Windows as WM_NCMBUTTONUP Wm_ncmousehover: INTEGER_32 = 672 -- Require Windows98, Windows NT 5.0 or later -- Declared in Windows as WM_NCMOUSEHOVER Wm_ncmouseleave: INTEGER_32 = 674 -- Require Windows98, Windows NT 5.0 or later -- Declared in Windows as WM_NCMOUSELEAVE Wm_ncmousemove: INTEGER_32 = 160 -- Declared in Windows as WM_NCMOUSEMOVE Wm_ncpaint: INTEGER_32 = 133 -- Declared in Windows as WM_NCPAINT Wm_ncrbuttondblclk: INTEGER_32 = 166 -- Declared in Windows as WM_NCRBUTTONDBLCLK Wm_ncrbuttondown: INTEGER_32 = 164 -- Declared in Windows as WM_NCRBUTTONDOWN Wm_ncrbuttonup: INTEGER_32 = 165 -- Declared in Windows as WM_NCRBUTTONUP Wm_ncxbuttondblclk: INTEGER_32 = 173 -- Declared in Windows as WM_NCXBUTTONDBLCLK Wm_ncxbuttondown: INTEGER_32 = 171 -- Declared in Windows as WM_NCXBUTTONDOWN Wm_ncxbuttonup: INTEGER_32 = 172 -- Declared in Windows as WM_NCXBUTTONUP Wm_nextdlgctl: INTEGER_32 = 40 -- Declared in Windows as WM_NEXTDLGCTL Wm_nextmenu: INTEGER_32 = 531 -- Declared in Windows as WM_NEXTMENU Wm_notify: INTEGER_32 = 78 -- Declared in Windows as WM_NOTIFY Wm_notifyformat: INTEGER_32 = 85 -- Declared in Windows as WM_NOTIFYFORMAT Wm_null: INTEGER_32 = 0 -- Declared in Windows as WM_NULL Wm_paint: INTEGER_32 = 15 -- Declared in Windows as WM_PAINT Wm_paintclipboard: INTEGER_32 = 777 -- Declared in Windows as WM_PAINTCLIPBOARD Wm_painticon: INTEGER_32 = 38 -- Declared in Windows as WM_PAINTICON Wm_palettechanged: INTEGER_32 = 785 -- Declared in Windows as WM_PALETTECHANGED Wm_paletteischanging: INTEGER_32 = 784 -- Declared in Windows as WM_PALETTEISCHANGING Wm_parentnotify: INTEGER_32 = 528 -- Declared in Windows as WM_PARENTNOTIFY Wm_paste: INTEGER_32 = 770 -- Declared in Windows as WM_PASTE Wm_penwinfirst: INTEGER_32 = 896 -- Declared in Windows as WM_PENWINFIRST Wm_penwinlast: INTEGER_32 = 911 -- Declared in Windows as WM_PENWINLAST Wm_power: INTEGER_32 = 72 -- Declared in Windows as WM_POWER Wm_powerbroadcast: INTEGER_32 = 536 -- Declared in Windows as WM_POWERBROADCAST Wm_print: INTEGER_32 = 791 -- Declared in Windows as WM_PRINT Wm_printclient: INTEGER_32 = 792 -- Declared in Windows as WM_PRINTCLIENT Wm_querydragicon: INTEGER_32 = 55 -- Declared in Windows as WM_QUERYDRAGICON Wm_queryendsession: INTEGER_32 = 17 -- Declared in Windows as WM_QUERYENDSESSION Wm_querynewpalette: INTEGER_32 = 783 -- Declared in Windows as WM_QUERYNEWPALETTE Wm_queryopen: INTEGER_32 = 19 -- Declared in Windows as WM_QUERYOPEN Wm_queryuistate: INTEGER_32 = 297 -- Declared in Windows as WM_QUERYUISTATE Wm_queuesync: INTEGER_32 = 35 -- Declared in Windows as WM_QUEUESYNC Wm_quit: INTEGER_32 = 18 -- Declared in Windows as WM_QUIT Wm_rbuttondblclk: INTEGER_32 = 518 -- Declared in Windows as WM_RBUTTONDBLCLK Wm_rbuttondown: INTEGER_32 = 516 -- Declared in Windows as WM_RBUTTONDOWN Wm_rbuttonup: INTEGER_32 = 517 -- Declared in Windows as WM_RBUTTONUP Wm_renderallformats: INTEGER_32 = 774 -- Declared in Windows as WM_RENDERALLFORMATS Wm_renderformat: INTEGER_32 = 773 -- Declared in Windows as WM_RENDERFORMAT Wm_setcursor: INTEGER_32 = 32 -- Declared in Windows as WM_SETCURSOR Wm_setfocus: INTEGER_32 = 7 -- Declared in Windows as WM_SETFOCUS Wm_setfont: INTEGER_32 = 48 -- Declared in Windows as WM_SETFONT Wm_sethotkey: INTEGER_32 = 50 -- Declared in Windows as WM_SETHOTKEY Wm_seticon: INTEGER_32 = 128 -- Declared in Windows as WM_SETICON Wm_setredraw: INTEGER_32 = 11 -- Declared in Windows as WM_SETREDRAW Wm_settext: INTEGER_32 = 12 -- Declared in Windows as WM_SETTEXT Wm_settingchange: INTEGER_32 = 26 -- Declared in Windows as WM_WININICHANGE -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `wm_wininichange`. Wm_showwindow: INTEGER_32 = 24 -- Declared in Windows as WM_SHOWWINDOW Wm_size: INTEGER_32 = 5 -- Declared in Windows as WM_SIZE Wm_sizeclipboard: INTEGER_32 = 779 -- Declared in Windows as WM_SIZECLIPBOARD Wm_sizing: INTEGER_32 = 532 -- Declared in Windows as WM_SIZING Wm_spoolerstatus: INTEGER_32 = 42 -- Declared in Windows as WM_SPOOLERSTATUS Wm_stylechanged: INTEGER_32 = 125 -- Declared in Windows as WM_STYLECHANGED Wm_stylechanging: INTEGER_32 = 124 -- Declared in Windows as WM_STYLECHANGING Wm_syncpaint: INTEGER_32 = 136 -- Declared in Windows as WM_SYNCPAINT Wm_syschar: INTEGER_32 = 262 -- Declared in Windows as WM_SYSCHAR Wm_syscolorchange: INTEGER_32 = 21 -- Declared in Windows as WM_SYSCOLORCHANGE Wm_syscommand: INTEGER_32 = 274 -- Declared in Windows as WM_SYSCOMMAND Wm_sysdeadchar: INTEGER_32 = 263 -- Declared in Windows as WM_SYSDEADCHAR Wm_syskeydown: INTEGER_32 = 260 -- Declared in Windows as WM_SYSKEYDOWN Wm_syskeyup: INTEGER_32 = 261 -- Declared in Windows as WM_SYSKEYUP Wm_tcard: INTEGER_32 = 82 -- Declared in Windows as WM_TCARD Wm_timechange: INTEGER_32 = 30 -- Declared in Windows as WM_TIMECHANGE Wm_timer: INTEGER_32 = 275 -- Declared in Windows as WM_TIMER Wm_undo: INTEGER_32 = 772 -- Declared in Windows as WM_UNDO Wm_uninitmenupopup: INTEGER_32 = 293 -- Declared in Windows as WM_UNINITMENUPOPUP Wm_updateuistate: INTEGER_32 = 296 -- Declared in Windows as WM_UPDATEUISTATE Wm_user: INTEGER_32 = 1024 -- Declared in Windows as WM_USER Wm_userchanged: INTEGER_32 = 84 -- Declared in Windows as WM_USERCHANGED Wm_vkeytoitem: INTEGER_32 = 46 -- Declared in Windows as WM_VKEYTOITEM Wm_vscroll: INTEGER_32 = 277 -- Declared in Windows as WM_VSCROLL Wm_vscrollclipboard: INTEGER_32 = 778 -- Declared in Windows as WM_VSCROLLCLIPBOARD Wm_windowposchanged: INTEGER_32 = 71 -- Declared in Windows as WM_WINDOWPOSCHANGED Wm_windowposchanging: INTEGER_32 = 70 -- Declared in Windows as WM_WINDOWPOSCHANGING Wm_wininichange: INTEGER_32 = 26 -- Declared in Windows as WM_WININICHANGE -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `wm_settingchange`. Wm_xbuttondblclk: INTEGER_32 = 525 -- Declared in Windows as WM_XBUTTONDBLCLK Wm_xbuttondown: INTEGER_32 = 523 -- Declared in Windows as WM_XBUTTONDOWN Wm_xbuttonup: INTEGER_32 = 524 -- Declared in Windows as WM_XBUTTONUP feature -- Window Size constants Size_maxhide: INTEGER_32 = 4 -- Declared in Windows as SIZE_MAXHIDE Size_maximized: INTEGER_32 = 2 -- Declared in Windows as SIZE_MAXIMIZED Size_maxshow: INTEGER_32 = 3 -- Declared in Windows as SIZE_MAXSHOW Size_minimized: INTEGER_32 = 1 -- Declared in Windows as SIZE_MINIMIZED Size_restored: INTEGER_32 = 0 -- Declared in Windows as SIZE_RESTORED feature -- Window styles Ws_border: INTEGER_32 = 8388608 -- Declared in Windows as WS_BORDER Ws_caption: INTEGER_32 = 12582912 -- Declared in Windows as WS_CAPTION Ws_child: INTEGER_32 = 1073741824 -- Declared in Windows as WS_CHILD Ws_childwindow: INTEGER_32 = 1073741824 -- Declared in Windows as WS_CHILDWINDOW Ws_clipchildren: INTEGER_32 = 33554432 -- Declared in Windows as WS_CLIPCHILDREN Ws_clipsiblings: INTEGER_32 = 67108864 -- Declared in Windows as WS_CLIPSIBLINGS Ws_disabled: INTEGER_32 = 134217728 -- Declared in Windows as WS_DISABLED Ws_dlgframe: INTEGER_32 = 4194304 -- Declared in Windows as WS_DLGFRAME Ws_group: INTEGER_32 = 131072 -- Declared in Windows as WS_GROUP Ws_hscroll: INTEGER_32 = 1048576 -- Declared in Windows as WS_HSCROLL Ws_iconic: INTEGER_32 = 536870912 -- Declared in Windows as WS_MINIMIZE -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_minimize`. Ws_maximize: INTEGER_32 = 16777216 -- Declared in Windows as WS_MAXIMIZE Ws_maximizebox: INTEGER_32 = 65536 -- Declared in Windows as WS_MAXIMIZEBOX Ws_minimize: INTEGER_32 = 536870912 -- Declared in Windows as WS_MINIMIZE -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_iconic`. Ws_minimizebox: INTEGER_32 = 131072 -- Declared in Windows as WS_MINIMIZEBOX Ws_overlapped: INTEGER_32 = 0 -- Declared in Windows as WS_OVERLAPPED -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_tiled`. Ws_overlappedwindow: INTEGER_32 = 13565952 -- Declared in Windows as WS_OVERLAPPEDWINDOW -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_tiledwindow`. Ws_popup: INTEGER_32 = -2147483648 -- Declared in Windows as WS_POPUP Ws_popupwindow: INTEGER_32 = -2138570752 -- Declared in Windows as WS_POPUPWINDOW Ws_sizebox: INTEGER_32 = 262144 -- Declared in Windows as WS_THICKFRAME -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_thickframe`. Ws_sysmenu: INTEGER_32 = 524288 -- Declared in Windows as WS_SYSMENU Ws_tabstop: INTEGER_32 = 65536 -- Declared in Windows as WS_TABSTOP Ws_thickframe: INTEGER_32 = 262144 -- Declared in Windows as WS_THICKFRAME -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_sizebox`. Ws_tiled: INTEGER_32 = 0 -- Declared in Windows as WS_OVERLAPPED -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_overlapped`. Ws_tiledwindow: INTEGER_32 = 13565952 -- Declared in Windows as WS_OVERLAPPEDWINDOW -- Was declared in {WEL_WINDOW_CONSTANTS} as synonym of `ws_overlappedwindow`. Ws_visible: INTEGER_32 = 268435456 -- Declared in Windows as WS_VISIBLE Ws_vscroll: INTEGER_32 = 2097152 -- Declared in Windows as WS_VSCROLL invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class WEL_WINDOW_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

-- Generated by Eiffel Studio --
For more details: eiffel.org