1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: VclWindowPeerAttribute.idl,v $
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 ************************************************************************/
30 #ifndef __com_sun_star_awt_VclWindowPeerAttribute_idl__
31 #define __com_sun_star_awt_VclWindowPeerAttribute_idl__
34 //=============================================================================
36 module com
{ module sun
{ module star
{ module awt
{
38 //=============================================================================
40 /** specifies attributes for the VCL window implementation.
42 <p><b>IMPORTANT:</b> These constands have to be disjunct with
43 constants in <type>WindowAttribute</type>.</p>
47 published constants VclWindowPeerAttribute
49 //-------------------------------------------------------------------------
51 const long HSCROLL
= 256;
53 //-------------------------------------------------------------------------
55 const long VSCROLL
= 512;
57 //-------------------------------------------------------------------------
59 const long LEFT
= 1024;
61 //-------------------------------------------------------------------------
63 const long CENTER
= 2048;
65 //-------------------------------------------------------------------------
67 const long RIGHT
= 4096;
69 //-------------------------------------------------------------------------
71 const long SPIN
= 8192;
73 //-------------------------------------------------------------------------
75 const long SORT
= 16384;
77 //-------------------------------------------------------------------------
79 const long DROPDOWN
= 32768;
81 //-------------------------------------------------------------------------
83 const long DEFBUTTON
= 65536;
85 //-------------------------------------------------------------------------
87 const long READONLY = 262144;
89 //-------------------------------------------------------------------------
91 const long CLIPCHILDREN
= 524288;
93 //-------------------------------------------------------------------------
95 const long NOBORDER
= 1048576;
97 //-------------------------------------------------------------------------
99 const long GROUP
= 2097152;
101 //-------------------------------------------------------------------------
103 const long OK
= 4194304;
105 //-------------------------------------------------------------------------
107 const long OK_CANCEL
= 8388608;
109 //-------------------------------------------------------------------------
111 const long YES_NO
= 16777216;
113 //-------------------------------------------------------------------------
115 const long YES_NO_CANCEL
= 33554432;
117 //-------------------------------------------------------------------------
119 const long RETRY_CANCEL
= 67108864;
121 //-------------------------------------------------------------------------
123 const long DEF_OK
= 134217728;
125 //-------------------------------------------------------------------------
127 const long DEF_CANCEL
= 268435456;
129 //-------------------------------------------------------------------------
131 const long DEF_RETRY
= 536870912;
133 //-------------------------------------------------------------------------
135 const long DEF_YES
= 1073741824;
137 //-------------------------------------------------------------------------
139 const long DEF_NO
= -2147483648;
141 //-------------------------------------------------------------------------
143 const long NOLABEL
= 536870912; //added for issue79712
145 //-------------------------------------------------------------------------
147 const long AUTOHSCROLL
= 1073741824;
149 //-------------------------------------------------------------------------
151 const long AUTOVSCROLL
= -2147483648;
155 //=============================================================================