Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Constants relative to input (Mouse, Keyboard, ...)" 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_INPUT_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access generating_type: TYPE [detachable WEL_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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_INPUT_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 -- Keyboard event input constants Keyeventf_extendedkey: INTEGER_32 = 1 -- Declared in Windows as KEYEVENTF_EXTENDEDKEY Keyeventf_keyup: INTEGER_32 = 2 -- Declared in Windows as KEYEVENTF_KEYUP feature -- Mouse Activate constants (MA_xxx). Ma_activate: INTEGER_32 = 1 -- Declared in Windows as MA_ACTIVATE Ma_activateandeat: INTEGER_32 = 2 -- Declared in Windows as MA_ACTIVATEANDEAT Ma_noactivate: INTEGER_32 = 3 -- Declared in Windows as MA_NOACTIVATE Ma_noactivateandeat: INTEGER_32 = 4 -- Declared in Windows as MA_NOACTIVATEANDEAT feature -- Mouse and Key constants (MK_xxxx) Mk_control: INTEGER_32 = 8 -- Declared in Windows as MK_CONTROL Mk_lbutton: INTEGER_32 = 1 -- Declared in Windows as MK_LBUTTON Mk_mbutton: INTEGER_32 = 16 -- Declared in Windows as MK_MBUTTON Mk_rbutton: INTEGER_32 = 2 -- Declared in Windows as MK_RBUTTON Mk_shift: INTEGER_32 = 4 -- Declared in Windows as MK_SHIFT feature -- Mouse event input constants Mouseeventf_absolute: INTEGER_32 = 32768 -- Declared in Windows as MOUSEEVENTF_ABSOLUTE Mouseeventf_leftdown: INTEGER_32 = 2 -- Declared in Windows as MOUSEEVENTF_LEFTDOWN Mouseeventf_leftup: INTEGER_32 = 4 -- Declared in Windows as MOUSEEVENTF_LEFTUP Mouseeventf_middledown: INTEGER_32 = 32 -- Declared in Windows as MOUSEEVENTF_MIDDLEDOWN Mouseeventf_middleup: INTEGER_32 = 64 -- Declared in Windows as MOUSEEVENTF_MIDDLEUP Mouseeventf_move: INTEGER_32 = 1 -- Declared in Windows as MOUSEEVENTF_MOVE Mouseeventf_rightdown: INTEGER_32 = 8 -- Declared in Windows as MOUSEEVENTF_RIGHTDOWN Mouseeventf_rightup: INTEGER_32 = 16 -- Declared in Windows as MOUSEEVENTF_RIGHTUP Mouseeventf_wheel: INTEGER_32 = 2048 -- Declared in Windows as MOUSEEVENTF_WHEEL feature -- Mouse wheel constants Wheel_delta: INTEGER_32 = 120 -- One wheel click is defined as WHEEL_DELTA, which is 120 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 -- Virtual Key constants (VK_xxxx) Vk_0: INTEGER_32 = 48 Vk_1: INTEGER_32 = 49 Vk_2: INTEGER_32 = 50 Vk_3: INTEGER_32 = 51 Vk_4: INTEGER_32 = 52 Vk_5: INTEGER_32 = 53 Vk_6: INTEGER_32 = 54 Vk_7: INTEGER_32 = 55 Vk_8: INTEGER_32 = 56 Vk_9: INTEGER_32 = 57 -- Vk_a thru Vk_z are the same as their ASCII equivalents: 'A' thru 'Z'. Vk_a: INTEGER_32 = 65 Vk_add: INTEGER_32 = 107 -- Declared in Windows as VK_ADD Vk_b: INTEGER_32 = 66 Vk_back: INTEGER_32 = 8 -- Declared in Windows as VK_BACK Vk_c: INTEGER_32 = 67 Vk_cancel: INTEGER_32 = 3 -- Declared in Windows as VK_CANCEL Vk_capital: INTEGER_32 = 20 -- Declared in Windows as VK_CAPITAL Vk_clear: INTEGER_32 = 12 -- Declared in Windows as VK_CLEAR Vk_control: INTEGER_32 = 17 -- Declared in Windows as VK_CONTROL Vk_d: INTEGER_32 = 68 Vk_decimal: INTEGER_32 = 110 -- Declared in Windows as VK_DECIMAL Vk_delete: INTEGER_32 = 46 -- Declared in Windows as VK_DELETE Vk_divide: INTEGER_32 = 111 -- Declared in Windows as VK_DIVIDE Vk_down: INTEGER_32 = 40 -- Declared in Windows as VK_DOWN Vk_e: INTEGER_32 = 69 Vk_end: INTEGER_32 = 35 -- Declared in Windows as VK_END Vk_escape: INTEGER_32 = 27 -- Declared in Windows as VK_ESCAPE Vk_execute: INTEGER_32 = 43 -- Declared in Windows as VK_EXECUTE Vk_f: INTEGER_32 = 70 Vk_f1: INTEGER_32 = 112 -- Declared in Windows as VK_F1 Vk_f10: INTEGER_32 = 121 -- Declared in Windows as VK_F10 Vk_f11: INTEGER_32 = 122 -- Declared in Windows as VK_F11 Vk_f12: INTEGER_32 = 123 -- Declared in Windows as VK_F12 Vk_f13: INTEGER_32 = 124 -- Declared in Windows as VK_F13 Vk_f14: INTEGER_32 = 125 -- Declared in Windows as VK_F14 Vk_f15: INTEGER_32 = 126 -- Declared in Windows as VK_F15 Vk_f16: INTEGER_32 = 127 -- Declared in Windows as VK_F16 Vk_f17: INTEGER_32 = 128 -- Declared in Windows as VK_F17 Vk_f18: INTEGER_32 = 129 -- Declared in Windows as VK_F18 Vk_f19: INTEGER_32 = 130 -- Declared in Windows as VK_F19 Vk_f2: INTEGER_32 = 113 -- Declared in Windows as VK_F2 Vk_f20: INTEGER_32 = 131 -- Declared in Windows as VK_F20 Vk_f21: INTEGER_32 = 132 -- Declared in Windows as VK_F21 Vk_f22: INTEGER_32 = 133 -- Declared in Windows as VK_F22 Vk_f23: INTEGER_32 = 134 -- Declared in Windows as VK_F23 Vk_f24: INTEGER_32 = 135 -- Declared in Windows as VK_F24 Vk_f3: INTEGER_32 = 114 -- Declared in Windows as VK_F3 Vk_f4: INTEGER_32 = 115 -- Declared in Windows as VK_F4 Vk_f5: INTEGER_32 = 116 -- Declared in Windows as VK_F5 Vk_f6: INTEGER_32 = 117 -- Declared in Windows as VK_F6 Vk_f7: INTEGER_32 = 118 -- Declared in Windows as VK_F7 Vk_f8: INTEGER_32 = 119 -- Declared in Windows as VK_F8 Vk_f9: INTEGER_32 = 120 -- Declared in Windows as VK_F9 Vk_g: INTEGER_32 = 71 Vk_h: INTEGER_32 = 72 Vk_help: INTEGER_32 = 47 -- Declared in Windows as VK_HELP Vk_home: INTEGER_32 = 36 -- Declared in Windows as VK_HOME Vk_i: INTEGER_32 = 73 Vk_insert: INTEGER_32 = 45 -- Declared in Windows as VK_INSERT Vk_j: INTEGER_32 = 74 Vk_k: INTEGER_32 = 75 Vk_l: INTEGER_32 = 76 Vk_lbutton: INTEGER_32 = 1 -- Declared in Windows as VK_LBUTTON Vk_lcontrol: INTEGER_32 = 162 -- Declared in Windows as VK_LCONTROL Vk_left: INTEGER_32 = 37 -- Declared in Windows as VK_LEFT Vk_lmenu: INTEGER_32 = 164 -- Declared in Windows as VK_LMENU Vk_lshift: INTEGER_32 = 160 -- Declared in Windows as VK_LSHIFT Vk_m: INTEGER_32 = 77 Vk_mbutton: INTEGER_32 = 4 -- Declared in Windows as VK_MBUTTON Vk_menu: INTEGER_32 = 18 -- Declared in Windows as VK_MENU Vk_multiply: INTEGER_32 = 106 -- Declared in Windows as VK_MULTIPLY Vk_n: INTEGER_32 = 78 Vk_next: INTEGER_32 = 34 -- Declared in Windows as VK_NEXT Vk_numlock: INTEGER_32 = 144 -- Declared in Windows as VK_NUMLOCK Vk_numpad0: INTEGER_32 = 96 -- Declared in Windows as VK_NUMPAD0 Vk_numpad1: INTEGER_32 = 97 -- Declared in Windows as VK_NUMPAD1 Vk_numpad2: INTEGER_32 = 98 -- Declared in Windows as VK_NUMPAD2 Vk_numpad3: INTEGER_32 = 99 -- Declared in Windows as VK_NUMPAD3 Vk_numpad4: INTEGER_32 = 100 -- Declared in Windows as VK_NUMPAD4 Vk_numpad5: INTEGER_32 = 101 -- Declared in Windows as VK_NUMPAD5 Vk_numpad6: INTEGER_32 = 102 -- Declared in Windows as VK_NUMPAD6 Vk_numpad7: INTEGER_32 = 103 -- Declared in Windows as VK_NUMPAD7 Vk_numpad8: INTEGER_32 = 104 -- Declared in Windows as VK_NUMPAD8 Vk_numpad9: INTEGER_32 = 105 -- Declared in Windows as VK_NUMPAD9 Vk_o: INTEGER_32 = 79 Vk_p: INTEGER_32 = 80 Vk_pause: INTEGER_32 = 19 -- Declared in Windows as VK_PAUSE Vk_print: INTEGER_32 = 42 -- Declared in Windows as VK_PRINT Vk_prior: INTEGER_32 = 33 -- Declared in Windows as VK_PRIOR Vk_q: INTEGER_32 = 81 Vk_r: INTEGER_32 = 82 Vk_rbutton: INTEGER_32 = 2 -- Declared in Windows as VK_RBUTTON Vk_rcontrol: INTEGER_32 = 163 -- Declared in Windows as VK_RCONTROL Vk_return: INTEGER_32 = 13 -- Declared in Windows as VK_RETURN Vk_right: INTEGER_32 = 39 -- Declared in Windows as VK_RIGHT Vk_rmenu: INTEGER_32 = 165 -- Declared in Windows as VK_RMENU -- Vk_0 thru Vk_9 are the same as their ASCII equivalents: '0' thru '9'. Vk_rshift: INTEGER_32 = 161 -- Declared in Windows as VK_RSHIFT Vk_s: INTEGER_32 = 83 Vk_scroll: INTEGER_32 = 145 -- Declared in Windows as VK_SCROLL Vk_select: INTEGER_32 = 41 -- Declared in Windows as VK_SELECT Vk_separator: INTEGER_32 = 108 -- Declared in Windows as VK_SEPARATOR Vk_shift: INTEGER_32 = 16 -- Declared in Windows as VK_SHIFT Vk_snapshot: INTEGER_32 = 44 -- Declared in Windows as VK_SNAPSHOT Vk_space: INTEGER_32 = 32 -- Declared in Windows as VK_SPACE Vk_subtract: INTEGER_32 = 109 -- Declared in Windows as VK_SUBTRACT Vk_t: INTEGER_32 = 84 Vk_tab: INTEGER_32 = 9 -- Declared in Windows as VK_TAB Vk_u: INTEGER_32 = 85 Vk_up: INTEGER_32 = 38 -- Declared in Windows as VK_UP Vk_v: INTEGER_32 = 86 Vk_w: INTEGER_32 = 87 Vk_x: INTEGER_32 = 88 Vk_y: INTEGER_32 = 89 Vk_z: INTEGER_32 = 90 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_INPUT_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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