xref: /aoo42x/main/cui/source/dialogs/dlgname.src (revision b03844c4)
10e2af6afSAndrew Rist/**************************************************************
2*b03844c4Smseidel *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10*b03844c4Smseidel *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*b03844c4Smseidel *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19*b03844c4Smseidel *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir// include ------------------------------------------------------------------
25cdf0e10cSrcweir
26cdf0e10cSrcweir#include <cuires.hrc>
27cdf0e10cSrcweir#include "helpid.hrc"
28cdf0e10cSrcweir#include "dlgname.hrc"
29cdf0e10cSrcweir
30cdf0e10cSrcweir// RID_SVXDLG_NAME ----------------------------------------------------------
31cdf0e10cSrcweir
32cdf0e10cSrcweirModalDialog RID_SVXDLG_NAME
33cdf0e10cSrcweir{
34cdf0e10cSrcweir	HelpId = HID_DLG_NAME ;
35cdf0e10cSrcweir	OutputSize = TRUE ;
36cdf0e10cSrcweir	SvLook = TRUE ;
37*b03844c4Smseidel	Size = MAP_APPFONT ( 180, 63 ) ;
38cdf0e10cSrcweir	Text [ en-US ] = "Name" ;
39cdf0e10cSrcweir	Moveable = TRUE ;
40cdf0e10cSrcweir	FixedText FT_DESCRIPTION
41cdf0e10cSrcweir	{
42*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 6 ) ;
43*b03844c4Smseidel		Size = MAP_APPFONT ( 112, 8 ) ;
44cdf0e10cSrcweir		WordBreak = TRUE ;
45cdf0e10cSrcweir	};
46cdf0e10cSrcweir	Edit EDT_STRING
47cdf0e10cSrcweir	{
48*b03844c4Smseidel		HelpID = "cui:Edit:RID_SVXDLG_NAME:EDT_STRING" ;
49cdf0e10cSrcweir		Border = TRUE ;
50*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 17 ) ;
51*b03844c4Smseidel		Size = MAP_APPFONT ( 112, 12 ) ;
52cdf0e10cSrcweir		TabStop = TRUE ;
53cdf0e10cSrcweir	};
54cdf0e10cSrcweir	OKButton BTN_OK
55cdf0e10cSrcweir	{
56*b03844c4Smseidel		Pos = MAP_APPFONT ( 124, 6 ) ;
57*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
58cdf0e10cSrcweir		TabStop = TRUE ;
59cdf0e10cSrcweir		DefButton = TRUE ;
60cdf0e10cSrcweir	};
61cdf0e10cSrcweir	CancelButton BTN_CANCEL
62cdf0e10cSrcweir	{
63*b03844c4Smseidel		Pos = MAP_APPFONT ( 124, 23 ) ;
64*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
65cdf0e10cSrcweir		TabStop = TRUE ;
66cdf0e10cSrcweir	};
67cdf0e10cSrcweir	HelpButton BTN_HELP
68cdf0e10cSrcweir	{
69*b03844c4Smseidel		Pos = MAP_APPFONT ( 124, 43 ) ;
70*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
71cdf0e10cSrcweir		TabStop = TRUE ;
72cdf0e10cSrcweir	};
73cdf0e10cSrcweir};
74cdf0e10cSrcweir
75cdf0e10cSrcweir// #i68101#
76cdf0e10cSrcweir// RID_SVXDLG_OBJECT_NAME ----------------------------------------------------------
77cdf0e10cSrcweir
78cdf0e10cSrcweirModalDialog RID_SVXDLG_OBJECT_NAME
79cdf0e10cSrcweir{
80*b03844c4Smseidel	HelpId = HID_DLG_OBJECT_NAME ;
81cdf0e10cSrcweir	OutputSize = TRUE ;
82cdf0e10cSrcweir	SvLook = TRUE ;
83*b03844c4Smseidel	Size = MAP_APPFONT ( 180, 54 + 2) ;
84cdf0e10cSrcweir	Text [ en-US ] = "Name" ;
85cdf0e10cSrcweir	Moveable = TRUE ;
86cdf0e10cSrcweir
87cdf0e10cSrcweir	// name
88cdf0e10cSrcweir	FixedText NTD_FT_NAME
89cdf0e10cSrcweir	{
90*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
91*b03844c4Smseidel		Size = MAP_APPFONT ( 168, 8 ) ;
92*b03844c4Smseidel		Text [ en-US ] = "~Name" ;
93cdf0e10cSrcweir	};
94cdf0e10cSrcweir	Edit NTD_EDT_NAME
95cdf0e10cSrcweir	{
96*b03844c4Smseidel		HelpID = "cui:Edit:RID_SVXDLG_OBJECT_NAME:NTD_EDT_NAME" ;
97cdf0e10cSrcweir		Border = TRUE ;
98*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 14 ) ;
99*b03844c4Smseidel		Size = MAP_APPFONT ( 168, 12 ) ;
100cdf0e10cSrcweir		TabStop = TRUE ;
101cdf0e10cSrcweir	};
102*b03844c4Smseidel
103cdf0e10cSrcweir	// divider
104*b03844c4Smseidel	FixedLine FL_SEPARATOR_A
105*b03844c4Smseidel	{
106*b03844c4Smseidel		Pos = MAP_APPFONT ( 0, 39 - 6 - 2 ) ;
107*b03844c4Smseidel		Size = MAP_APPFONT ( 180, 8 ) ;
108*b03844c4Smseidel	};
109cdf0e10cSrcweir
110cdf0e10cSrcweir	// Buttons
111cdf0e10cSrcweir	HelpButton BTN_HELP
112cdf0e10cSrcweir	{
113cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6, 39 - 3 + 3) ;
114*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
115cdf0e10cSrcweir		TabStop = TRUE ;
116cdf0e10cSrcweir	};
117cdf0e10cSrcweir	OKButton BTN_OK
118cdf0e10cSrcweir	{
119cdf0e10cSrcweir		Pos = MAP_APPFONT ( 174 - (50 + 50 + 6), 39 - 3 + 3) ;
120*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
121cdf0e10cSrcweir		TabStop = TRUE ;
122cdf0e10cSrcweir		DefButton = TRUE ;
123cdf0e10cSrcweir	};
124cdf0e10cSrcweir	CancelButton BTN_CANCEL
125cdf0e10cSrcweir	{
126cdf0e10cSrcweir		Pos = MAP_APPFONT ( 174 - (50), 39 - 3 + 3) ;
127*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
128cdf0e10cSrcweir		TabStop = TRUE ;
129cdf0e10cSrcweir	};
130cdf0e10cSrcweir};
131cdf0e10cSrcweir
132cdf0e10cSrcweir// #i68101#
133cdf0e10cSrcweir// RID_SVXDLG_OBJECTTITLE_DESC ----------------------------------------------------------
134cdf0e10cSrcweir
135cdf0e10cSrcweirModalDialog RID_SVXDLG_OBJECT_TITLE_DESC
136cdf0e10cSrcweir{
137*b03844c4Smseidel	HelpId = HID_DLG_OBJECT_TITLE_DESC ;
138cdf0e10cSrcweir	OutputSize = TRUE ;
139cdf0e10cSrcweir	SvLook = TRUE ;
140*b03844c4Smseidel	Size = MAP_APPFONT ( 180, 78 + 27 ) ;
141cdf0e10cSrcweir	Text [ en-US ] = "Description" ;
142cdf0e10cSrcweir	Moveable = TRUE ;
143cdf0e10cSrcweir
144cdf0e10cSrcweir	// title
145cdf0e10cSrcweir	FixedText NTD_FT_TITLE
146cdf0e10cSrcweir	{
147*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 3 ) ;
148*b03844c4Smseidel		Size = MAP_APPFONT ( 168, 8 ) ;
149cdf0e10cSrcweir		WordBreak = TRUE ;
150*b03844c4Smseidel		Text [ en-US ] = "~Title" ;
151cdf0e10cSrcweir	};
152cdf0e10cSrcweir	Edit NTD_EDT_TITLE
153cdf0e10cSrcweir	{
154*b03844c4Smseidel		HelpID = "cui:Edit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_TITLE" ;
155cdf0e10cSrcweir		Border = TRUE ;
156*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 14 ) ;
157*b03844c4Smseidel		Size = MAP_APPFONT ( 168, 12 ) ;
158cdf0e10cSrcweir		TabStop = TRUE ;
159cdf0e10cSrcweir	};
160cdf0e10cSrcweir
161cdf0e10cSrcweir	// description
162cdf0e10cSrcweir	FixedText NTD_FT_DESC
163cdf0e10cSrcweir	{
164*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 30 ) ;
165*b03844c4Smseidel		Size = MAP_APPFONT ( 168, 8 ) ;
166cdf0e10cSrcweir		WordBreak = TRUE ;
167*b03844c4Smseidel		Text [ en-US ] = "~Description" ;
168cdf0e10cSrcweir	};
169cdf0e10cSrcweir	MultiLineEdit NTD_EDT_DESC
170cdf0e10cSrcweir	{
171*b03844c4Smseidel		HelpID = "cui:MultiLineEdit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_DESC" ;
172cdf0e10cSrcweir		Border = TRUE ;
173*b03844c4Smseidel		Pos = MAP_APPFONT ( 6, 41 ) ;
174*b03844c4Smseidel		Size = MAP_APPFONT ( 168, (12 * 3) - 2 ) ;
175cdf0e10cSrcweir		TabStop = TRUE ;
176*b03844c4Smseidel		IgnoreTab = TRUE ;
177*b03844c4Smseidel		VScroll = TRUE ;
178cdf0e10cSrcweir	};
179cdf0e10cSrcweir
180cdf0e10cSrcweir	// divider
181*b03844c4Smseidel	FixedLine FL_SEPARATOR_B
182*b03844c4Smseidel	{
183*b03844c4Smseidel		Pos = MAP_APPFONT ( 0, 41 + 39 ) ;
184*b03844c4Smseidel		Size = MAP_APPFONT ( 180, 8 ) ;
185*b03844c4Smseidel	};
186cdf0e10cSrcweir
187cdf0e10cSrcweir	// Buttons
188cdf0e10cSrcweir	HelpButton BTN_HELP
189cdf0e10cSrcweir	{
190cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6, 41 + 39 + 3 + 5) ;
191*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
192cdf0e10cSrcweir		TabStop = TRUE ;
193cdf0e10cSrcweir	};
194cdf0e10cSrcweir	OKButton BTN_OK
195cdf0e10cSrcweir	{
196cdf0e10cSrcweir		Pos = MAP_APPFONT ( 174 - (50 + 50 + 6), 41 + 39 + 3 + 5) ;
197*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
198cdf0e10cSrcweir		TabStop = TRUE ;
199cdf0e10cSrcweir		DefButton = TRUE ;
200cdf0e10cSrcweir	};
201cdf0e10cSrcweir	CancelButton BTN_CANCEL
202cdf0e10cSrcweir	{
203cdf0e10cSrcweir		Pos = MAP_APPFONT ( 174 - (50), 41 + 39 + 3 + 5) ;
204*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
205cdf0e10cSrcweir		TabStop = TRUE ;
206cdf0e10cSrcweir	};
207cdf0e10cSrcweir};
208cdf0e10cSrcweir
209cdf0e10cSrcweir// RID_SVXDLG_MESSBOX -------------------------------------------------------
210cdf0e10cSrcweir
211cdf0e10cSrcweirModalDialog RID_SVXDLG_MESSBOX
212cdf0e10cSrcweir{
213cdf0e10cSrcweir	HelpId = HID_DLG_MESSBOX ;
214cdf0e10cSrcweir	OutputSize = TRUE ;
215cdf0e10cSrcweir	SvLook = TRUE ;
216*b03844c4Smseidel	Size = MAP_APPFONT ( 212, 64 ) ;
217cdf0e10cSrcweir	Text = "" ;
218cdf0e10cSrcweir	Moveable = TRUE ;
219cdf0e10cSrcweir	PushButton BTN_1
220cdf0e10cSrcweir	{
221*b03844c4Smseidel		HelpID = "cui:PushButton:RID_SVXDLG_MESSBOX:BTN_1" ;
222*b03844c4Smseidel		Pos = MAP_APPFONT ( 25, 44 ) ;
223*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
224cdf0e10cSrcweir		TabStop = TRUE ;
225cdf0e10cSrcweir	};
226cdf0e10cSrcweir	PushButton BTN_2
227cdf0e10cSrcweir	{
228*b03844c4Smseidel		HelpID = "cui:PushButton:RID_SVXDLG_MESSBOX:BTN_2" ;
229*b03844c4Smseidel		Pos = MAP_APPFONT ( 78, 44 ) ;
230*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
231cdf0e10cSrcweir		TabStop = TRUE ;
232cdf0e10cSrcweir	};
233cdf0e10cSrcweir	CancelButton BTN_CANCEL
234cdf0e10cSrcweir	{
235*b03844c4Smseidel		Pos = MAP_APPFONT ( 131, 44 ) ;
236*b03844c4Smseidel		Size = MAP_APPFONT ( 50, 14 ) ;
237cdf0e10cSrcweir		TabStop = TRUE ;
238cdf0e10cSrcweir	};
239cdf0e10cSrcweir	FixedText FT_DESCRIPTION
240cdf0e10cSrcweir	{
241*b03844c4Smseidel		Pos = MAP_APPFONT ( 28, 6 ) ;
242*b03844c4Smseidel		Size = MAP_APPFONT ( 200, 35 ) ;
243cdf0e10cSrcweir		WordBreak = TRUE ;
244cdf0e10cSrcweir	};
245cdf0e10cSrcweir};
246cdf0e10cSrcweir
247*b03844c4Smseidel// ********************************************************************** EOF
248