xref: /aoo4110/main/sw/source/ui/fldui/flddok.src (revision b1cdbd2c)
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
24#include "globals.hrc"
25#include "fldtdlg.hrc"
26#include "helpid.h"
27TabPage TP_FLD_DOK
28{
29	HelpID = HID_FLD_DOK ;
30	SVLook = TRUE ;
31	Hide = TRUE ;
32	Size = MAP_APPFONT ( 260 , 185 ) ;
33	FixedText FT_DOKTYPE
34	{
35		Pos = MAP_APPFONT ( 6 , 3 ) ;
36		Size = MAP_APPFONT ( 76 , 8 ) ;
37		Text [ en-US ] = "~Type" ;
38		Left = TRUE ;
39	};
40	ListBox LB_DOKTYPE
41	{
42	    HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKTYPE";
43		Border = TRUE ;
44		Pos = MAP_APPFONT ( 6 , 14 ) ;
45		Size = MAP_APPFONT ( 76 , 165 ) ;
46		TabStop = TRUE ;
47		Sort = TRUE ;
48		AutoHScroll = TRUE ;
49	};
50	FixedText FT_DOKSELECTION
51	{
52		Pos = MAP_APPFONT ( 88 , 3 ) ;
53		Size = MAP_APPFONT ( 76 , 8 ) ;
54		Text [ en-US ] = "S~elect" ;
55		Left = TRUE ;
56	};
57	ListBox LB_DOKSELECTION
58	{
59	    HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKSELECTION";
60		Border = TRUE ;
61		Pos = MAP_APPFONT ( 88 , 15 ) ;
62		Size = MAP_APPFONT ( 76 , 165 ) ;
63		TabStop = TRUE ;
64	};
65	FixedText FT_DOKFORMAT
66	{
67		Pos = MAP_APPFONT ( 170 , 3 ) ;
68		Size = MAP_APPFONT ( 84 , 8 ) ;
69		Left = TRUE ;
70		Text [ en-US ] = "F~ormat" ;
71	};
72	ListBox LB_DOKFORMAT
73	{
74	    HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKFORMAT";
75		Border = TRUE ;
76		Pos = MAP_APPFONT ( 170 , 14 ) ;
77		Size = MAP_APPFONT ( 84 , 151 ) ;
78		TabStop = TRUE ;
79		DropDown = FALSE ;
80		Sort = TRUE ;
81		AutoHScroll = TRUE ;
82	};
83	ListBox LB_DOKNUMFORMAT
84	{
85	    HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKNUMFORMAT";
86		Border = TRUE ;
87		Pos = MAP_APPFONT ( 170 , 14 ) ;
88		Size = MAP_APPFONT ( 84 , 151 ) ;
89		TabStop = TRUE ;
90		AutoHScroll = TRUE ;
91		Hide = TRUE ;
92	};
93	FixedText FT_DOKVALUE
94	{
95		Pos = MAP_APPFONT ( 170 , 155 ) ;
96		Size = MAP_APPFONT ( 84 , 8 ) ;
97		Text [ en-US ] = "O~ffset" ;
98		Left = TRUE ;
99		Hide = TRUE ;
100	};
101	Edit ED_DOKVALUE
102	{
103	    HelpID = "sw:Edit:TP_FLD_DOK:ED_DOKVALUE";
104		Border = TRUE ;
105		Pos = MAP_APPFONT ( 170 , 167 ) ;
106		Size = MAP_APPFONT ( 84 , 12 ) ;
107		TabStop = TRUE ;
108		Left = TRUE ;
109		Hide = TRUE ;
110	};
111	NumericField ED_DOKLEVEL
112	{
113	    HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKLEVEL";
114		Border = TRUE ;
115		Pos = MAP_APPFONT ( 170 , 167 ) ;
116		Size = MAP_APPFONT ( 84 , 12 ) ;
117		Text = "1" ;
118		TabStop = TRUE ;
119		Left = TRUE ;
120		Repeat = TRUE ;
121		Spin = TRUE ;
122		Hide = TRUE ;
123		Minimum = 1 ;
124		Maximum = 10 ;
125		First = 1 ;
126		SpinSize = 1 ;
127	};
128	NumericField ED_DOKDATEOFF
129	{
130	    HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKDATEOFF";
131		Border = TRUE ;
132		Pos = MAP_APPFONT ( 170 , 167 ) ;
133		Size = MAP_APPFONT ( 84 , 12 ) ;
134		Text = "0" ;
135		TabStop = TRUE ;
136		Left = TRUE ;
137		Repeat = TRUE ;
138		Spin = TRUE ;
139		Hide = TRUE ;
140		SpinSize = 1 ;
141	};
142	CheckBox CB_DOKFIXEDCONTENT
143	{
144	    HelpID = "sw:CheckBox:TP_FLD_DOK:CB_DOKFIXEDCONTENT";
145		Pos = MAP_APPFONT ( 170 , 170 ) ;
146		Size = MAP_APPFONT ( 72 , 10 ) ;
147		TabStop = TRUE ;
148		Text [ en-US ] = "~Fixed content" ;
149	};
150	Bitmap BMP_DOKROOT_OPENED
151	{
152		File = "plus.bmp" ;
153	};
154	Bitmap BMP_DOKROOT_CLOSED
155	{
156		File = "minus.bmp" ;
157	};
158	String STR_DOKDATEOFF
159	{
160		Text [ en-US ] = "Offs~et in days" ;
161	};
162	String STR_DOKTIMEOFF
163	{
164		Text [ en-US ] = "Offs~et in minutes" ;
165	};
166	Text [ en-US ] = "Document" ;
167};
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200