xref: /aoo42x/main/cui/source/dialogs/hyperdlg.src (revision d15d3e1c)
10e2af6afSAndrew Rist/**************************************************************
2*d15d3e1cSmseidel *
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*d15d3e1cSmseidel *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*d15d3e1cSmseidel *
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*d15d3e1cSmseidel *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svtools/controldims.hrc>
25cdf0e10cSrcweir#include <cuires.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include "hyperdlg.hrc"
28cdf0e10cSrcweir
29*d15d3e1cSmseidel#define HYPERDLG_IMGBUTTON_HEIGHT RSC_CD_PUSHBUTTON_HEIGHT + 2
30cdf0e10cSrcweir
31cdf0e10cSrcweir/*************************************************************************
32cdf0e10cSrcweir| Tabpage : Internet
33cdf0e10cSrcweir*************************************************************************/
34cdf0e10cSrcweir
35cdf0e10cSrcweirTabPage RID_SVXPAGE_HYPERLINK_INTERNET
36cdf0e10cSrcweir{
37cdf0e10cSrcweir	Hide = TRUE ;
382a20bd3bSMatthias Seidel	HelpID = HID_HYPERLINK_INTERNET ;
39cdf0e10cSrcweir	OutputSize = TRUE ;
40cdf0e10cSrcweir	SVLook = TRUE ;
412a20bd3bSMatthias Seidel	Size = MAP_APPFONT ( 260, 162 ) ;
42cdf0e10cSrcweir	Text [ en-US ] = "Hyperlink" ;
43cdf0e10cSrcweir
44cdf0e10cSrcweir	FixedLine GRP_LINKTYPE
45cdf0e10cSrcweir	{
462a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 3 ) ;
472a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
48cdf0e10cSrcweir		Text [ en-US ] = "Hyperlink type" ;
49cdf0e10cSrcweir	};
50cdf0e10cSrcweir	RadioButton RB_LINKTYP_INTERNET
51cdf0e10cSrcweir	{
522a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_INTERNET" ;
532a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 13 ) ;
542a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 57, 10 ) ;
552a20bd3bSMatthias Seidel		Text [ en-US ] = "~Web" ;
56cdf0e10cSrcweir	};
57cdf0e10cSrcweir	RadioButton RB_LINKTYP_FTP
58cdf0e10cSrcweir	{
592a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_FTP" ;
602a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 114 + COL_DIFF, 13 ) ;
612a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 56 - COL_DIFF, 10 ) ;
622a20bd3bSMatthias Seidel		Text [ en-US ] = "~FTP" ;
63cdf0e10cSrcweir	};
64cdf0e10cSrcweir	RadioButton RB_LINKTYP_TELNET
65cdf0e10cSrcweir	{
662a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_TELNET" ;
672a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 173, 13 ) ;
682a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 56, 10 ) ;
692a20bd3bSMatthias Seidel		Text [ en-US ] = "~Telnet" ;
70cdf0e10cSrcweir	};
71cdf0e10cSrcweir	FixedText FT_TARGET_HTML
72cdf0e10cSrcweir	{
732a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 26 ) ;
74cdf0e10cSrcweir		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
75cdf0e10cSrcweir		Text [ en-US ] = "Tar~get" ;
76cdf0e10cSrcweir	};
77cdf0e10cSrcweir	FixedText FT_LOGIN
78cdf0e10cSrcweir	{
792a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 43 ) ;
802a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
81cdf0e10cSrcweir		Text [ en-US ] = "~Login name" ;
82cdf0e10cSrcweir	};
83cdf0e10cSrcweir	Edit ED_LOGIN
84cdf0e10cSrcweir	{
852a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_LOGIN" ;
86cdf0e10cSrcweir		Border = TRUE ;
872a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 42 ) ;
882a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 80 - COL_DIFF, 12 ) ;
89cdf0e10cSrcweir	};
90cdf0e10cSrcweir	FixedText FT_PASSWD
91cdf0e10cSrcweir	{
922a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 60 ) ;
932a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
94cdf0e10cSrcweir		Text [ en-US ] = "~Password" ;
95cdf0e10cSrcweir	};
96cdf0e10cSrcweir	Edit ED_PASSWD
97cdf0e10cSrcweir	{
982a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_PASSWD" ;
99cdf0e10cSrcweir		Border = TRUE ;
1002a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 59 ) ;
1012a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 80 - COL_DIFF, 12 ) ;
102cdf0e10cSrcweir		PassWord = TRUE ;
103cdf0e10cSrcweir	};
104cdf0e10cSrcweir	CheckBox CBX_ANONYMOUS
105cdf0e10cSrcweir	{
1062a20bd3bSMatthias Seidel		HelpID = "cui:CheckBox:RID_SVXPAGE_HYPERLINK_INTERNET:CBX_ANONYMOUS" ;
1072a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 75 ) ;
1082a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 89 - COL_DIFF, 10 ) ;
109cdf0e10cSrcweir		TabStop = TRUE ;
110cdf0e10cSrcweir		Text [ en-US ] = "Anonymous ~user" ;
111cdf0e10cSrcweir	};
112cdf0e10cSrcweir	ImageButton BTN_BROWSE
113cdf0e10cSrcweir	{
1142a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_BROWSE" ;
115cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 24 ) ;
1162a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
117cdf0e10cSrcweir		TabStop = TRUE ;
1182a20bd3bSMatthias Seidel		Text [ en-US ] = "WWW Browser" ;
119cdf0e10cSrcweir
120cdf0e10cSrcweir		QuickHelpText [ en-US ] = "WWW Browser" ;
121cdf0e10cSrcweir		ButtonImage = Image
122cdf0e10cSrcweir		{
123*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "browse.png" ;} ;
124cdf0e10cSrcweir		};
125cdf0e10cSrcweir	};
126cdf0e10cSrcweir	Image IMG_BROWSE_HC
127cdf0e10cSrcweir	{
128*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "browse_hc.png" ;} ;
129cdf0e10cSrcweir	};
130cdf0e10cSrcweir	ImageButton BTN_TARGET
131cdf0e10cSrcweir	{
1322a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_TARGET" ;
133cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 40+2 ) ;
1342a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
135cdf0e10cSrcweir		TabStop = TRUE ;
1362a20bd3bSMatthias Seidel		Text [ en-US ] = "Target in Document" ;
137cdf0e10cSrcweir
138cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Target in Document" ;
139cdf0e10cSrcweir		ButtonImage = Image
140cdf0e10cSrcweir		{
141*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "target.png" ;} ;
142cdf0e10cSrcweir		};
143cdf0e10cSrcweir	};
144cdf0e10cSrcweir	Image IMG_TARGET_HC
145cdf0e10cSrcweir	{
146*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "target_hc.png" ;} ;
147cdf0e10cSrcweir	};
148cdf0e10cSrcweir	FixedLine GRP_MORE
149cdf0e10cSrcweir	{
1502a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 92 ) ;
1512a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
152cdf0e10cSrcweir		Text [ en-US ] = "Further settings" ;
153cdf0e10cSrcweir	};
154cdf0e10cSrcweir	FixedText FT_FRAME
155cdf0e10cSrcweir	{
1562a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 105 ) ;
1572a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
158cdf0e10cSrcweir		Text [ en-US ] = "F~rame" ;
159cdf0e10cSrcweir	};
160cdf0e10cSrcweir	ComboBox CB_FRAME
161cdf0e10cSrcweir	{
1622a20bd3bSMatthias Seidel		HelpID = "cui:ComboBox:RID_SVXPAGE_HYPERLINK_INTERNET:CB_FRAME" ;
163cdf0e10cSrcweir		Border = TRUE ;
1642a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 104 ) ;
1652a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 66 - COL_DIFF, 60 ) ;
166cdf0e10cSrcweir		TabStop = TRUE ;
167cdf0e10cSrcweir		DropDown = TRUE ;
168cdf0e10cSrcweir		Sort = TRUE ;
169cdf0e10cSrcweir	};
170cdf0e10cSrcweir	FixedText FT_FORM
171cdf0e10cSrcweir	{
1722a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 126, 105 ) ;
1732a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 33, 8 ) ;
174cdf0e10cSrcweir		Text [ en-US ] = "F~orm" ;
175cdf0e10cSrcweir	};
176cdf0e10cSrcweir	ListBox LB_FORM
177cdf0e10cSrcweir	{
1782a20bd3bSMatthias Seidel		HelpID = "cui:ListBox:RID_SVXPAGE_HYPERLINK_INTERNET:LB_FORM" ;
179cdf0e10cSrcweir		Border = TRUE ;
1802a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 160, 104 ) ;
1812a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 70, 60 ) ;
182cdf0e10cSrcweir		TabStop = TRUE ;
183cdf0e10cSrcweir		DropDown = TRUE ;
184cdf0e10cSrcweir		AutoHScroll = TRUE ;
185cdf0e10cSrcweir		DDExtraWidth = TRUE ;
186cdf0e10cSrcweir		StringList [ en-US ] =
187cdf0e10cSrcweir		{
188*d15d3e1cSmseidel			< "Text" ; Default ;	> ;
189*d15d3e1cSmseidel			< "Button" ; Default ;	> ;
190cdf0e10cSrcweir		};
191cdf0e10cSrcweir	};
192cdf0e10cSrcweir	FixedText FT_INDICATION
193cdf0e10cSrcweir	{
1942a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 123 ) ;
1952a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
196cdf0e10cSrcweir		Text [ en-US ] = "Te~xt" ;
197cdf0e10cSrcweir	};
198cdf0e10cSrcweir	Edit ED_INDICATION
199cdf0e10cSrcweir	{
2002a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_INDICATION" ;
201cdf0e10cSrcweir		Border = TRUE ;
2022a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 122 ) ;
2032a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
204cdf0e10cSrcweir	};
205cdf0e10cSrcweir	FixedText FT_TEXT
206cdf0e10cSrcweir	{
2072a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 140 ) ;
2082a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
209cdf0e10cSrcweir		Text [ en-US ] = "N~ame" ;
210cdf0e10cSrcweir	};
211cdf0e10cSrcweir	Edit ED_TEXT
212cdf0e10cSrcweir	{
2132a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_TEXT" ;
214cdf0e10cSrcweir		Border = TRUE ;
2152a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 139 ) ;
2162a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
217cdf0e10cSrcweir	};
218cdf0e10cSrcweir	ImageButton BTN_SCRIPT
219cdf0e10cSrcweir	{
2202a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_SCRIPT" ;
221cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 103-1 ) ;
2222a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
223cdf0e10cSrcweir		TabStop = TRUE ;
224cdf0e10cSrcweir
225cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Events" ;
226cdf0e10cSrcweir		ButtonImage = Image
227cdf0e10cSrcweir		{
228*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "script.png" ;} ;
229cdf0e10cSrcweir		};
2302a20bd3bSMatthias Seidel		Text [ en-US ] = "Events" ;
231cdf0e10cSrcweir	};
232cdf0e10cSrcweir	Image IMG_SCRIPT_HC
233cdf0e10cSrcweir	{
234*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "script_hc.png" ;} ;
235cdf0e10cSrcweir	};
236cdf0e10cSrcweir};
237cdf0e10cSrcweir
238cdf0e10cSrcweir/*************************************************************************
239cdf0e10cSrcweir| Tabpage : Mail & News
240cdf0e10cSrcweir*************************************************************************/
241cdf0e10cSrcweir
242cdf0e10cSrcweirTabPage RID_SVXPAGE_HYPERLINK_MAIL
243cdf0e10cSrcweir{
244cdf0e10cSrcweir	Hide = TRUE ;
2452a20bd3bSMatthias Seidel	HelpID = HID_HYPERLINK_MAIL ;
246cdf0e10cSrcweir	OutputSize = TRUE ;
247cdf0e10cSrcweir	SVLook = TRUE ;
2482a20bd3bSMatthias Seidel	Size = MAP_APPFONT ( 260, 162 ) ;
249cdf0e10cSrcweir	Text [ en-US ] = "Hyperlink" ;
250cdf0e10cSrcweir
251cdf0e10cSrcweir	FixedLine GRP_MAILNEWS
252cdf0e10cSrcweir	{
2532a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 3 ) ;
2542a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
255cdf0e10cSrcweir		Text [ en-US ] = "Mail & news" ;
256cdf0e10cSrcweir	};
257cdf0e10cSrcweir	RadioButton RB_LINKTYP_MAIL
258cdf0e10cSrcweir	{
2592a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_MAIL" ;
2602a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 13 ) ;
2612a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 56 - COL_DIFF, 10 ) ;
2622a20bd3bSMatthias Seidel		Text [ en-US ] = "~E-mail" ;
263cdf0e10cSrcweir	};
264cdf0e10cSrcweir	RadioButton RB_LINKTYP_NEWS
265cdf0e10cSrcweir	{
2662a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_NEWS" ;
2672a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 113, 13 ) ;
2682a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 56, 10 ) ;
2692a20bd3bSMatthias Seidel		Text [ en-US ] = "~News" ;
270cdf0e10cSrcweir	};
271cdf0e10cSrcweir	FixedText FT_RECEIVER
272cdf0e10cSrcweir	{
2732a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 26 ) ;
2742a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
275cdf0e10cSrcweir		Text [ en-US ] = "Re~ceiver" ;
276cdf0e10cSrcweir	};
277cdf0e10cSrcweir	FixedText FT_SUBJECT
278cdf0e10cSrcweir	{
2792a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 43 ) ;
2802a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
281cdf0e10cSrcweir		Text [ en-US ] = "~Subject" ;
282cdf0e10cSrcweir	};
283cdf0e10cSrcweir	Edit ED_SUBJECT
284cdf0e10cSrcweir	{
2852a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_SUBJECT" ;
286cdf0e10cSrcweir		Border = TRUE ;
2872a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 42 ) ;
2882a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 176 - COL_DIFF, 12 ) ;
289cdf0e10cSrcweir	};
290cdf0e10cSrcweir	ImageButton BTN_ADRESSBOOK
291cdf0e10cSrcweir	{
2922a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_ADRESSBOOK" ;
293cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 24 ) ;
2942a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
295cdf0e10cSrcweir		TabStop = TRUE ;
296cdf0e10cSrcweir
297cdf0e10cSrcweir		ButtonImage = Image
298cdf0e10cSrcweir		{
299*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "adrbook.png" ;} ;
300cdf0e10cSrcweir		};
301cdf0e10cSrcweir
3022a20bd3bSMatthias Seidel		Text [ en-US ] = "Data Sources..." ;
3032a20bd3bSMatthias Seidel		QuickHelpText [ en-US ] = "Data Sources..." ;
304cdf0e10cSrcweir	};
305cdf0e10cSrcweir	Image IMG_ADRESSBOOK_HC
306cdf0e10cSrcweir	{
307*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "adrbook_hc.png" ;} ;
308cdf0e10cSrcweir	};
309cdf0e10cSrcweir
310cdf0e10cSrcweir	FixedLine GRP_MORE
311cdf0e10cSrcweir	{
3122a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 92 ) ;
3132a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
314cdf0e10cSrcweir		Text [ en-US ] = "Further settings" ;
315cdf0e10cSrcweir	};
316cdf0e10cSrcweir	FixedText FT_FRAME
317cdf0e10cSrcweir	{
3182a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 105 ) ;
3192a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
320cdf0e10cSrcweir		Text [ en-US ] = "F~rame" ;
321cdf0e10cSrcweir	};
322cdf0e10cSrcweir	ComboBox CB_FRAME
323cdf0e10cSrcweir	{
3242a20bd3bSMatthias Seidel		HelpID = "cui:ComboBox:RID_SVXPAGE_HYPERLINK_MAIL:CB_FRAME" ;
325cdf0e10cSrcweir		Border = TRUE ;
3262a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 104 ) ;
3272a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 66 - COL_DIFF, 60 ) ;
328cdf0e10cSrcweir		TabStop = TRUE ;
329cdf0e10cSrcweir		DropDown = TRUE ;
330cdf0e10cSrcweir		Sort = TRUE ;
331cdf0e10cSrcweir	};
332cdf0e10cSrcweir	FixedText FT_FORM
333cdf0e10cSrcweir	{
3342a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 126, 105 ) ;
3352a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 33, 10 ) ;
336cdf0e10cSrcweir		Text [ en-US ] = "F~orm" ;
337cdf0e10cSrcweir	};
338cdf0e10cSrcweir	ListBox LB_FORM
339cdf0e10cSrcweir	{
3402a20bd3bSMatthias Seidel		HelpID = "cui:ListBox:RID_SVXPAGE_HYPERLINK_MAIL:LB_FORM" ;
341cdf0e10cSrcweir		Border = TRUE ;
3422a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 160, 104 ) ;
3432a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 70, 60 ) ;
344cdf0e10cSrcweir		TabStop = TRUE ;
345cdf0e10cSrcweir		DropDown = TRUE ;
346cdf0e10cSrcweir		AutoHScroll = TRUE ;
347cdf0e10cSrcweir		DDExtraWidth = TRUE ;
348cdf0e10cSrcweir		StringList [ en-US ] =
349cdf0e10cSrcweir		{
350*d15d3e1cSmseidel			< "Text" ; Default ;	> ;
351*d15d3e1cSmseidel			< "Button" ; Default ;	> ;
352cdf0e10cSrcweir		};
353cdf0e10cSrcweir	};
354cdf0e10cSrcweir	FixedText FT_INDICATION
355cdf0e10cSrcweir	{
3562a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 123 ) ;
3572a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
358cdf0e10cSrcweir		Text [ en-US ] = "Te~xt" ;
359cdf0e10cSrcweir	};
360cdf0e10cSrcweir	Edit ED_INDICATION
361cdf0e10cSrcweir	{
3622a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_INDICATION" ;
363cdf0e10cSrcweir		Border = TRUE ;
3642a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 122 ) ;
3652a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
366cdf0e10cSrcweir	};
367cdf0e10cSrcweir	FixedText FT_TEXT
368cdf0e10cSrcweir	{
3692a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 140 ) ;
3702a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
371cdf0e10cSrcweir		Text [ en-US ] = "N~ame" ;
372cdf0e10cSrcweir	};
373cdf0e10cSrcweir	Edit ED_TEXT
374cdf0e10cSrcweir	{
3752a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_TEXT" ;
376cdf0e10cSrcweir		Border = TRUE ;
3772a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 139 ) ;
3782a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
379cdf0e10cSrcweir	};
380cdf0e10cSrcweir	ImageButton BTN_SCRIPT
381cdf0e10cSrcweir	{
3822a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_SCRIPT" ;
383cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 103-1 ) ;
3842a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
385cdf0e10cSrcweir		TabStop = TRUE ;
386cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Events" ;
387cdf0e10cSrcweir		ButtonImage = Image
388cdf0e10cSrcweir		{
389*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "script.png" ;} ;
390cdf0e10cSrcweir		};
391*d15d3e1cSmseidel		Text [ en-US ] = "Events" ;
392cdf0e10cSrcweir	};
393cdf0e10cSrcweir	Image IMG_SCRIPT_HC
394cdf0e10cSrcweir	{
395*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "script_hc.png" ;} ;
396cdf0e10cSrcweir	};
397cdf0e10cSrcweir};
398cdf0e10cSrcweir
399cdf0e10cSrcweir/*************************************************************************
400cdf0e10cSrcweir| Tabpage : Documents
401cdf0e10cSrcweir*************************************************************************/
402cdf0e10cSrcweir
403cdf0e10cSrcweirTabPage RID_SVXPAGE_HYPERLINK_DOCUMENT
404cdf0e10cSrcweir{
405cdf0e10cSrcweir	Hide = TRUE ;
4062a20bd3bSMatthias Seidel	HelpID = HID_HYPERLINK_DOCUMENT ;
407cdf0e10cSrcweir	OutputSize = TRUE ;
408cdf0e10cSrcweir	SVLook = TRUE ;
4092a20bd3bSMatthias Seidel	Size = MAP_APPFONT ( 260, 162 ) ;
410cdf0e10cSrcweir	Text [ en-US ] = "Hyperlink" ;
411cdf0e10cSrcweir
412cdf0e10cSrcweir	FixedLine GRP_DOCUMENT
413cdf0e10cSrcweir	{
4142a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 3 ) ;
4152a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
416cdf0e10cSrcweir		Text [ en-US ] = "Document" ;
417cdf0e10cSrcweir	};
418cdf0e10cSrcweir	FixedText FT_PATH_DOC
419cdf0e10cSrcweir	{
4202a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 16 ) ;
4212a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
422cdf0e10cSrcweir		Text [ en-US ] = "~Path" ;
423cdf0e10cSrcweir	};
424cdf0e10cSrcweir	ImageButton BTN_FILEOPEN
425cdf0e10cSrcweir	{
4262a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_FILEOPEN" ;
427cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 14 ) ;
4282a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
429cdf0e10cSrcweir		TabStop = TRUE ;
430cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Open File" ;
431cdf0e10cSrcweir		ButtonImage = Image
432cdf0e10cSrcweir		{
433*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "fileopen.png" ;} ;
434cdf0e10cSrcweir		};
435*d15d3e1cSmseidel		Text [ en-US ] = "Open File" ;
436cdf0e10cSrcweir	};
437cdf0e10cSrcweir	Image IMG_FILEOPEN_HC
438cdf0e10cSrcweir	{
439*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "fileopen_hc.png" ;} ;
440cdf0e10cSrcweir	};
441cdf0e10cSrcweir
442cdf0e10cSrcweir	FixedLine GRP_TARGET
443cdf0e10cSrcweir	{
4442a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 38 ) ;
4452a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
446cdf0e10cSrcweir		Text [ en-US ] = "Target in document" ;
447cdf0e10cSrcweir	};
448cdf0e10cSrcweir	FixedText FT_TARGET_DOC
449cdf0e10cSrcweir	{
4502a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 53 ) ;
4512a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
452cdf0e10cSrcweir		Text [ en-US ] = "Targ~et" ;
453cdf0e10cSrcweir	};
454cdf0e10cSrcweir	Edit ED_TARGET_DOC
455cdf0e10cSrcweir	{
4562a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TARGET_DOC" ;
457cdf0e10cSrcweir		Border = TRUE ;
4582a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 52 ) ;
4592a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 176 - COL_DIFF, 12 ) ;
460cdf0e10cSrcweir	};
461cdf0e10cSrcweir	FixedText FT_URL
462cdf0e10cSrcweir	{
4632a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 70 ) ;
4642a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
465cdf0e10cSrcweir		Text [ en-US ] = "URL" ;
466cdf0e10cSrcweir	};
467cdf0e10cSrcweir	FixedText FT_FULL_URL
468cdf0e10cSrcweir	{
4692a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 70 ) ;
4702a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 176 - COL_DIFF, 12 ) ;
471cdf0e10cSrcweir		Text [ en-US ] = "Test text" ;
472cdf0e10cSrcweir	};
473cdf0e10cSrcweir	ImageButton BTN_BROWSE
474cdf0e10cSrcweir	{
4752a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_BROWSE" ;
476cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 51 ) ;
4772a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
478cdf0e10cSrcweir		TabStop = TRUE ;
479cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Target in Document" ;
480cdf0e10cSrcweir		ButtonImage = Image
481cdf0e10cSrcweir		{
482*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "target.png" ;} ;
483cdf0e10cSrcweir		};
4842a20bd3bSMatthias Seidel		Text [ en-US ] = "Target in Document" ;
485cdf0e10cSrcweir	};
486cdf0e10cSrcweir	Image IMG_BROWSE_HC
487cdf0e10cSrcweir	{
488*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "target_hc.png" ;} ;
489cdf0e10cSrcweir	};
490cdf0e10cSrcweir
491cdf0e10cSrcweir	FixedLine GRP_MORE
492cdf0e10cSrcweir	{
4932a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 92 ) ;
4942a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
495cdf0e10cSrcweir		Text [ en-US ] = "Further settings" ;
496cdf0e10cSrcweir	};
497cdf0e10cSrcweir	FixedText FT_FRAME
498cdf0e10cSrcweir	{
4992a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 105 ) ;
5002a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
501cdf0e10cSrcweir		Text [ en-US ] = "F~rame" ;
502cdf0e10cSrcweir	};
503cdf0e10cSrcweir	ComboBox CB_FRAME
504cdf0e10cSrcweir	{
5052a20bd3bSMatthias Seidel		HelpID = "cui:ComboBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:CB_FRAME" ;
506cdf0e10cSrcweir		Border = TRUE ;
5072a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 104 ) ;
5082a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 66 - COL_DIFF, 60 ) ;
509cdf0e10cSrcweir		TabStop = TRUE ;
510cdf0e10cSrcweir		DropDown = TRUE ;
511cdf0e10cSrcweir		Sort = TRUE ;
512cdf0e10cSrcweir	};
513cdf0e10cSrcweir	FixedText FT_FORM
514cdf0e10cSrcweir	{
5152a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 126, 105 ) ;
5162a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 33, 10 ) ;
517cdf0e10cSrcweir		Text [ en-US ] = "F~orm" ;
518cdf0e10cSrcweir	};
519cdf0e10cSrcweir	ListBox LB_FORM
520cdf0e10cSrcweir	{
5212a20bd3bSMatthias Seidel		HelpID = "cui:ListBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:LB_FORM" ;
522cdf0e10cSrcweir		Border = TRUE ;
5232a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 160, 104 ) ;
5242a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 70, 60 ) ;
525cdf0e10cSrcweir		TabStop = TRUE ;
526cdf0e10cSrcweir		DropDown = TRUE ;
527cdf0e10cSrcweir		AutoHScroll = TRUE ;
528cdf0e10cSrcweir		DDExtraWidth = TRUE ;
529cdf0e10cSrcweir		StringList [ en-US ] =
530cdf0e10cSrcweir		{
531*d15d3e1cSmseidel			< "Text" ; Default ;	> ;
532*d15d3e1cSmseidel			< "Button" ; Default ;	> ;
533cdf0e10cSrcweir		};
534cdf0e10cSrcweir	};
535cdf0e10cSrcweir	FixedText FT_INDICATION
536cdf0e10cSrcweir	{
5372a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 123 ) ;
5382a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
539cdf0e10cSrcweir		Text [ en-US ] = "Te~xt" ;
540cdf0e10cSrcweir	};
541cdf0e10cSrcweir	Edit ED_INDICATION
542cdf0e10cSrcweir	{
5432a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_INDICATION" ;
544cdf0e10cSrcweir		Border = TRUE ;
5452a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 122 ) ;
5462a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
547cdf0e10cSrcweir	};
548cdf0e10cSrcweir	FixedText FT_TEXT
549cdf0e10cSrcweir	{
5502a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 140 ) ;
5512a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
552cdf0e10cSrcweir		Text [ en-US ] = "N~ame" ;
553cdf0e10cSrcweir	};
554cdf0e10cSrcweir	Edit ED_TEXT
555cdf0e10cSrcweir	{
5562a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TEXT" ;
557cdf0e10cSrcweir		Border = TRUE ;
5582a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 139 ) ;
5592a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
560cdf0e10cSrcweir	};
561cdf0e10cSrcweir	ImageButton BTN_SCRIPT
562cdf0e10cSrcweir	{
5632a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_SCRIPT" ;
564cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 103-1 ) ;
5652a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
566cdf0e10cSrcweir		TabStop = TRUE ;
567cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Events" ;
568cdf0e10cSrcweir		ButtonImage = Image
569cdf0e10cSrcweir		{
570*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "script.png" ;} ;
571cdf0e10cSrcweir		};
572*d15d3e1cSmseidel		Text [ en-US ] = "Events" ;
573cdf0e10cSrcweir	};
574cdf0e10cSrcweir	Image IMG_SCRIPT_HC
575cdf0e10cSrcweir	{
576*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "script_hc.png" ;} ;
577cdf0e10cSrcweir	};
578cdf0e10cSrcweir};
579cdf0e10cSrcweir
580cdf0e10cSrcweir/*************************************************************************
581cdf0e10cSrcweir| Tabpage : New Documents
582cdf0e10cSrcweir*************************************************************************/
583cdf0e10cSrcweir
584cdf0e10cSrcweirTabPage RID_SVXPAGE_HYPERLINK_NEWDOCUMENT
585cdf0e10cSrcweir{
586cdf0e10cSrcweir	Hide = TRUE ;
587*d15d3e1cSmseidel	HelpID = HID_HYPERLINK_NEWDOCUMENT ;
588cdf0e10cSrcweir	OutputSize = TRUE ;
589cdf0e10cSrcweir	SVLook = TRUE ;
5902a20bd3bSMatthias Seidel	Size = MAP_APPFONT ( 260, 162 ) ;
591cdf0e10cSrcweir	Text [ en-US ] = "Hyperlink" ;
592cdf0e10cSrcweir
593cdf0e10cSrcweir	FixedLine GRP_NEWDOCUMENT
594cdf0e10cSrcweir	{
5952a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 3 ) ;
5962a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
597cdf0e10cSrcweir		Text [ en-US ] = "New document" ;
598cdf0e10cSrcweir	};
599cdf0e10cSrcweir	RadioButton RB_EDITNOW
600cdf0e10cSrcweir	{
6012a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW" ;
6022a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 13 ) ;
6032a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 85 - COL_DIFF, 10 ) ;
6042a20bd3bSMatthias Seidel		Text [ en-US ] = "Edit ~now" ;
605cdf0e10cSrcweir	};
606cdf0e10cSrcweir	RadioButton RB_EDITLATER
607cdf0e10cSrcweir	{
6082a20bd3bSMatthias Seidel		HelpID = "cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER" ;
6092a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 142, 13 ) ;
6102a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 84, 10 ) ;
6112a20bd3bSMatthias Seidel		Text [ en-US ] = "Edit ~later" ;
612cdf0e10cSrcweir	};
613cdf0e10cSrcweir	FixedText FT_PATH_NEWDOC
614cdf0e10cSrcweir	{
6152a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 26 ) ;
6162a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
617cdf0e10cSrcweir		Text [ en-US ] = "~File" ;
618cdf0e10cSrcweir	};
619cdf0e10cSrcweir	Edit ED_PATH_NEWDOC
620cdf0e10cSrcweir	{
6212a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_PATH_NEWDOC" ;
622cdf0e10cSrcweir		Border = TRUE ;
6232a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 25 ) ;
6242a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 176 - COL_DIFF, 12 ) ;
625cdf0e10cSrcweir	};
626cdf0e10cSrcweir	FixedText FT_DOCUMENT_TYPES
627cdf0e10cSrcweir	{
6282a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 43 ) ;
6292a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
630cdf0e10cSrcweir		Text [ en-US ] = "File ~type" ;
631cdf0e10cSrcweir	};
632cdf0e10cSrcweir	ListBox LB_DOCUMENT_TYPES
633cdf0e10cSrcweir	{
6342a20bd3bSMatthias Seidel		HelpID = "cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES" ;
635cdf0e10cSrcweir		Border = TRUE ;
6362a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 42 ) ;
6372a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 176 - COL_DIFF, 40 ) ;
638cdf0e10cSrcweir		TabStop = TRUE ;
639cdf0e10cSrcweir		DropDown = FALSE ;
640cdf0e10cSrcweir	};
641cdf0e10cSrcweir	ImageButton BTN_CREATE
642cdf0e10cSrcweir	{
6432a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE" ;
644cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 24 ) ;
6452a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
646cdf0e10cSrcweir		TabStop = TRUE ;
647cdf0e10cSrcweir
648cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Select Path" ;
649cdf0e10cSrcweir		ButtonImage = Image
650cdf0e10cSrcweir		{
651*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "newdoc.png" ;} ;
652cdf0e10cSrcweir		};
653*d15d3e1cSmseidel		Text [ en-US ] = "Select Path" ;
654cdf0e10cSrcweir	};
655cdf0e10cSrcweir	Image IMG_CREATE_HC
656cdf0e10cSrcweir	{
657*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "newdoc_hc.png" ;} ;
658cdf0e10cSrcweir	};
659cdf0e10cSrcweir
660cdf0e10cSrcweir	FixedLine GRP_MORE
661cdf0e10cSrcweir	{
6622a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 6, 92 ) ;
6632a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 248, 8 ) ;
664cdf0e10cSrcweir		Text [ en-US ] = "Further settings" ;
665cdf0e10cSrcweir	};
666cdf0e10cSrcweir	FixedText FT_FRAME
667cdf0e10cSrcweir	{
6682a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 105 ) ;
6692a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
670cdf0e10cSrcweir		Text [ en-US ] = "F~rame" ;
671cdf0e10cSrcweir	};
672cdf0e10cSrcweir	ComboBox CB_FRAME
673cdf0e10cSrcweir	{
6742a20bd3bSMatthias Seidel		HelpID = "cui:ComboBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:CB_FRAME" ;
675cdf0e10cSrcweir		Border = TRUE ;
6762a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 104 ) ;
6772a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 66 - COL_DIFF, 60 ) ;
678cdf0e10cSrcweir		TabStop = TRUE ;
679cdf0e10cSrcweir		DropDown = TRUE ;
680cdf0e10cSrcweir		Sort = TRUE ;
681cdf0e10cSrcweir	};
682cdf0e10cSrcweir	FixedText FT_FORM
683cdf0e10cSrcweir	{
6842a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 126, 105 ) ;
6852a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 33, 10 ) ;
686cdf0e10cSrcweir		Text [ en-US ] = "F~orm" ;
687cdf0e10cSrcweir	};
688cdf0e10cSrcweir	ListBox LB_FORM
689cdf0e10cSrcweir	{
6902a20bd3bSMatthias Seidel		HelpID = "cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_FORM" ;
691cdf0e10cSrcweir		Border = TRUE ;
6922a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 160, 104 ) ;
6932a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 70, 60 ) ;
694cdf0e10cSrcweir		TabStop = TRUE ;
695cdf0e10cSrcweir		DropDown = TRUE ;
696cdf0e10cSrcweir		AutoHScroll = TRUE ;
697cdf0e10cSrcweir		DDExtraWidth = TRUE ;
698cdf0e10cSrcweir		StringList [ en-US ] =
699cdf0e10cSrcweir		{
700*d15d3e1cSmseidel			< "Text" ; Default ;	> ;
701*d15d3e1cSmseidel			< "Button" ; Default ;	> ;
702cdf0e10cSrcweir		};
703cdf0e10cSrcweir	};
704cdf0e10cSrcweir	FixedText FT_INDICATION
705cdf0e10cSrcweir	{
7062a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 123 ) ;
7072a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
708cdf0e10cSrcweir		Text [ en-US ] = "Te~xt" ;
709cdf0e10cSrcweir	};
710cdf0e10cSrcweir	Edit ED_INDICATION
711cdf0e10cSrcweir	{
7122a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_INDICATION" ;
713cdf0e10cSrcweir		Border = TRUE ;
7142a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 122 ) ;
7152a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
716cdf0e10cSrcweir	};
717cdf0e10cSrcweir	FixedText FT_TEXT
718cdf0e10cSrcweir	{
7192a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( 12, 140 ) ;
7202a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 39 + COL_DIFF, 8 ) ;
721cdf0e10cSrcweir		Text [ en-US ] = "N~ame" ;
722cdf0e10cSrcweir	};
723cdf0e10cSrcweir	Edit ED_TEXT
724cdf0e10cSrcweir	{
7252a20bd3bSMatthias Seidel		HelpID = "cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_TEXT" ;
726cdf0e10cSrcweir		Border = TRUE ;
7272a20bd3bSMatthias Seidel		Pos = MAP_APPFONT ( COL_2, 139 ) ;
7282a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( 194 - COL_DIFF, 12 ) ;
729cdf0e10cSrcweir	};
730cdf0e10cSrcweir	ImageButton BTN_SCRIPT
731cdf0e10cSrcweir	{
7322a20bd3bSMatthias Seidel		HelpID = "cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT" ;
733cdf0e10cSrcweir		Pos = MAP_APPFONT ( 235, 103-1 ) ;
7342a20bd3bSMatthias Seidel		Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_HEIGHT, HYPERDLG_IMGBUTTON_HEIGHT ) ;
735cdf0e10cSrcweir		TabStop = TRUE ;
736cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Events" ;
737cdf0e10cSrcweir		ButtonImage = Image
738cdf0e10cSrcweir		{
739*d15d3e1cSmseidel			ImageBitmap = Bitmap {File = "script.png" ;} ;
740cdf0e10cSrcweir		};
7412a20bd3bSMatthias Seidel		Text [ en-US ] = "Events" ;
742cdf0e10cSrcweir	};
743cdf0e10cSrcweir	Image IMG_SCRIPT_HC
744cdf0e10cSrcweir	{
745*d15d3e1cSmseidel		ImageBitmap = Bitmap {File = "script_hc.png" ;} ;
746cdf0e10cSrcweir	};
747cdf0e10cSrcweir};
748cdf0e10cSrcweir
749cdf0e10cSrcweir/*************************************************************************
750cdf0e10cSrcweir| Tabpage-Dialog : Hyperlinks
751cdf0e10cSrcweir*************************************************************************/
752cdf0e10cSrcweirModalDialog RID_SVXDLG_NEWHYPERLINK
753cdf0e10cSrcweir{
754*d15d3e1cSmseidel	HelpID = CMD_SID_HYPERLINK_DIALOG ;
7552a20bd3bSMatthias Seidel	OutputSize = TRUE ;
756cdf0e10cSrcweir	SVLook = TRUE ;
7572a20bd3bSMatthias Seidel	Size = MAP_APPFONT ( 325, 185 ) ;
758cdf0e10cSrcweir	Text [ en-US ] = "Hyperlink" ;
759cdf0e10cSrcweir	Moveable = TRUE ;
760cdf0e10cSrcweir};
761cdf0e10cSrcweir
762cdf0e10cSrcweir/*************************************************************************
763cdf0e10cSrcweir| Tabpage-Dialog : Hyperlinks
764cdf0e10cSrcweir*************************************************************************/
765cdf0e10cSrcweir
766cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_APPLYBUT
767cdf0e10cSrcweir{
768cdf0e10cSrcweir	Text [ en-US ] = "Apply" ;
769cdf0e10cSrcweir};
770cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_CLOSEBUT
771cdf0e10cSrcweir{
772cdf0e10cSrcweir	Text [ en-US ] = "Close" ;
773cdf0e10cSrcweir};
774cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_MACROACT1
775cdf0e10cSrcweir{
776cdf0e10cSrcweir	Text [ en-US ] = "Mouse over object" ;
777cdf0e10cSrcweir};
778cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_MACROACT2
779cdf0e10cSrcweir{
780cdf0e10cSrcweir	Text [ en-US ] = "Trigger hyperlink" ;
781cdf0e10cSrcweir};
782cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_MACROACT3
783cdf0e10cSrcweir{
784cdf0e10cSrcweir	Text [ en-US ] = "Mouse leaves object" ;
785cdf0e10cSrcweir};
786cdf0e10cSrcweir
787cdf0e10cSrcweirString RID_SVXSTR_HYPDLG_NOVALIDFILENAME
788cdf0e10cSrcweir{
789cdf0e10cSrcweir	Text [ en-US ] = "Please type in a valid file name." ;
790cdf0e10cSrcweir};
791cdf0e10cSrcweir
792cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLINETTP
793cdf0e10cSrcweir{
794cdf0e10cSrcweir	Text [ en-US ] = "Internet" ;
795cdf0e10cSrcweir};
796cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLINETTP_HELP
797cdf0e10cSrcweir{
798cdf0e10cSrcweir	Text [ en-US ] = "This is where you create a hyperlink to a Web page, FTP server or Telnet connection." ;
799cdf0e10cSrcweir};
800cdf0e10cSrcweir
801cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLMAILTP
802cdf0e10cSrcweir{
803cdf0e10cSrcweir	Text [ en-US ] = "Mail & News" ;
804cdf0e10cSrcweir};
805cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLMAILTP_HELP
806cdf0e10cSrcweir{
807cdf0e10cSrcweir	Text [ en-US ] = "This is where you create a hyperlink to an e-mail address or newsgroup." ;
808cdf0e10cSrcweir};
809cdf0e10cSrcweir
810cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLDOCTP
811cdf0e10cSrcweir{
812cdf0e10cSrcweir	Text [ en-US ] = "Document" ;
813cdf0e10cSrcweir};
814cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLDOCTP_HELP
815cdf0e10cSrcweir{
8162a20bd3bSMatthias Seidel	Text [ en-US ] = "This is where you create a hyperlink to an existing document or a target within a document." ;
817cdf0e10cSrcweir};
818cdf0e10cSrcweir
819cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLDOCNTP
820cdf0e10cSrcweir{
821cdf0e10cSrcweir	Text [ en-US ] = "New Document" ;
822cdf0e10cSrcweir};
823cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_HLDOCNTP_HELP
824cdf0e10cSrcweir{
825cdf0e10cSrcweir	Text [ en-US ] = "This is where you create a new document to which the new link points." ;
826cdf0e10cSrcweir};
827cdf0e10cSrcweir
828cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_FORM_BUTTON
829cdf0e10cSrcweir{
830cdf0e10cSrcweir	Text [ en-US ] = "Button" ;
831cdf0e10cSrcweir};
832cdf0e10cSrcweir
833cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_FROM_TEXT
834cdf0e10cSrcweir{
835cdf0e10cSrcweir	Text [ en-US ] = "Text" ;
836cdf0e10cSrcweir};
837cdf0e10cSrcweir
838cdf0e10cSrcweirString RID_SVXSTR_HYPERDLG_QUERYOVERWRITE
839cdf0e10cSrcweir{
840cdf0e10cSrcweir	Text [ en-US ] = "The file already exists. Overwrite?" ;
841cdf0e10cSrcweir};
842cdf0e10cSrcweir
843cdf0e10cSrcweirImage RID_SVXBMP_HLINETTP
844cdf0e10cSrcweir{
845*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hlinettp.png" ;} ;
846cdf0e10cSrcweir};
847cdf0e10cSrcweir
848cdf0e10cSrcweirImage RID_SVXBMP_HLMAILTP
849cdf0e10cSrcweir{
850*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hlmailtp.png" ;} ;
851cdf0e10cSrcweir};
852cdf0e10cSrcweir
853cdf0e10cSrcweirImage RID_SVXBMP_HLDOCTP
854cdf0e10cSrcweir{
855*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hldoctp.png" ;} ;
856cdf0e10cSrcweir};
857cdf0e10cSrcweir
858cdf0e10cSrcweirImage RID_SVXBMP_HLDOCNTP
859cdf0e10cSrcweir{
860*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hldocntp.png" ;} ;
861cdf0e10cSrcweir};
862cdf0e10cSrcweir
863cdf0e10cSrcweirImage RID_SVXBMP_HLINETTP_H
864cdf0e10cSrcweir{
865*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hlinettp_h.png" ;} ;
866cdf0e10cSrcweir};
867cdf0e10cSrcweir
868cdf0e10cSrcweirImage RID_SVXBMP_HLMAILTP_H
869cdf0e10cSrcweir{
870*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hlmailtp_h.png" ;} ;
871cdf0e10cSrcweir};
872cdf0e10cSrcweir
873cdf0e10cSrcweirImage RID_SVXBMP_HLDOCTP_H
874cdf0e10cSrcweir{
875*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hldoctp_h.png" ;} ;
876cdf0e10cSrcweir};
877cdf0e10cSrcweir
878cdf0e10cSrcweirImage RID_SVXBMP_HLDOCNTP_H
879cdf0e10cSrcweir{
880*d15d3e1cSmseidel	ImageBitmap = Bitmap {File = "hldocntp_h.png" ;} ;
881cdf0e10cSrcweir};
882*d15d3e1cSmseidel
883*d15d3e1cSmseidel// ********************************************************************** EOF
884