Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Store tool bar zone state." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2017-04-14 10:05:46 -0800 (Fri, 14 Apr 2017) $" revision: "$Revision: 100203 $" class interface SD_TOOL_BAR_ZONE_STATE create make -- Creation method feature -- Access generating_type: TYPE [detachable SD_TOOL_BAR_ZONE_STATE] -- 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: SD_TOOL_BAR_ZONE_STATE): 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: SD_TOOL_BAR_ZONE_STATE): 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: SD_TOOL_BAR_ZONE_STATE): 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: SD_TOOL_BAR_ZONE_STATE) -- 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: SD_TOOL_BAR_ZONE_STATE) -- 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: SD_TOOL_BAR_ZONE_STATE -- 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: SD_TOOL_BAR_ZONE_STATE) -- 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: SD_TOOL_BAR_ZONE_STATE -- 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: SD_TOOL_BAR_ZONE_STATE -- 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 SD_TOOL_BAR_ZONE_STATE -- 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 -- Customize dialog data customize_dialog_height: INTEGER_32 -- Tool Bar customize dialog last width/height shown on the screen customize_dialog_width: INTEGER_32 -- Tool Bar customize dialog last width/height shown on the screen set_cutomize_dialog_size (a_width, a_height: INTEGER_32) -- Set `customize_dialog_width` and `customize_dialog_height` with a_width and a_height require valid: a_width >= 0 and a_height >= 0 ensure set: customize_dialog_width = a_width and customize_dialog_height = a_height feature -- Items layout items_layout: detachable ARRAYED_LIST [TUPLE [name: READABLE_STRING_GENERAL; is_displayed: BOOLEAN]] -- Items layout, first is item name, second is whether item is_displayed -- Order of this list, it's order items displayed set_items_layout (a_layout: like items_layout) -- Set a_layout require not_void: a_layout /= Void ensure set: items_layout = a_layout 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 -- Properties which record floating informations floating_group_info: detachable SD_TOOL_BAR_GROUP_INFO -- How items positioned when floating? screen_x: INTEGER_32 -- `internal_screen_x` screen_y: INTEGER_32 -- 'internal_screen_y' set_floating_group_info (a_group_info: SD_TOOL_BAR_GROUP_INFO) -- Set row_count require not_void: a_group_info /= Void ensure set: floating_group_info = a_group_info set_screen_x (a_screen_x: INTEGER_32) -- Set `screen_x` ensure set: internal_screen_x = a_screen_x set: is_screen_position_set set_screen_y (a_screen_y: INTEGER_32) -- Set `screen_y` ensure set: internal_screen_y = a_screen_y set: is_screen_position_set feature -- Properties which record information in one row is_only_zone: BOOLEAN -- When docking, if there is only one SD_T0OL_BAR_ZONE in SD_TOOL_BAR_ROW? position: INTEGER_32 -- SD_TOOL_BAR_ZONE position in its parent row set_is_only_zone (a_only_zone: BOOLEAN) -- Set `is_only_zone` ensure set: is_only_zone = a_only_zone set_position (a_position: INTEGER_32) -- Set `position` require valid: a_position >= 0 ensure set: position = a_position set_size (a_size: INTEGER_32) -- Set `size` require valid: a_size >= 0 ensure set: size = a_size size: INTEGER_32 -- SD_TOOL_BAR_ZONE size feature -- Propertites which record row infomations container_direction: INTEGER_32 -- Tool bar container direction -- One value of {SD_ENUMERATION}.top, dock_bottom, dock_left, dock_right container_row_number: INTEGER_32 -- Which row SD_TOOL_BAR_ZONE is in? set_container_direction (a_direction: INTEGER_32) -- Set `container_direction` require valid: is_direction_valid (a_direction) ensure set: container_direction = a_direction set_container_row_number (a_row_number: INTEGER_32) -- Set `container_row_number` require valid: a_row_number > 0 ensure set: container_row_number = a_row_number feature -- Query is_direction_valid (a_direction: INTEGER_32): BOOLEAN -- If a_direction valid? is_docking_state_recorded: BOOLEAN -- If have a valid docking state recorded? is_vertical: BOOLEAN -- If Current is vertical tool bar? require valid: is_direction_valid (container_direction) invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note library: "SmartDocking: Library of reusable components for Eiffel." copyright: "Copyright (c) 1984-2017, 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 SD_TOOL_BAR_ZONE_STATE
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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