merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / inspection / PropertyLineElement.idl
blob84b4ad4cf73b9d29d862a32647f29392e9c4d2d7
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: PropertyLineElement.idl,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_inspection_PropertyLineElement_idl__
32 #define __com_sun_star_inspection_PropertyLineElement_idl__
34 //=============================================================================
35 module com { module sun { module star { module inspection {
37 //-----------------------------------------------------------------------------
38 /** describes elements of a single line in an object inspector, used to represent a
39 single property
41 @see XPropertyHandler::describePropertyLine
42 @see LineDescriptor
44 @since OOo 2.0.3
46 constants PropertyLineElement
48 /// specifies the input control in a group of controls related to a single property
49 const short InputControl = 0x01;
50 /// specifies the primary button (if present) in a group of controls related to a single property
51 const short PrimaryButton = 0x02;
52 /// specifies the secondary button (if present) in a group of controls related to a single property
53 const short SecondaryButton = 0x04;
55 /// specifies all elements
56 const short All = 0xFF;
59 //=============================================================================
61 }; }; }; };
63 #endif