Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "[ Default widget for viewing and editing key shortcut preferences. ]" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2018-01-25 22:51:54 -0900 (Thu, 25 Jan 2018) $" revision: "$Revision: 101309 $" class interface SHORTCUT_PREFERENCE_WIDGET create make_with_preference (a_preference: like preference) -- Make with values from a_preference. -- (from PREFERENCE_WIDGET) require -- from PREFERENCE_WIDGET preference_not_void: a_preference /= Void ensure -- from PREFERENCE_WIDGET has_preference: preference /= Void feature -- Access Alt_text: STRING_8 = "Alt" -- (from PREFERENCE_CONSTANTS) auto_value: STRING_32 -- (from PREFERENCE_CONSTANTS) caller: detachable PREFERENCE_VIEW -- (from PREFERENCE_WIDGET) note option: stable change_item_widget: SHORTCUT_PREFERENCE_GRID_EDITABLE_ITEM -- Widget to change the value of this preference. Ctrl_text: STRING_8 = "Ctrl" -- (from PREFERENCE_CONSTANTS) ev_application: EV_APPLICATION -- Current application if created yet. -- (from EV_SHARED_APPLICATION) require -- from EV_SHARED_APPLICATION application_exists: attached Shared_environment.application same_processor_as_application: Shared_environment.is_application_processor ev_separate_application: separate EV_APPLICATION -- Current application if created yet. -- (from EV_SHARED_APPLICATION) require -- from EV_SHARED_APPLICATION application_exists: attached Shared_environment.application f_switch_to_flat_view: STRING_32 -- (from PREFERENCE_CONSTANTS) f_switch_to_tree_view: STRING_32 -- (from PREFERENCE_CONSTANTS) generating_type: TYPE [detachable SHORTCUT_PREFERENCE_WIDGET] -- 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 graphical_type: STRING_8 -- Graphical type identifier l_building_flat_view: STRING_32 -- (from PREFERENCE_CONSTANTS) l_building_tree_view: STRING_32 -- (from PREFERENCE_CONSTANTS) l_close: STRING_32 -- (from PREFERENCE_CONSTANTS) l_count_preferences (a_count: READABLE_STRING_GENERAL): STRING_32 -- (from PREFERENCE_CONSTANTS) require -- from PREFERENCE_CONSTANTS a_count_not_void: a_count /= Void l_description: STRING_32 -- (from PREFERENCE_CONSTANTS) l_display_window: STRING_32 -- (from PREFERENCE_CONSTANTS) l_filter: STRING_32 -- (from PREFERENCE_CONSTANTS) l_flat_view: STRING_32 -- (from PREFERENCE_CONSTANTS) l_literal_value: STRING_32 -- (from PREFERENCE_CONSTANTS) l_matches_of_total_preferences (a_count, a_total_count: READABLE_STRING_GENERAL): STRING_32 -- (from PREFERENCE_CONSTANTS) require -- from PREFERENCE_CONSTANTS a_count_not_void: a_count /= Void a_total_count_not_void: a_total_count /= Void l_name: STRING_32 -- (from PREFERENCE_CONSTANTS) l_no_default_value: STRING_32 -- (from PREFERENCE_CONSTANTS) l_request_restart: STRING_32 -- (from PREFERENCE_CONSTANTS) l_restore_default: STRING_32 -- (from PREFERENCE_CONSTANTS) l_restore_defaults: STRING_32 -- (from PREFERENCE_CONSTANTS) l_status: STRING_32 -- (from PREFERENCE_CONSTANTS) l_tree_or_flat_view: STRING_32 -- (from PREFERENCE_CONSTANTS) l_tree_view: STRING_32 -- (from PREFERENCE_CONSTANTS) l_type: STRING_32 -- (from PREFERENCE_CONSTANTS) l_updating_the_view: STRING_32 -- (from PREFERENCE_CONSTANTS) no_description_text: STRING_32 -- (from PREFERENCE_CONSTANTS) p_default_value: STRING_32 -- (from PREFERENCE_CONSTANTS) Pixmaps_extension_cell: CELL [STRING_8] -- Extension for pixmaps. -- (from PREFERENCE_CONSTANTS) 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. -- (from PREFERENCE_CONSTANTS) preference: SHORTCUT_PREFERENCE -- Actual preference associated to the widget. Preference_window_icon: STRING_8 = "icon_preference_window" -- Base name of the file that contains the icon of the preferences window. -- (from PREFERENCE_CONSTANTS) preferences_root: STRING_32 -- (from PREFERENCE_CONSTANTS) preferences_title: STRING_32 -- (from PREFERENCE_CONSTANTS) restore_preference_string: STRING_32 -- (from PREFERENCE_CONSTANTS) Shared_environment: EV_ENVIRONMENT -- Shared EV_ENVIRONMENT object. -- (from EV_SHARED_APPLICATION) Shift_text: STRING_8 = "Shift" -- (from PREFERENCE_CONSTANTS) Shortcut_delimiter: STRING_32 = "+" -- (from PREFERENCE_CONSTANTS) shortcut_modification_denied: STRING_32 -- (from PREFERENCE_CONSTANTS) user_value: STRING_32 -- (from PREFERENCE_CONSTANTS) 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. -- (from PREFERENCE_CONSTANTS) 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: SHORTCUT_PREFERENCE_WIDGET): 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: SHORTCUT_PREFERENCE_WIDGET): 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: SHORTCUT_PREFERENCE_WIDGET): 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: SHORTCUT_PREFERENCE_WIDGET) -- 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: SHORTCUT_PREFERENCE_WIDGET) -- 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: SHORTCUT_PREFERENCE_WIDGET -- 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: SHORTCUT_PREFERENCE_WIDGET) -- 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: SHORTCUT_PREFERENCE_WIDGET -- 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: SHORTCUT_PREFERENCE_WIDGET -- 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 SHORTCUT_PREFERENCE_WIDGET -- 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) destroy -- Destroy all graphical objects. -- (from PREFERENCE_WIDGET) frozen do_nothing -- Execute a null action. -- (from ANY) ensure -- from ANY instance_free: class set_caller (a_caller: attached like caller) -- Set the view this widget belongs to. -- (from PREFERENCE_WIDGET) require -- from PREFERENCE_WIDGET caller_not_void: a_caller /= Void ensure -- from PREFERENCE_WIDGET caller_set: caller = a_caller feature -- Actions change_actions: ACTION_SEQUENCE -- Actions to be performed when `preference` changes, after call to `update_changes`. -- (from PREFERENCE_WIDGET) feature -- Command refresh -- Refresh update_changes -- Update the changes made in `change_item_widget` to `preference`. 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 Setting set_preference (new_preference: like preference) -- Set the preference. require -- from PREFERENCE_WIDGET preference_not_void: new_preference /= Void ensure -- from PREFERENCE_WIDGET preference_set: preference = new_preference show -- Show the widget in its editable state invariant preference_attached: preference /= Void -- from PREFERENCE_WIDGET has_widget: preference /= Void implies change_item_widget /= Void -- 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 SHORTCUT_PREFERENCE_WIDGET
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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