Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Objects that provide access to constants loaded from files." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2018-11-22 05:17:56 -0900 (Thu, 22 Nov 2018) $" revision: "$Revision: 102512 $" class interface PREFERENCES_GRID_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access Alt_text: STRING_8 = "Alt" auto_value: STRING_32 Ctrl_text: STRING_8 = "Ctrl" f_switch_to_flat_view: STRING_32 f_switch_to_tree_view: STRING_32 generating_type: TYPE [detachable PREFERENCES_GRID_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 l_apply: STRING_32 l_building_flat_view: STRING_32 l_building_tree_view: STRING_32 l_close: STRING_32 l_count_preferences (a_count: READABLE_STRING_GENERAL): STRING_32 require a_count_not_void: a_count /= Void l_description: STRING_32 l_display_hidden_preferences: STRING_32 l_display_window: STRING_32 l_export_preferences: STRING_32 l_filter: STRING_32 l_filter_value: STRING_32 l_flat_view: STRING_32 l_import_preferences: STRING_32 l_importing_preferences: STRING_32 l_literal_value: STRING_32 l_matches_of_total_preferences (a_count: INTEGER_32; a_total_count: INTEGER_32): STRING_32 l_name: STRING_32 l_no_default_value: STRING_32 l_request_restart: STRING_32 l_restore_default: STRING_32 l_restore_defaults: STRING_32 l_status: STRING_32 l_tree_or_flat_view: STRING_32 l_tree_view: STRING_32 l_type: STRING_32 l_updating_the_view: STRING_32 no_description_text: STRING_32 p_default_value: STRING_32 Pixmaps_extension_cell: CELL [STRING_8] -- Extension for pixmaps. Pixmaps_path_cell: CELL [PATH] -- Path where pixmaps for the preference window should be looked for. -- By default it looks in pixmaps in the current directory, but -- it is possible to change the contents of this cell to change this path. Preference_window_icon: STRING_8 = "icon_preference_window" -- Base name of the file that contains the icon of the preferences window. preferences_title: STRING_32 preferenese_root: STRING_32 restore_preference_string: STRING_32 Shift_text: STRING_8 = "Shift" Shortcut_delimiter: STRING_8 = "+" shortcut_modification_denied: STRING_32 user_value: STRING_32 W_preferences_delayed_resources: STRING_32 -- Texts used in the dialog that tells the user -- they have to restart the application to use the new preferences. 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: PREFERENCES_GRID_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: PREFERENCES_GRID_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: PREFERENCES_GRID_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 -- Conversion dialog_unit_to_pixels (a_size: INTEGER_32): INTEGER_32 -- Convert a_size dialog units into pixels. -- Used to get the same look&feel under all platforms -- (from EV_LAYOUT_CONSTANTS) feature -- Duplication copy (other: PREFERENCES_GRID_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: PREFERENCES_GRID_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: PREFERENCES_GRID_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: PREFERENCES_GRID_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: PREFERENCES_GRID_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: PREFERENCES_GRID_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 PREFERENCES_GRID_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 -- Access (border constants) Default_border_size: INTEGER_32 -- Default size for borders -- (from EV_LAYOUT_CONSTANTS) Large_border_size: INTEGER_32 -- Default size for borders -- (from EV_LAYOUT_CONSTANTS) Small_border_size: INTEGER_32 -- Small size for borders -- (from EV_LAYOUT_CONSTANTS) feature -- Access (button size constants) Default_button_height: INTEGER_32 -- Default height for buttons -- (from EV_LAYOUT_CONSTANTS) Default_button_width: INTEGER_32 -- Default width for buttons -- (from EV_LAYOUT_CONSTANTS) feature -- Access (padding constants) Default_padding_size: INTEGER_32 -- Default size for padding -- (from EV_LAYOUT_CONSTANTS) Small_padding_size: INTEGER_32 -- Small size for padding -- (from EV_LAYOUT_CONSTANTS) Tiny_padding_size: INTEGER_32 -- Tiny size for padding -- (from EV_LAYOUT_CONSTANTS) feature -- Operation set_default_size_for_button (a_button: EV_BUTTON) -- Set the default size for a_button. -- (from EV_LAYOUT_CONSTANTS) set_default_width_for_button (a_button: EV_BUTTON) -- Set the default width for a_button. -- (from EV_LAYOUT_CONSTANTS) 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-2018, 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 PREFERENCES_GRID_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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