xref: /trunk/main/basctl/source/inc/dlgeddef.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
1*96821c26SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*96821c26SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*96821c26SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*96821c26SAndrew Rist  * distributed with this work for additional information
6*96821c26SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*96821c26SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*96821c26SAndrew Rist  * "License"); you may not use this file except in compliance
9*96821c26SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*96821c26SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*96821c26SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*96821c26SAndrew Rist  * software distributed under the License is distributed on an
15*96821c26SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*96821c26SAndrew Rist  * KIND, either express or implied.  See the License for the
17*96821c26SAndrew Rist  * specific language governing permissions and limitations
18*96821c26SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*96821c26SAndrew Rist  *************************************************************/
21*96821c26SAndrew Rist 
22*96821c26SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _BASCTL_DLGEDDEF_HXX
25cdf0e10cSrcweir #define _BASCTL_DLGEDDEF_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <tools/solar.h>
28cdf0e10cSrcweir 
29cdf0e10cSrcweir 
30cdf0e10cSrcweir const sal_uInt32 DlgInventor = sal_uInt32('D')*0x00000001+
31cdf0e10cSrcweir                            sal_uInt32('L')*0x00000100+
32cdf0e10cSrcweir                            sal_uInt32('G')*0x00010000+
33cdf0e10cSrcweir                            sal_uInt32('1')*0x01000000;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir 
36cdf0e10cSrcweir #define OBJ_DLG_CONTROL         ((sal_uInt16) 1)
37cdf0e10cSrcweir #define OBJ_DLG_DIALOG          ((sal_uInt16) 2)
38cdf0e10cSrcweir #define OBJ_DLG_PUSHBUTTON      ((sal_uInt16) 3)
39cdf0e10cSrcweir #define OBJ_DLG_RADIOBUTTON     ((sal_uInt16) 4)
40cdf0e10cSrcweir #define OBJ_DLG_CHECKBOX        ((sal_uInt16) 5)
41cdf0e10cSrcweir #define OBJ_DLG_LISTBOX         ((sal_uInt16) 6)
42cdf0e10cSrcweir #define OBJ_DLG_COMBOBOX        ((sal_uInt16) 7)
43cdf0e10cSrcweir #define OBJ_DLG_GROUPBOX        ((sal_uInt16) 8)
44cdf0e10cSrcweir #define OBJ_DLG_EDIT            ((sal_uInt16) 9)
45cdf0e10cSrcweir #define OBJ_DLG_FIXEDTEXT       ((sal_uInt16)10)
46cdf0e10cSrcweir #define OBJ_DLG_IMAGECONTROL    ((sal_uInt16)11)
47cdf0e10cSrcweir #define OBJ_DLG_PROGRESSBAR     ((sal_uInt16)12)
48cdf0e10cSrcweir #define OBJ_DLG_HSCROLLBAR      ((sal_uInt16)13)
49cdf0e10cSrcweir #define OBJ_DLG_VSCROLLBAR      ((sal_uInt16)14)
50cdf0e10cSrcweir #define OBJ_DLG_HFIXEDLINE      ((sal_uInt16)15)
51cdf0e10cSrcweir #define OBJ_DLG_VFIXEDLINE      ((sal_uInt16)16)
52cdf0e10cSrcweir #define OBJ_DLG_DATEFIELD       ((sal_uInt16)17)
53cdf0e10cSrcweir #define OBJ_DLG_TIMEFIELD       ((sal_uInt16)18)
54cdf0e10cSrcweir #define OBJ_DLG_NUMERICFIELD    ((sal_uInt16)19)
55cdf0e10cSrcweir #define OBJ_DLG_CURRENCYFIELD   ((sal_uInt16)20)
56cdf0e10cSrcweir #define OBJ_DLG_FORMATTEDFIELD  ((sal_uInt16)21)
57cdf0e10cSrcweir #define OBJ_DLG_PATTERNFIELD    ((sal_uInt16)22)
58cdf0e10cSrcweir #define OBJ_DLG_FILECONTROL     ((sal_uInt16)23)
59cdf0e10cSrcweir #define OBJ_DLG_TREECONTROL     ((sal_uInt16)24)
60cdf0e10cSrcweir 
61cdf0e10cSrcweir // control properties
62cdf0e10cSrcweir #define DLGED_PROP_BACKGROUNDCOLOR      ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BackgroundColor" ) )
63cdf0e10cSrcweir #define DLGED_PROP_DROPDOWN             ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Dropdown" ) )
64cdf0e10cSrcweir #define DLGED_PROP_FORMATSSUPPLIER      ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FormatsSupplier" ) )
65cdf0e10cSrcweir #define DLGED_PROP_HEIGHT               ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Height" ) )
66cdf0e10cSrcweir #define DLGED_PROP_LABEL                ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Label" ) )
67cdf0e10cSrcweir #define DLGED_PROP_NAME                 ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) )
68cdf0e10cSrcweir #define DLGED_PROP_ORIENTATION          ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Orientation" ) )
69cdf0e10cSrcweir #define DLGED_PROP_POSITIONX            ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PositionX" ) )
70cdf0e10cSrcweir #define DLGED_PROP_POSITIONY            ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PositionY" ) )
71cdf0e10cSrcweir #define DLGED_PROP_STEP                 ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Step" ) )
72cdf0e10cSrcweir #define DLGED_PROP_TABINDEX             ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TabIndex" ) )
73cdf0e10cSrcweir #define DLGED_PROP_TEXTCOLOR            ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TextColor" ) )
74cdf0e10cSrcweir #define DLGED_PROP_TEXTLINECOLOR        ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TextLineColor" ) )
75cdf0e10cSrcweir #define DLGED_PROP_WIDTH                ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Width" ) )
76cdf0e10cSrcweir #define DLGED_PROP_DECORATION           ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Decoration" ) )
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 
79cdf0e10cSrcweir #endif // _BASCTL_DLGEDDEF_HXX
80