Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / awt / VclWindowPeerAttribute.idl
blob0d051af0527ece2333e2c58219f2d88a18d29559
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
28 #ifndef __com_sun_star_awt_VclWindowPeerAttribute_idl__
29 #define __com_sun_star_awt_VclWindowPeerAttribute_idl__
32 //=============================================================================
34 module com { module sun { module star { module awt {
36 //=============================================================================
38 /** specifies attributes for the VCL window implementation.
40 <p><b>IMPORTANT:</b> These constants have to be disjunct with
41 constants in <type>WindowAttribute</type>.</p>
43 @deprecated
45 published constants VclWindowPeerAttribute
47 //-------------------------------------------------------------------------
49 const long HSCROLL = 256;
51 //-------------------------------------------------------------------------
53 const long VSCROLL = 512;
55 //-------------------------------------------------------------------------
57 const long LEFT = 1024;
59 //-------------------------------------------------------------------------
61 const long CENTER = 2048;
63 //-------------------------------------------------------------------------
65 const long RIGHT = 4096;
67 //-------------------------------------------------------------------------
69 const long SPIN = 8192;
71 //-------------------------------------------------------------------------
73 const long SORT = 16384;
75 //-------------------------------------------------------------------------
77 const long DROPDOWN = 32768;
79 //-------------------------------------------------------------------------
81 const long DEFBUTTON = 65536;
83 //-------------------------------------------------------------------------
85 const long READONLY = 262144;
87 //-------------------------------------------------------------------------
89 const long CLIPCHILDREN = 524288;
91 //-------------------------------------------------------------------------
93 const long NOBORDER = 1048576;
95 //-------------------------------------------------------------------------
97 const long GROUP = 2097152;
99 //-------------------------------------------------------------------------
101 const long OK = 4194304;
103 //-------------------------------------------------------------------------
105 const long OK_CANCEL = 8388608;
107 //-------------------------------------------------------------------------
109 const long YES_NO = 16777216;
111 //-------------------------------------------------------------------------
113 const long YES_NO_CANCEL = 33554432;
115 //-------------------------------------------------------------------------
117 const long RETRY_CANCEL = 67108864;
119 //-------------------------------------------------------------------------
121 const long DEF_OK = 134217728;
123 //-------------------------------------------------------------------------
125 const long DEF_CANCEL = 268435456;
127 //-------------------------------------------------------------------------
129 const long DEF_RETRY = 536870912;
131 //-------------------------------------------------------------------------
133 const long DEF_YES = 1073741824;
135 //-------------------------------------------------------------------------
137 const long DEF_NO = -2147483648;
139 //-------------------------------------------------------------------------
141 const long NOLABEL = 536870912; //added for issue79712
143 //-------------------------------------------------------------------------
145 const long AUTOHSCROLL = 1073741824;
147 //-------------------------------------------------------------------------
149 const long AUTOVSCROLL = -2147483648;
153 //=============================================================================
155 }; }; }; };
157 #endif
159 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */