note description: "Control interfaces. Help file: " legal: "See notice at end of class." status: "See notice at end of class." generator: "Automatically generated by the EiffelCOM Wizard." deferred class IOLE_IN_PLACE_SITE_INTERFACE inherit IOLE_WINDOW_INTERFACE feature -- Status Report can_in_place_activate_user_precondition: BOOLEAN -- User-defined preconditions for `can_in_place_activate'. -- Redefine in descendants if needed. do Result := True end on_in_place_activate_user_precondition: BOOLEAN -- User-defined preconditions for `on_in_place_activate'. -- Redefine in descendants if needed. do Result := True end on_uiactivate_user_precondition: BOOLEAN -- User-defined preconditions for `on_uiactivate'. -- Redefine in descendants if needed. do Result := True end get_window_context_user_precondition (pp_frame: CELL [IOLE_IN_PLACE_FRAME_INTERFACE]; pp_doc: CELL [IOLE_IN_PLACE_UIWINDOW_INTERFACE]; lprc_pos_rect: TAG_RECT_RECORD; lprc_clip_rect: TAG_RECT_RECORD; lp_frame_info: TAG_OIFI_RECORD): BOOLEAN -- User-defined preconditions for `get_window_context'. -- Redefine in descendants if needed. do Result := True end scroll_user_precondition (scroll_extant: TAG_SIZE_RECORD): BOOLEAN -- User-defined preconditions for `scroll'. -- Redefine in descendants if needed. do Result := True end on_uideactivate_user_precondition (f_undoable: INTEGER): BOOLEAN -- User-defined preconditions for `on_uideactivate'. -- Redefine in descendants if needed. do Result := True end on_in_place_deactivate_user_precondition: BOOLEAN -- User-defined preconditions for `on_in_place_deactivate'. -- Redefine in descendants if needed. do Result := True end discard_undo_state_user_precondition: BOOLEAN -- User-defined preconditions for `discard_undo_state'. -- Redefine in descendants if needed. do Result := True end deactivate_and_undo_user_precondition: BOOLEAN -- User-defined preconditions for `deactivate_and_undo'. -- Redefine in descendants if needed. do Result := True end on_pos_rect_change_user_precondition (lprc_pos_rect: TAG_RECT_RECORD): BOOLEAN -- User-defined preconditions for `on_pos_rect_change'. -- Redefine in descendants if needed. do Result := True end feature -- Basic Operations can_in_place_activate -- No description available. require can_in_place_activate_user_precondition: can_in_place_activate_user_precondition deferred end on_in_place_activate -- No description available. require on_in_place_activate_user_precondition: on_in_place_activate_user_precondition deferred end on_uiactivate -- No description available. require on_uiactivate_user_precondition: on_uiactivate_user_precondition deferred end get_window_context (pp_frame: CELL [IOLE_IN_PLACE_FRAME_INTERFACE]; pp_doc: CELL [IOLE_IN_PLACE_UIWINDOW_INTERFACE]; lprc_pos_rect: TAG_RECT_RECORD; lprc_clip_rect: TAG_RECT_RECORD; lp_frame_info: TAG_OIFI_RECORD) -- No description available. -- `pp_frame' [out]. -- `pp_doc' [out]. -- `lprc_pos_rect' [out]. -- `lprc_clip_rect' [out]. -- `lp_frame_info' [in, out]. require non_void_pp_frame: pp_frame /= Void non_void_pp_doc: pp_doc /= Void non_void_lprc_pos_rect: lprc_pos_rect /= Void valid_lprc_pos_rect: lprc_pos_rect.item /= default_pointer non_void_lprc_clip_rect: lprc_clip_rect /= Void valid_lprc_clip_rect: lprc_clip_rect.item /= default_pointer non_void_lp_frame_info: lp_frame_info /= Void valid_lp_frame_info: lp_frame_info.item /= default_pointer get_window_context_user_precondition: get_window_context_user_precondition (pp_frame, pp_doc, lprc_pos_rect, lprc_clip_rect, lp_frame_info) deferred ensure valid_pp_frame: pp_frame.item /= Void valid_pp_doc: pp_doc.item /= Void end scroll (scroll_extant: TAG_SIZE_RECORD) -- No description available. -- `scroll_extant' [in]. require non_void_scroll_extant: scroll_extant /= Void valid_scroll_extant: scroll_extant.item /= default_pointer scroll_user_precondition: scroll_user_precondition (scroll_extant) deferred end on_uideactivate (f_undoable: INTEGER) -- No description available. -- `f_undoable' [in]. require on_uideactivate_user_precondition: on_uideactivate_user_precondition (f_undoable) deferred end on_in_place_deactivate -- No description available. require on_in_place_deactivate_user_precondition: on_in_place_deactivate_user_precondition deferred end discard_undo_state -- No description available. require discard_undo_state_user_precondition: discard_undo_state_user_precondition deferred end deactivate_and_undo -- No description available. require deactivate_and_undo_user_precondition: deactivate_and_undo_user_precondition deferred end on_pos_rect_change (lprc_pos_rect: TAG_RECT_RECORD) -- No description available. -- `lprc_pos_rect' [in]. require non_void_lprc_pos_rect: lprc_pos_rect /= Void valid_lprc_pos_rect: lprc_pos_rect.item /= default_pointer on_pos_rect_change_user_precondition: on_pos_rect_change_user_precondition (lprc_pos_rect) deferred end note 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 -- IOLE_IN_PLACE_SITE_INTERFACE