1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com
{ module sun
{ module star
{ module awt
{
25 /** specifies attributes for the VCL window implementation.
27 <p><b>IMPORTANT:</b> These constants have to be disjunct with
28 constants in WindowAttribute.</p>
32 published constants VclWindowPeerAttribute
35 const long HSCROLL
= 256;
38 const long VSCROLL
= 512;
41 const long LEFT
= 1024;
44 const long CENTER
= 2048;
47 const long RIGHT
= 4096;
50 const long SPIN
= 8192;
53 const long SORT
= 16384;
56 const long DROPDOWN
= 32768;
59 const long DEFBUTTON
= 65536;
62 const long READONLY = 262144;
65 const long CLIPCHILDREN
= 524288;
68 const long NOBORDER
= 1048576;
71 const long GROUP
= 2097152;
74 const long OK
= 4194304;
77 const long OK_CANCEL
= 8388608;
80 const long YES_NO
= 16777216;
83 const long YES_NO_CANCEL
= 33554432;
86 const long RETRY_CANCEL
= 67108864;
89 const long DEF_OK
= 134217728;
92 const long DEF_CANCEL
= 268435456;
95 const long DEF_RETRY
= 536870912;
98 const long DEF_YES
= 1073741824;
101 const long DEF_NO
= -2147483648;
104 const long NOLABEL
= 536870912; //added for issue79712
107 const long AUTOHSCROLL
= 1073741824;
110 const long AUTOVSCROLL
= -2147483648;
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */