indexing
description: "Eiffel Vision application. Implementation interface.%NSee ev_application.e"
legal: "See notice at end of class."
status: "See notice at end of class."
keywords: "application"
date: "$Date: 2006-08-21 13:47:02 -0700 (Mon, 21 Aug 2006) $"
revision: "$Revision: 62822 $"
deferred class interface
EV_APPLICATION_I
feature
alt_pressed: BOOLEAN
captured_widget: EV_WIDGET
check_instruction: INTEGER_32 is 7
EXCEP_CONST
class_invariant: INTEGER_32 is 6
EXCEP_CONST
clipboard: EV_CLIPBOARD
com_exception: INTEGER_32 is 28
EXCEP_CONST
contextual_help_accelerator: EV_ACCELERATOR
create_on_deferred: INTEGER_32 is 17
EXCEP_CONST
ctrl_pressed: BOOLEAN
developer_exception: INTEGER_32 is 24
EXCEP_CONST
dollar_applied_to_melted_feature: INTEGER_32 is 26
EXCEP_CONST
eiffel_runtime_fatal_error: INTEGER_32 is 25
EXCEP_CONST
eiffel_runtime_panic: INTEGER_32 is 13
EXCEP_CONST
exception_in_signal_handler: INTEGER_32 is 20
EXCEP_CONST
external_exception: INTEGER_32 is 18
`errno'
EXCEP_CONST
floating_point_exception: INTEGER_32 is 5
EXCEP_CONST
generating_type: STRING_8
ANY
generator: STRING_8
ANY
help_accelerator: EV_ACCELERATOR
help_engine: EV_HELP_ENGINE
incorrect_inspect_value: INTEGER_32 is 9
EXCEP_CONST
io_exception: INTEGER_32 is 21
EXCEP_CONST
locked_window: EV_WINDOW
`{EV_WINDOW}.lock_update'
loop_invariant: INTEGER_32 is 11
EXCEP_CONST
loop_variant: INTEGER_32 is 10
EXCEP_CONST
no_more_memory: INTEGER_32 is 2
EXCEP_CONST
number_of_codes: INTEGER_32 is 29
EXCEP_CONST
operating_system_exception: INTEGER_32 is 22
`errno'
EXCEP_CONST
out_of_memory: INTEGER_32 is 15
EXCEP_CONST
pick_and_drop_source: EV_PICK_AND_DROPABLE_I
pnd_targets: HASH_TABLE [INTEGER_32, INTEGER_32]
postcondition: INTEGER_32 is 4
EXCEP_CONST
precondition: INTEGER_32 is 3
EXCEP_CONST
rescue_exception: INTEGER_32 is 14
EXCEP_CONST
resumption_failed: INTEGER_32 is 16
EXCEP_CONST
retrieve_exception: INTEGER_32 is 23
`retrieved'`IO_MEDIUM'
EXCEP_CONST
routine_failure: INTEGER_32 is 8
EXCEP_CONST
runtime_check_exception: INTEGER_32 is 29
EXCEP_CONST
runtime_io_exception: INTEGER_32 is 27
EXCEP_CONST
shift_pressed: BOOLEAN
signal_exception: INTEGER_32 is 12
EXCEP_CONST
valid_code (c: INTEGER_32): BOOLEAN
`c'
EXCEP_CONST
void_assigned_to_expanded: INTEGER_32 is 19
EXCEP_CONST
void_call_target: INTEGER_32 is 1
EXCEP_CONST
windows: LINEAR [EV_WINDOW]
feature
frozen deep_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies some.same_type (other)
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
assertion_violation: BOOLEAN
EXCEPTIONS
class_name: STRING_8
EXCEPTIONS
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
developer_exception_name: STRING_8
EXCEPTIONS
require EXCEPTIONS
applicable: is_developer_exception
exception: INTEGER_32
EXCEPTIONS
exception_trace: STRING_8
EXCEPTIONS
focused_widget: EV_WIDGET
is_developer_exception: BOOLEAN
EXCEPTIONS
is_developer_exception_of_name (name: STRING_8): BOOLEAN
`name'
EXCEPTIONS
is_signal: BOOLEAN
EXCEPTIONS
is_system_exception: BOOLEAN
EXCEPTIONS
meaning (except: INTEGER_32): STRING_8
`except'
EXCEPTIONS
original_class_name: STRING_8
EXCEPTIONS
original_exception: INTEGER_32
EXCEPTIONS
original_recipient_name: STRING_8
EXCEPTIONS
original_tag_name: STRING_8
EXCEPTIONS
recipient_name: STRING_8
EXCEPTIONS
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
tag_name: STRING_8
EXCEPTIONS
tooltip_delay: INTEGER_32
feature
catch (code: INTEGER_32)
`code'
EXCEPTIONS
die (code: INTEGER_32)
`code'
EXCEPTIONS
ignore (code: INTEGER_32)
`code'
EXCEPTIONS
message_on_failure
EXCEPTIONS
no_message_on_failure
EXCEPTIONS
raise (name: STRING_8)
`name'
EXCEPTIONS
raise_retrieval_exception (name: STRING_8)
`name'
EXCEPTIONS
set_tooltip_delay (a_delay: INTEGER_32)
tooltip_delay`a_delay'
require
a_delay_non_negative: a_delay >= 0
ensure
assigned: tooltip_delay = a_delay
feature
copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: like Current)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: like Current
ANY
ensure ANY
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: like Current
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: like Current
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: like Current
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
call_idle_actions
call_post_launch_actions
exception_dialog: EV_DIALOG
interface: EV_APPLICATION
`Current'
new_exception: EXCEPTION
ensure
new_exception_not_void: Result /= Void
on_exception_action (an_exception: EXCEPTION)
require
an_exception_not_void: an_exception /= Void
show_exception_dialog: BOOLEAN is True
uncaught_exception_actions_called: BOOLEAN
`uncaught_exceptions_actions'
uncaught_exception_actions
feature
pointer_motion_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, INTEGER_32, INTEGER_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
feature
add_idle_action (a_idle_action: PROCEDURE [ANY, TUPLE])
idle_actions`a_idle_action'
require
a_idle_action_not_void: a_idle_action /= Void
display_help_for_widget (a_widget: EV_WIDGET)
`a_widget'
require
a_widget_not_void: a_widget /= Void
enable_contextual_help
lock
process_events
process_events_until_stopped
process_graphical_events
relinquish_cpu_slice
remove_idle_action (a_idle_action: PROCEDURE [ANY, TUPLE])
`a_idle_action'idle_actions
require
a_idle_action_not_void: a_idle_action /= Void
sleep (msec: INTEGER_32)
`msec'
require
msec_non_negative: msec >= 0
stop_processing
process_events_until_stopped
try_lock: BOOLEAN
unlock
feature
set_captured_widget (a_captured_widget: EV_WIDGET)
captured_widget
ensure
captured_widget_set: captured_widget = a_captured_widget
set_contextual_help_accelerator (an_accelerator: EV_ACCELERATOR)
`an_accelerator'contextual_help_accelerator
require
an_accelerator_not_void: an_accelerator /= Void
ensure
contextual_help_accelerator_assigned: contextual_help_accelerator = an_accelerator
contextual_help_accelerator_complete: contextual_help_accelerator.actions.has (contextual_help_handler_procedure)
set_help_accelerator (an_accelerator: EV_ACCELERATOR)
`an_accelerator'help_accelerator
require
an_accelerator_not_void: an_accelerator /= Void
ensure
help_accelerator_assigned: help_accelerator = an_accelerator
help_accelerator_complete: help_accelerator.actions.has (help_handler_procedure)
set_help_engine (an_engine: EV_HELP_ENGINE)
`an_engine'help_engine
require
an_engine_not_void: an_engine /= Void
ensure
help_engine_set: help_engine = an_engine
set_locked_window (a_window: EV_WINDOW)
locked_window`a_window'
`{EV_WINDOW}.lock_update'
feature
accelerator_actions (an_accelerator: EV_ACCELERATOR): EV_NOTIFY_ACTION_SEQUENCE
`an_accelerator'
ensure
not_void: Result /= Void
cancel_actions: EV_PND_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
destroy_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
drop_actions: EV_PND_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
focus_in_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
focus_out_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
idle_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
key_press_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, EV_KEY]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
key_press_string_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, STRING_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
key_release_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, EV_KEY]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
mouse_wheel_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, INTEGER_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
pick_actions: EV_PND_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
pnd_motion_actions: EV_PND_MOTION_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_button_press_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, INTEGER_32, INTEGER_32, INTEGER_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_button_release_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, INTEGER_32, INTEGER_32, INTEGER_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
pointer_double_press_actions: ACTION_SEQUENCE [TUPLE [EV_WIDGET, INTEGER_32, INTEGER_32, INTEGER_32]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
post_launch_actions: EV_NOTIFY_ACTION_SEQUENCE
launch
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
theme_changed_actions: EV_NOTIFY_ACTION_SEQUENCE
EV_APPLICATION_ACTION_SEQUENCES_I
uncaught_exception_actions: ACTION_SEQUENCE [TUPLE [EXCEPTION]]
EV_APPLICATION_ACTION_SEQUENCES_I
ensure EV_APPLICATION_ACTION_SEQUENCES_I
not_void: Result /= Void
feature
do_once_idle_actions
once_idle_actions
do_once_idle_actions_agentinternal_idle_actions
do_once_idle_actions_agent: PROCEDURE [EV_APPLICATION_I, TUPLE]
do_once_idle_actions
do_once_on_idle (an_action: PROCEDURE [ANY, TUPLE])
`an_action'
internal_idle_actions: EV_NOTIFY_ACTION_SEQUENCE
once_idle_actions: EV_NOTIFY_ACTION_SEQUENCE
feature
io: STD_FILES
ANY
out: STRING_8
ANYtagged_out
ANY
print (some: ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANYout
ANY
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
invariant
dockable_targets_not_void: is_usable implies dockable_targets /= Void
pnd_targets_not_void: is_usable implies pnd_targets /= Void
windows_not_void: is_usable implies windows /= Void
internal_idle_actions_not_void: is_usable implies internal_idle_actions /= Void
once_idle_actions_not_void: is_usable implies once_idle_actions /= Void
do_once_idle_actions_agent: is_usable implies do_once_idle_actions_agent /= Void
EV_ANY_I
interface_coupled: is_usable implies interface /= Void and then interface.implementation = Current
base_make_called: base_make_called
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
indexing
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 EV_APPLICATION_I