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_OBJECT_INTERFACE inherit IOLE_WINDOW_INTERFACE feature -- Status Report in_place_deactivate_user_precondition: BOOLEAN -- User-defined preconditions for `in_place_deactivate'. -- Redefine in descendants if needed. do Result := True end uideactivate_user_precondition: BOOLEAN -- User-defined preconditions for `uideactivate'. -- Redefine in descendants if needed. do Result := True end set_object_rects_user_precondition (lprc_pos_rect: TAG_RECT_RECORD; lprc_clip_rect: TAG_RECT_RECORD): BOOLEAN -- User-defined preconditions for `set_object_rects'. -- Redefine in descendants if needed. do Result := True end reactivate_and_undo_user_precondition: BOOLEAN -- User-defined preconditions for `reactivate_and_undo'. -- Redefine in descendants if needed. do Result := True end feature -- Basic Operations in_place_deactivate -- No description available. require in_place_deactivate_user_precondition: in_place_deactivate_user_precondition deferred end uideactivate -- No description available. require uideactivate_user_precondition: uideactivate_user_precondition deferred end set_object_rects (lprc_pos_rect: TAG_RECT_RECORD; lprc_clip_rect: TAG_RECT_RECORD) -- No description available. -- `lprc_pos_rect' [in]. -- `lprc_clip_rect' [in]. require 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 set_object_rects_user_precondition: set_object_rects_user_precondition (lprc_pos_rect, lprc_clip_rect) deferred end reactivate_and_undo -- No description available. require reactivate_and_undo_user_precondition: reactivate_and_undo_user_precondition 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_OBJECT_INTERFACE