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 IQUICK_ACTIVATE_INTERFACE inherit ECOM_INTERFACE feature -- Status Report quick_activate_user_precondition (p_qa_container: TAG_QACONTAINER_RECORD; p_qa_control: TAG_QACONTROL_RECORD): BOOLEAN -- User-defined preconditions for `quick_activate'. -- Redefine in descendants if needed. do Result := True end set_content_extent_user_precondition (psizel: TAG_SIZEL_RECORD): BOOLEAN -- User-defined preconditions for `set_content_extent'. -- Redefine in descendants if needed. do Result := True end get_content_extent_user_precondition (psizel: TAG_SIZEL_RECORD): BOOLEAN -- User-defined preconditions for `get_content_extent'. -- Redefine in descendants if needed. do Result := True end feature -- Basic Operations quick_activate (p_qa_container: TAG_QACONTAINER_RECORD; p_qa_control: TAG_QACONTROL_RECORD) -- No description available. -- `p_qa_container' [in]. -- `p_qa_control' [out]. require non_void_p_qa_container: p_qa_container /= Void valid_p_qa_container: p_qa_container.item /= default_pointer non_void_p_qa_control: p_qa_control /= Void valid_p_qa_control: p_qa_control.item /= default_pointer quick_activate_user_precondition: quick_activate_user_precondition (p_qa_container, p_qa_control) deferred end set_content_extent (psizel: TAG_SIZEL_RECORD) -- No description available. -- `psizel' [in]. require non_void_psizel: psizel /= Void valid_psizel: psizel.item /= default_pointer set_content_extent_user_precondition: set_content_extent_user_precondition (psizel) deferred end get_content_extent (psizel: TAG_SIZEL_RECORD) -- No description available. -- `psizel' [out]. require non_void_psizel: psizel /= Void valid_psizel: psizel.item /= default_pointer get_content_extent_user_precondition: get_content_extent_user_precondition (psizel) 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 -- IQUICK_ACTIVATE_INTERFACE