1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir#ifndef __offapi_com_sun_star_view_XFormLayerAccess_idl__ 29*cdf0e10cSrcweir#define __offapi_com_sun_star_view_XFormLayerAccess_idl__ 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir#ifndef __com_sun_star_view_XControlAccess_idl__ 32*cdf0e10cSrcweir#include <com/sun/star/view/XControlAccess.idl> 33*cdf0e10cSrcweir#endif 34*cdf0e10cSrcweir#ifndef __com_sun_star_form_XForm_idl__ 35*cdf0e10cSrcweir#include <com/sun/star/form/XForm.idl> 36*cdf0e10cSrcweir#endif 37*cdf0e10cSrcweir#ifndef __com_sun_star_form_runtime_XFormController_idl__ 38*cdf0e10cSrcweir#include <com/sun/star/form/runtime/XFormController.idl> 39*cdf0e10cSrcweir#endif 40*cdf0e10cSrcweir#ifndef __com_sun_star_lang_IllegalArgumentException_idl__ 41*cdf0e10cSrcweir#include <com/sun/star/lang/IllegalArgumentException.idl> 42*cdf0e10cSrcweir#endif 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir//============================================================================= 45*cdf0e10cSrcweir 46*cdf0e10cSrcweirmodule com { module sun { module star { module view { 47*cdf0e10cSrcweir 48*cdf0e10cSrcweir//============================================================================= 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir/** provides access to the form layer elements in a view 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir @since OOo 2.3 53*cdf0e10cSrcweir */ 54*cdf0e10cSrcweirinterface XFormLayerAccess 55*cdf0e10cSrcweir{ 56*cdf0e10cSrcweir /// provides access to form controls contained in the view 57*cdf0e10cSrcweir interface XControlAccess; 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir /** returns the <type scope="com::sun::star::form">FormController</type> 60*cdf0e10cSrcweir instance which operates on a given form. 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir <p>A form controller is a component which controls the user interaction 63*cdf0e10cSrcweir with the form layer, as long as the form is not in design mode.</p> 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir @return 66*cdf0e10cSrcweir the requested form controller, or <NULL/> if the view's 67*cdf0e10cSrcweir form layer is currently in design mode. Note that the returned 68*cdf0e10cSrcweir instance becomes non-functional as soon as the form layer is switched 69*cdf0e10cSrcweir to design mode. 70*cdf0e10cSrcweir 71*cdf0e10cSrcweir @see isDesignMode 72*cdf0e10cSrcweir @see setDesignMode 73*cdf0e10cSrcweir @see ::com::sun::star::form::runtime::FormController 74*cdf0e10cSrcweir @see ::com::sun::star::form::runtime::FormOperations 75*cdf0e10cSrcweir */ 76*cdf0e10cSrcweir ::com::sun::star::form::runtime::XFormController 77*cdf0e10cSrcweir getFormController( 78*cdf0e10cSrcweir [in] ::com::sun::star::form::XForm Form 79*cdf0e10cSrcweir ); 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir /** determines whether the view's form layer is currently in design 82*cdf0e10cSrcweir or alive mode 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir <p><em>Note</em>: This is a convenience method. In the user interface, 85*cdf0e10cSrcweir the design mode is coupled with the <code>.uno:SwitchControlDesignMode</code> 86*cdf0e10cSrcweir feature (see <type scope="com::sun::star::frame">XDispatchProvider</type>), 87*cdf0e10cSrcweir and asking for the current mode is the same as asking for the state of this 88*cdf0e10cSrcweir feature.</p> 89*cdf0e10cSrcweir */ 90*cdf0e10cSrcweir boolean isFormDesignMode(); 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir /** determines whether the view's form layer is currently in design 93*cdf0e10cSrcweir or alive mode 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir <p><em>Note</em>: This is a convenience method. In the user interface, 96*cdf0e10cSrcweir the design mode is coupled with the <code>.uno:SwitchControlDesignMode</code> 97*cdf0e10cSrcweir feature (see <type scope="com::sun::star::frame">XDispatchProvider</type>), 98*cdf0e10cSrcweir and changing the current mode is the same as dispatching this feature URL.</p> 99*cdf0e10cSrcweir */ 100*cdf0e10cSrcweir void setFormDesignMode( [in] boolean DesignMode ); 101*cdf0e10cSrcweir}; 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir//============================================================================= 104*cdf0e10cSrcweir 105*cdf0e10cSrcweir}; }; }; }; 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir//============================================================================= 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir#endif 110