xref: /aoo4110/main/sw/source/ui/fldui/inpdlg.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 "fldui.hrc"
25#include "inpdlg.hrc"
26#include "helpid.h"
27ModalDialog DLG_FLD_INPUT
28{
29	HelpID = HID_FLD_INPUT ;
30	OutputSize = TRUE ;
31	Hide = TRUE ;
32	SVLook = TRUE ;
33	Size = MAP_APPFONT ( 194 , 119 ) ;
34	Text [ en-US ] = "Input Field" ;
35	Moveable = TRUE ;
36	/*    FixedText FT_LABEL
37	{
38		Pos = MAP_APPFONT ( 12 , 14 ) ;
39		Size = MAP_APPFONT ( 115 , 8 ) ;
40		Text [ en-US ] = "Input" ;
41		Left = TRUE ;
42	};*/
43	Edit ED_LABEL
44	{
45	    HelpID = "sw:Edit:DLG_FLD_INPUT:ED_LABEL";
46		Border = TRUE ;
47		Pos = MAP_APPFONT ( 12 , 14 ) ;
48		Size = MAP_APPFONT ( 115 , 12 ) ;
49		TabStop = TRUE ;
50		Left = TRUE ;
51		Text [ en-US ] = "Input" ;
52		Readonly = TRUE ;
53	};
54	MultiLineEdit ED_EDIT
55	{
56	    HelpID = "sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT";
57		Border = TRUE ;
58		Pos = MAP_APPFONT ( 12 , 32 ) ;
59		Size = MAP_APPFONT ( 115 , 72 ) ;
60		TabStop = TRUE ;
61		Left = TRUE ;
62	};
63    FixedLine FL_EDIT
64	{
65		Pos = MAP_APPFONT ( 6 , 3 ) ;
66        Size = MAP_APPFONT ( 127 , 8 ) ;
67		Text [ en-US ] = "Edit" ;
68	};
69	OKButton BT_OK
70	{
71		Pos = MAP_APPFONT ( 139 , 6 ) ;
72		Size = MAP_APPFONT ( 50 , 15 ) ;
73		TabStop = TRUE ;
74		DefButton = TRUE ;
75	};
76	CancelButton BT_CANCEL
77	{
78		Pos = MAP_APPFONT ( 139 , 23 ) ;
79		Size = MAP_APPFONT ( 50 , 15 ) ;
80		TabStop = TRUE ;
81	};
82	PushButton PB_NEXT
83	{
84	    HelpID = "sw:PushButton:DLG_FLD_INPUT:PB_NEXT";
85		Pos = MAP_APPFONT ( 139 , 40 ) ;
86		Size = MAP_APPFONT ( 50 , 15 ) ;
87		TabStop = TRUE ;
88		Hide = TRUE ;
89		Text [ en-US ] = "~Next" ;
90	};
91	HelpButton PB_HELP
92	{
93		Pos = MAP_APPFONT ( 139 , 60 ) ;
94		Size = MAP_APPFONT ( 50 , 15 ) ;
95		TabStop = TRUE ;
96	};
97};
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131