xref: /AOO41X/main/offapi/com/sun/star/awt/VclWindowPeerAttribute.idl (revision d1766043198e81d0bcfc626e12893e7b4d7e31ca)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_awt_VclWindowPeerAttribute_idl__
24#define __com_sun_star_awt_VclWindowPeerAttribute_idl__
25
26
27//=============================================================================
28
29 module com {  module sun {  module star {  module awt {
30
31//=============================================================================
32
33/** specifies attributes for the VCL window implementation.
34
35    <p><b>IMPORTANT:</b> These constands have to be disjunct with
36    constants in <type>WindowAttribute</type>.</p>
37
38    @deprecated
39 */
40published constants VclWindowPeerAttribute
41{
42    //-------------------------------------------------------------------------
43
44    const long HSCROLL = 256;
45
46    //-------------------------------------------------------------------------
47
48    const long VSCROLL = 512;
49
50    //-------------------------------------------------------------------------
51
52    const long LEFT = 1024;
53
54    //-------------------------------------------------------------------------
55
56    const long CENTER = 2048;
57
58    //-------------------------------------------------------------------------
59
60    const long RIGHT = 4096;
61
62    //-------------------------------------------------------------------------
63
64    const long SPIN = 8192;
65
66    //-------------------------------------------------------------------------
67
68    const long SORT = 16384;
69
70    //-------------------------------------------------------------------------
71
72    const long DROPDOWN = 32768;
73
74    //-------------------------------------------------------------------------
75
76    const long DEFBUTTON = 65536;
77
78    //-------------------------------------------------------------------------
79
80    const long READONLY = 262144;
81
82    //-------------------------------------------------------------------------
83
84    const long CLIPCHILDREN = 524288;
85
86    //-------------------------------------------------------------------------
87
88    const long NOBORDER = 1048576;
89
90    //-------------------------------------------------------------------------
91
92    const long GROUP = 2097152;
93
94    //-------------------------------------------------------------------------
95
96    const long OK = 4194304;
97
98    //-------------------------------------------------------------------------
99
100    const long OK_CANCEL = 8388608;
101
102    //-------------------------------------------------------------------------
103
104    const long YES_NO = 16777216;
105
106    //-------------------------------------------------------------------------
107
108    const long YES_NO_CANCEL = 33554432;
109
110    //-------------------------------------------------------------------------
111
112    const long RETRY_CANCEL = 67108864;
113
114    //-------------------------------------------------------------------------
115
116    const long DEF_OK = 134217728;
117
118    //-------------------------------------------------------------------------
119
120    const long DEF_CANCEL = 268435456;
121
122    //-------------------------------------------------------------------------
123
124    const long DEF_RETRY = 536870912;
125
126    //-------------------------------------------------------------------------
127
128    const long DEF_YES = 1073741824;
129
130    //-------------------------------------------------------------------------
131
132    const long DEF_NO = -2147483648;
133
134    //-------------------------------------------------------------------------
135
136    const long NOLABEL = 536870912; //added for issue79712
137
138    //-------------------------------------------------------------------------
139
140    const long AUTOHSCROLL = 1073741824;
141
142    //-------------------------------------------------------------------------
143
144    const long AUTOVSCROLL = -2147483648;
145
146};
147
148//=============================================================================
149
150}; }; }; };
151
152#endif
153