merge the formfield patch from ooo-build
[ooovba.git] / sd / source / ui / dlg / layeroptionsdlg.src
blobb338bb7e041ff38ca02eba2243124557ef027fb6
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: layeroptionsdlg.src,v $
10  * $Revision: 1.4 $
11  *
12  * This file is part of OpenOffice.org.
13  *
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.
17  *
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).
23  *
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.
28  *
29  ************************************************************************/
31 #include "app.hrc"
32 #include "layeroptionsdlg.hrc"
34 ModalDialog DLG_INSERT_LAYER
36     HelpID = SID_INSERTLAYER ;
37     OutputSize = TRUE ;
38     SVLook = TRUE ;
39     Size = MAP_APPFONT ( 200 , 172 ) ;
40     Text [ en-US ] = "Insert Layer" ;
41     Moveable = TRUE ;
43     FixedText FT_NAME
44     {
45         Pos = MAP_APPFONT ( 6 , 6 ) ;
46         Size = MAP_APPFONT ( 188 , 8 ) ;
47         Text [ en-US ] = "~Name" ;
48     };
50     Edit EDT_NAME
51     {
52         Border = TRUE ;
53         Pos = MAP_APPFONT ( 6 , 17 ) ;
54         Size = MAP_APPFONT ( 188 , 12 ) ;
55         TabStop = TRUE ;
56     };
58     FixedText FT_TITLE
59     {
60         Pos = MAP_APPFONT ( 6 , 32 ) ;
61         Size = MAP_APPFONT ( 188 , 8 ) ;
62         Text [ en-US ] = "~Title" ;
63     };
65     Edit EDT_TITLE
66     {
67         Border = TRUE ;
68         Pos = MAP_APPFONT ( 6 , 43 ) ;
69         Size = MAP_APPFONT ( 188 , 12 ) ;
70         TabStop = TRUE ;
71     };
73     FixedText FT_DESCRIPTION
74     {
75         Pos = MAP_APPFONT ( 6 , 58 ) ;
76         Size = MAP_APPFONT ( 188 , 8 ) ;
77         Text [ en-US ] = "~Description" ;
78     };
80     MultiLineEdit EDT_DESCRIPTION
81     {
82         Border = TRUE ;
83         Pos = MAP_APPFONT ( 6 , 69 ) ;
84         Size = MAP_APPFONT ( 188 , 34 ) ;
85         TabStop = TRUE ;
86         IgnoreTab = TRUE;
87         VScroll = TRUE;
88     };
90     CheckBox CBX_VISIBLE
91     {
92         Pos = MAP_APPFONT ( 6 , 106 ) ;
93         Size = MAP_APPFONT ( 188 , 10 ) ;
94         Text [ en-US ] = "~Visible" ;
95         TabStop = TRUE ;
96     };
98     CheckBox CBX_PRINTABLE
99     {
100         Pos = MAP_APPFONT ( 6 , 119 ) ;
101         Size = MAP_APPFONT ( 188 , 10 ) ;
102         Text [ en-US ] = "~Printable" ;
103         TabStop = TRUE ;
104     };
106     CheckBox CBX_LOCKED
107     {
108         Pos = MAP_APPFONT ( 6 , 132 ) ;
109         Size = MAP_APPFONT ( 188 , 10 ) ;
110         Text [ en-US ] = "~Locked" ;
111         TabStop = TRUE ;
112     };
113     
114     // divider
115     FixedLine FL_SEPARATOR_B
116     {
117         Pos = MAP_APPFONT ( 0 , 144 ) ;
118         Size = MAP_APPFONT ( 200 , 4 ) ;
119     };
121     // Buttons
122     HelpButton BTN_HELP
123     {
124         Pos = MAP_APPFONT ( 6, 152 ) ;
125         Size = MAP_APPFONT ( 50 , 14 ) ;
126         TabStop = TRUE ;
127     };
128     OKButton BTN_OK
129     {
130         Pos = MAP_APPFONT ( 200 - (50 + 50 + 9), 152) ;
131         Size = MAP_APPFONT ( 50 , 14 ) ;
132         TabStop = TRUE ;
133         DefButton = TRUE ;
134     };
135     CancelButton BTN_CANCEL
136     {
137         Pos = MAP_APPFONT ( 200 - (50 + 6), 152) ;
138         Size = MAP_APPFONT ( 50 , 14 ) ;
139         TabStop = TRUE ;
140     };