Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Rich edit messages." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2008-12-29 11:27:11 -0900 (Mon, 29 Dec 2008) $" revision: "$Revision: 76420 $" class interface WEL_RICH_EDIT_MESSAGE_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access Em_canpaste: INTEGER_32 = 1074 -- Declared in Windows as EM_CANPASTE Em_charfrompos: INTEGER_32 = 215 -- Declared in Windows as EM_CHARFROMPOS Em_displayband: INTEGER_32 = 1075 -- Declared in Windows as EM_DISPLAYBAND Em_exgetsel: INTEGER_32 = 1076 -- Declared in Windows as EM_EXGETSEL Em_exlimittext: INTEGER_32 = 1077 -- Declared in Windows as EM_EXLIMITTEXT Em_exlinefromchar: INTEGER_32 = 1078 -- Declared in Windows as EM_EXLINEFROMCHAR Em_exsetsel: INTEGER_32 = 1079 -- Declared in Windows as EM_EXSETSEL Em_findtext: INTEGER_32 = 1080 -- Declared in Windows as EM_FINDTEXT Em_findtextex: INTEGER_32 = 1103 -- Declared in Windows as EM_FINDTEXTEX Em_findwordbreak: INTEGER_32 = 1100 -- Declared in Windows as EM_FINDWORDBREAK Em_formatrange: INTEGER_32 = 1081 -- Declared in Windows as EM_FORMATRANGE Em_getcharformat: INTEGER_32 = 1082 -- Declared in Windows as EM_GETCHARFORMAT Em_geteventmask: INTEGER_32 = 1083 -- Declared in Windows as EM_GETEVENTMASK Em_getimecolor: INTEGER_32 = 1129 -- Declared in Windows as EM_GETIMECOLOR Em_getimeoptions: INTEGER_32 = 1131 -- Declared in Windows as EM_GETIMEOPTIONS Em_getoptions: INTEGER_32 = 1102 -- Declared in Windows as EM_GETOPTIONS Em_getparaformat: INTEGER_32 = 1085 -- Declared in Windows as EM_GETPARAFORMAT Em_getpunctuation: INTEGER_32 = 1125 -- Declared in Windows as EM_GETPUNCTUATION Em_getseltext: INTEGER_32 = 1086 -- Declared in Windows as EM_GETSELTEXT Em_gettextrange: INTEGER_32 = 1099 -- Declared in Windows as EM_GETTEXTRANGE Em_getwordbreakprocex: INTEGER_32 = 1104 -- Declared in Windows as EM_GETWORDBREAKPROCEX Em_getwordwrapmode: INTEGER_32 = 1127 -- Declared in Windows as EM_GETWORDWRAPMODE Em_hideselection: INTEGER_32 = 1087 -- Declared in Windows as EM_HIDESELECTION Em_pastespecial: INTEGER_32 = 1088 -- Declared in Windows as EM_PASTESPECIAL Em_posfromchar: INTEGER_32 = 214 -- Declared in Windows as EM_POSFROMCHAR Em_requestresize: INTEGER_32 = 1089 -- Declared in Windows as EM_REQUESTRESIZE Em_selectiontype: INTEGER_32 = 1090 -- Declared in Windows as EM_SELECTIONTYPE Em_setbkgndcolor: INTEGER_32 = 1091 -- Declared in Windows as EM_SETBKGNDCOLOR Em_setcharformat: INTEGER_32 = 1092 -- Declared in Windows as EM_SETCHARFORMAT Em_seteventmask: INTEGER_32 = 1093 -- Declared in Windows as EM_SETEVENTMASK Em_setimecolor: INTEGER_32 = 1128 -- Declared in Windows as EM_SETIMECOLOR Em_setimeoptions: INTEGER_32 = 1130 -- Declared in Windows as EM_SETIMEOPTIONS Em_setlimittext: INTEGER_32 = 197 -- Declared in Windows as EM_SETLIMITTEXT Em_setoptions: INTEGER_32 = 1101 -- Declared in Windows as EM_SETOPTIONS Em_setparaformat: INTEGER_32 = 1095 -- Declared in Windows as EM_SETPARAFORMAT Em_setpunctuation: INTEGER_32 = 1124 -- Declared in Windows as EM_SETPUNCTUATION Em_settargetdevice: INTEGER_32 = 1096 -- Declared in Windows as EM_SETTARGETDEVICE Em_setwordbreakprocex: INTEGER_32 = 1105 -- Declared in Windows as EM_SETWORDBREAKPROCEX Em_setwordwrapmode: INTEGER_32 = 1126 -- Declared in Windows as EM_SETWORDWRAPMODE Em_streamin: INTEGER_32 = 1097 -- Declared in Windows as EM_STREAMIN Em_streamout: INTEGER_32 = 1098 -- Declared in Windows as EM_STREAMOUT En_selchange: INTEGER_32 = 1794 -- Declared in Windows as EN_SELCHANGE generating_type: TYPE [detachable WEL_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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_RICH_EDIT_MESSAGE_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 -- 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 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_RICH_EDIT_MESSAGE_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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