Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "[ Property key parameter used by CCommandHandler Execute and UpdateProperty typedef struct _tagpropertykey    {    GUID fmtid;    DWORD pid;    } PROPERTYKEY; ]" date: "$Date: 2013-05-20 15:15:17 -0800 (Mon, 20 May 2013) $" revision: "$Revision: 92557 $" class interface EV_PROPERTY_KEY create make_emtpy -- Make a empty property key share_from_pointer (a_property_key: POINTER) -- Creation method make_boolean -- Make a boolean key make_label -- Make a label key make_small_image -- Make a small image key make_large_image -- Make a large image key make_small_high_contrast_image -- Make a small high contrast image key make_large_high_contrast_image -- Make a large high contrast image key make_decimal -- Make a decimal key make_items_source -- Make a items source key make_categories -- Make a items source key make_selected_item -- Make a selected item key make_global_background_color -- Make a global background color make_global_text_color -- Make a global text color make_global_highlight_color -- Make a global hightligh color make_item_image -- Make a item image make_representative_string -- Make a representative string key make_tooltip_title -- Make a tooltip title key make_tooltip_description -- Make a tooltip description key make_recent_items -- Make a recent items key make_color -- Make a color key make_font_properties -- Make a font properties make_font_properties_backgroundcolor -- Make a font properties backgroundcolor make_font_properties_backgroundcolor_type -- Make a font properties backgroundcolor tyep make_font_properties_bold -- Make a font properties bold make_font_properties_changed_properties -- Make a font properties changed properties make_font_properties_delta_size -- Make a font properties delta size make_font_properties_family -- Make a font properties family make_font_properties_foregroundcolor -- Make a font properties foregroundcolor make_font_properties_foregroundcolor_type -- Make a font properties foregroundcolor type make_font_properties_italic -- Make a font properties italic make_font_properties_size -- Make a font properties size make_font_properties_strikethrough -- Make a font properties strikethrough make_font_properties_underline -- Make a font properties underline make_font_properties_vertical_positioning -- Make a font properties vertical positioning make_command_id -- Make a command id key make_quick_access_toolbar_dock -- Make a quick access toolbar dock key make_enabled -- Make a enabled key make_context_avaiable -- Make a context aviable key feature -- Access generating_type: TYPE [detachable EV_PROPERTY_KEY] -- 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 guid: WEL_GUID -- A unique GUID for the property. item: POINTER -- C pointer item pid: NATURAL_32 -- A property identifier (PID). This parameter is not used as in SHCOLUMNID. It is recommended that you set this value to PID_FIRST_USABLE. -- Any value greater than or equal to 2 is acceptable. -- Note  Values of 0 and 1 are reserved and should not be used. pointer: MANAGED_POINTER -- Managed C pointer item 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: EV_PROPERTY_KEY): 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: EV_PROPERTY_KEY): 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: EV_PROPERTY_KEY): 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: EV_PROPERTY_KEY) -- 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: EV_PROPERTY_KEY) -- 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: EV_PROPERTY_KEY -- 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: EV_PROPERTY_KEY) -- 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: EV_PROPERTY_KEY -- 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: EV_PROPERTY_KEY -- 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 EV_PROPERTY_KEY -- 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 -- Font properties is_font_properties: BOOLEAN -- Is current font properties? is_font_properties_backgroundcolor: BOOLEAN -- Is current font properties background color? is_font_properties_backgroundcolor_type: BOOLEAN -- Is current font properties background color color? is_font_properties_bold: BOOLEAN -- Is current font properties bold? is_font_properties_changed_properties: BOOLEAN -- Is current font properties changed properties? is_font_properties_delta_size: BOOLEAN -- Is current font properties delta size? is_font_properties_family: BOOLEAN -- Is current font properties family? is_font_properties_foreground_color: BOOLEAN -- Is current font properties foregroundcolor? is_font_properties_foregroundcolor_type: BOOLEAN -- Is current font properties foregroundcolor type? is_font_properties_italic: BOOLEAN -- Is current font properties italic? is_font_properties_size: BOOLEAN -- Is current font properties size? is_font_properties_strikethrough: BOOLEAN -- Is current font properties strikethrough? is_font_properties_underline: BOOLEAN -- Is current font properties underline? is_font_properties_vertical_positioning: BOOLEAN -- Is current font properties Vertical Positioning? 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 -- Status Report exists: BOOLEAN -- Does current exists? is_categories: BOOLEAN -- Is current categories? is_color: BOOLEAN -- Is current color key? is_command_id: BOOLEAN -- Is current command id key? is_context_available: BOOLEAN -- Is current context available key? is_decimal: BOOLEAN -- Is current decimal value key? is_enabled: BOOLEAN -- Is current enabled key? is_item_image: BOOLEAN -- Is current item image? is_items_source: BOOLEAN -- Is current items source key? is_label: BOOLEAN -- Is current label key? is_large_high_contrast_image: BOOLEAN -- Is current large high contrast image key? is_large_image: BOOLEAN -- Is current large image key? is_quick_access_toolbar_dock: BOOLEAN -- Is current quick access toolbar dock key? is_recent_items: BOOLEAN -- Is current recent items key? is_representative_string: BOOLEAN -- Is current representative string? is_selected_item: BOOLEAN -- Is current selected item? is_small_high_contrast_image: BOOLEAN -- Is current small high contrast image key? is_small_image: BOOLEAN -- Is current small image key? is_tooltip_description: BOOLEAN -- Is current tooltip description? is_tooltip_title: BOOLEAN -- Is current tooltip title? invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note copyright: "Copyright (c) 1984-2011, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., 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 EV_PROPERTY_KEY
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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