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_UIWINDOW_INTERFACE inherit IOLE_WINDOW_INTERFACE feature -- Status Report get_border_user_precondition (lprect_border: TAG_RECT_RECORD): BOOLEAN -- User-defined preconditions for `get_border'. -- Redefine in descendants if needed. do Result := True end request_border_space_user_precondition (pborderwidths: TAG_RECT_RECORD): BOOLEAN -- User-defined preconditions for `request_border_space'. -- Redefine in descendants if needed. do Result := True end set_border_space_user_precondition (pborderwidths: TAG_RECT_RECORD): BOOLEAN -- User-defined preconditions for `set_border_space'. -- Redefine in descendants if needed. do Result := True end set_active_object_user_precondition (p_active_object: IOLE_IN_PLACE_ACTIVE_OBJECT_INTERFACE; psz_obj_name: STRING): BOOLEAN -- User-defined preconditions for `set_active_object'. -- Redefine in descendants if needed. do Result := True end feature -- Basic Operations get_border (lprect_border: TAG_RECT_RECORD) -- No description available. -- `lprect_border' [out]. require non_void_lprect_border: lprect_border /= Void valid_lprect_border: lprect_border.item /= default_pointer get_border_user_precondition: get_border_user_precondition (lprect_border) deferred end request_border_space (pborderwidths: TAG_RECT_RECORD) -- No description available. -- `pborderwidths' [in]. require non_void_pborderwidths: pborderwidths /= Void valid_pborderwidths: pborderwidths.item /= default_pointer request_border_space_user_precondition: request_border_space_user_precondition (pborderwidths) deferred end set_border_space (pborderwidths: TAG_RECT_RECORD) -- No description available. -- `pborderwidths' [in]. require non_void_pborderwidths: pborderwidths /= Void valid_pborderwidths: pborderwidths.item /= default_pointer set_border_space_user_precondition: set_border_space_user_precondition (pborderwidths) deferred end set_active_object (p_active_object: IOLE_IN_PLACE_ACTIVE_OBJECT_INTERFACE; psz_obj_name: STRING) -- No description available. -- `p_active_object' [in]. -- `psz_obj_name' [in]. require set_active_object_user_precondition: set_active_object_user_precondition (p_active_object, psz_obj_name) 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_UIWINDOW_INTERFACE