xref: /aoo42x/main/svx/source/dialog/docrecovery.src (revision 09a1d057)
1*09a1d057SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*09a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*09a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*09a1d057SAndrew Rist * distributed with this work for additional information
6*09a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*09a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*09a1d057SAndrew Rist * "License"); you may not use this file except in compliance
9*09a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10*09a1d057SAndrew Rist *
11*09a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*09a1d057SAndrew Rist *
13*09a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*09a1d057SAndrew Rist * software distributed under the License is distributed on an
15*09a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*09a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
17*09a1d057SAndrew Rist * specific language governing permissions and limitations
18*09a1d057SAndrew Rist * under the License.
19*09a1d057SAndrew Rist *
20*09a1d057SAndrew Rist *************************************************************/
21*09a1d057SAndrew Rist
22*09a1d057SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include <svx/dialogs.hrc>
25cdf0e10cSrcweir#include "helpid.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweir#include "docrecovery.hrc"
28cdf0e10cSrcweir
29cdf0e10cSrcweirTabDialog RID_SVX_TABDLG_DOCRECOVERY
30cdf0e10cSrcweir{
31cdf0e10cSrcweir	Size = MAP_APPFONT( TABDLG_WIDTH, TABDLG_HEIGHT );
32cdf0e10cSrcweir	HelpId = HID_SVX_TABDLG_DOCRECOVERY;
33cdf0e10cSrcweir	OutputSize = TRUE;
34cdf0e10cSrcweir	SVLook = TRUE;
35cdf0e10cSrcweir	Moveable = TRUE;
36cdf0e10cSrcweir	Closeable = FALSE;
37cdf0e10cSrcweir    Text = "%PRODUCTNAME %PRODUCTVERSION";
38cdf0e10cSrcweir};
39cdf0e10cSrcweir
40cdf0e10cSrcweirTabPage RID_SVXPAGE_DOCRECOVERY_SAVE
41cdf0e10cSrcweir{
42cdf0e10cSrcweir	Size = MAP_APPFONT( SAVE_WIDTH, SAVE_HEIGHT );
43cdf0e10cSrcweir	HelpId = HID_SVX_TP_DOCRECOVERY_SAVE;
44cdf0e10cSrcweir	OutputSize = TRUE;
45cdf0e10cSrcweir	SVLook = TRUE;
46cdf0e10cSrcweir    Hide = TRUE;
47cdf0e10cSrcweir	Window WIN_SAVE_TITLE
48cdf0e10cSrcweir	{
49cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , 0 );
50cdf0e10cSrcweir		Size = MAP_APPFONT( SAVE_WIDTH, SAVE_ROW1 );
51cdf0e10cSrcweir	};
52cdf0e10cSrcweir	FixedText FT_SAVE_TITLE
53cdf0e10cSrcweir	{
54cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVE_COL0 , SAVE_ROW0 );
55cdf0e10cSrcweir		Size = MAP_APPFONT( SAVE_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
56cdf0e10cSrcweir		Text[ en-US ] = "%PRODUCTNAME Document Recovery";
57cdf0e10cSrcweir	};
58cdf0e10cSrcweir    FixedLine FL_SAVE_TITLE
59cdf0e10cSrcweir    {
60cdf0e10cSrcweir        Pos = MAP_APPFONT( 0 , SAVE_ROW1 );
61cdf0e10cSrcweir        Size = MAP_APPFONT( SAVE_WIDTH, 2 );
62cdf0e10cSrcweir    };
63cdf0e10cSrcweir	FixedText FT_SAVE_DESCR
64cdf0e10cSrcweir	{
65cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVE_COL0 , SAVE_ROW2 );
66cdf0e10cSrcweir        Size = MAP_APPFONT( SAVE_CONTROLWIDTH, (SAVE_ROW3-SAVE_ROW2-RSC_SP_CTRL_DESC_Y) );
67cdf0e10cSrcweir		WordBreak = TRUE;
68cdf0e10cSrcweir		Text[ en-US ] = "Due to an unexpected error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically.";
69cdf0e10cSrcweir	};
70cdf0e10cSrcweir	FixedText FT_SAVE_FILELIST
71cdf0e10cSrcweir	{
72cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVE_COL0 , SAVE_ROW3 );
73cdf0e10cSrcweir		Size = MAP_APPFONT( SAVE_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
74cdf0e10cSrcweir		Text[ en-US ] = "The following files will be recovered:";
75cdf0e10cSrcweir	};
76cdf0e10cSrcweir    ListBox LB_SAVE_FILELIST
77cdf0e10cSrcweir	{
78cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVXPAGE_DOCRECOVERY_SAVE:LB_SAVE_FILELIST";
79cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVE_COL0 , SAVE_ROW4 );
80cdf0e10cSrcweir		Size = MAP_APPFONT( SAVE_CONTROLWIDTH, SAVE_FILELISTHEIGHT );
81cdf0e10cSrcweir        Border = TRUE;
82cdf0e10cSrcweir        TabStop = TRUE;
83cdf0e10cSrcweir	};
84cdf0e10cSrcweir	FixedLine FL_SAVE_BOTTOM
85cdf0e10cSrcweir	{
86cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , SAVE_ROW7 );
87cdf0e10cSrcweir		Size = MAP_APPFONT( SAVE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
88cdf0e10cSrcweir	};
89cdf0e10cSrcweir	OKButton BT_SAVE_OK
90cdf0e10cSrcweir	{
91cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVE_COL1 , SAVE_ROW8 );
92cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
93cdf0e10cSrcweir		DefButton = TRUE;
94cdf0e10cSrcweir	};
95cdf0e10cSrcweir};
96cdf0e10cSrcweir
97cdf0e10cSrcweirModalDialog RID_SVX_MDLG_DOCRECOVERY_PROGR
98cdf0e10cSrcweir{
99cdf0e10cSrcweir	Size = MAP_APPFONT( SAVEPROGR_WIDTH, SAVEPROGR_HEIGHT );
100cdf0e10cSrcweir	HelpId = HID_SVX_MDLG_DOCRECOVERY_PROGR;
101cdf0e10cSrcweir	OutputSize = TRUE;
102cdf0e10cSrcweir	SVLook = TRUE;
103cdf0e10cSrcweir	Moveable = TRUE;
104cdf0e10cSrcweir	Closeable = FALSE;
105cdf0e10cSrcweir    Text = "%PRODUCTNAME %PRODUCTVERSION";
106cdf0e10cSrcweir
107cdf0e10cSrcweir	FixedText FT_SAVEPROGR_HINT
108cdf0e10cSrcweir	{
109cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVEPROGR_COL0, SAVEPROGR_ROW0 );
110cdf0e10cSrcweir		Size = MAP_APPFONT( SAVEPROGR_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
111cdf0e10cSrcweir        Text[ en-US ] = "Documents are being saved.";
112cdf0e10cSrcweir	};
113cdf0e10cSrcweir	FixedText FT_SAVEPROGR_PROGR
114cdf0e10cSrcweir	{
115cdf0e10cSrcweir		Pos = MAP_APPFONT( SAVEPROGR_COL0, SAVEPROGR_ROW1 );
116cdf0e10cSrcweir		Size = MAP_APPFONT( SAVEPROGR_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
117cdf0e10cSrcweir		Text[ en-US ] = "Progress of saving: ";
118cdf0e10cSrcweir	};
119cdf0e10cSrcweir	Window WIN_SAVEPROGR_PROGR
120cdf0e10cSrcweir	{
121cdf0e10cSrcweir        Pos = MAP_APPFONT( SAVEPROGR_COL0, SAVEPROGR_ROW2 );
122cdf0e10cSrcweir        Size = MAP_APPFONT( SAVEPROGR_CONTROLWIDTH, PROGR_HEIGHT );
123cdf0e10cSrcweir        Border = TRUE;
124cdf0e10cSrcweir	};
125cdf0e10cSrcweir};
126cdf0e10cSrcweir
127cdf0e10cSrcweirTabPage RID_SVXPAGE_DOCRECOVERY_RECOVER
128cdf0e10cSrcweir{
129cdf0e10cSrcweir	Size = MAP_APPFONT( RECOV_WIDTH, RECOV_HEIGHT );
130cdf0e10cSrcweir	HelpId = HID_SVX_TP_DOCRECOVERY_RECOVER;
131cdf0e10cSrcweir	OutputSize = TRUE;
132cdf0e10cSrcweir	SVLook = TRUE;
133cdf0e10cSrcweir    Hide = TRUE;
134cdf0e10cSrcweir	Window WIN_RECOV_TITLE
135cdf0e10cSrcweir	{
136cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , 0 );
137cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_WIDTH, RECOV_TITLEWINHEIGHT );
138cdf0e10cSrcweir	};
139cdf0e10cSrcweir	FixedText FT_RECOV_TITLE
140cdf0e10cSrcweir	{
141cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW0 );
142cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
143cdf0e10cSrcweir		Text[ en-US ] = "%PRODUCTNAME Document Recovery";
144cdf0e10cSrcweir	};
145cdf0e10cSrcweir    FixedLine FL_RECOV_TITLE
146cdf0e10cSrcweir    {
147cdf0e10cSrcweir        Pos = MAP_APPFONT( 0 , RECOV_TITLEWINHEIGHT );
148cdf0e10cSrcweir        Size = MAP_APPFONT( RECOV_WIDTH, 2 );
149cdf0e10cSrcweir    };
150cdf0e10cSrcweir	FixedText FT_RECOV_DESCR
151cdf0e10cSrcweir	{
152cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW2 );
153cdf0e10cSrcweir        Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RECOV_DESCRHEIGHT );
154cdf0e10cSrcweir		WordBreak = TRUE;
155cdf0e10cSrcweir		Text[ en-US ] = "Press 'Start Recovery' to start the recovery process of the documents listed below.\n\nThe 'Status' column shows whether the document could be recovered.";
156cdf0e10cSrcweir	};
157cdf0e10cSrcweir	FixedText FT_RECOV_PROGR
158cdf0e10cSrcweir	{
159cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW3 );
160cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
161cdf0e10cSrcweir		Text[ en-US ] = "Recovering document:";
162cdf0e10cSrcweir	};
163cdf0e10cSrcweir	Window WIN_RECOV_PROGR
164cdf0e10cSrcweir	{
165cdf0e10cSrcweir        Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW4 );
166cdf0e10cSrcweir        Size = MAP_APPFONT( RECOV_CONTROLWIDTH, PROGR_HEIGHT );
167cdf0e10cSrcweir        Border = TRUE;
168cdf0e10cSrcweir	};
169cdf0e10cSrcweir	FixedText FT_RECOV_FILELIST
170cdf0e10cSrcweir	{
171cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW5 );
172cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
173cdf0e10cSrcweir		Text[ en-US ] = "Status of recovered documents:";
174cdf0e10cSrcweir	};
175cdf0e10cSrcweir	String STR_HEADERBAR
176cdf0e10cSrcweir	{
177cdf0e10cSrcweir        Text[ en-US ] = "Document Name\tStatus";
178cdf0e10cSrcweir	};
179cdf0e10cSrcweir	Control LB_RECOV_FILELIST
180cdf0e10cSrcweir	{
181cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW6 );
182cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RECOV_FILELISTHEIGHT );
183cdf0e10cSrcweir		Border = TRUE;
184cdf0e10cSrcweir		SVLook = TRUE;
185cdf0e10cSrcweir	};
186cdf0e10cSrcweir	FixedLine FL_RECOV_BOTTOM
187cdf0e10cSrcweir	{
188cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , RECOV_ROW8 );
189cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
190cdf0e10cSrcweir	};
191cdf0e10cSrcweir	PushButton BTN_RECOV_NEXT
192cdf0e10cSrcweir	{
193cdf0e10cSrcweir	    HelpID = "svx:PushButton:RID_SVXPAGE_DOCRECOVERY_RECOVER:BTN_RECOV_NEXT";
194cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL_C, RECOV_ROW9 );
195cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH*2, RSC_CD_PUSHBUTTON_HEIGHT );
196cdf0e10cSrcweir		Text[ en-US ] = "~Start Recovery >";
197cdf0e10cSrcweir        DefButton = TRUE;
198cdf0e10cSrcweir	};
199cdf0e10cSrcweir    String STR_RECOVERY_NEXT
200cdf0e10cSrcweir    {
201cdf0e10cSrcweir        Text[ en-US ] = "~Next >";
202cdf0e10cSrcweir    };
203cdf0e10cSrcweir	CancelButton BTN_RECOV_CANCEL
204cdf0e10cSrcweir	{
205cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL_F, RECOV_ROW9 );
206cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
207cdf0e10cSrcweir	};
208cdf0e10cSrcweir    Image IMG_GREENCHECK
209cdf0e10cSrcweir    {
210cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nu01.png"; };
211cdf0e10cSrcweir	};
212cdf0e10cSrcweir    Image IMG_GREENCHECK_HC
213cdf0e10cSrcweir    {
214cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nuh01.png"; };
215cdf0e10cSrcweir	};
216cdf0e10cSrcweir    Image IMG_YELLOWCHECK
217cdf0e10cSrcweir    {
218cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nu04.png"; };
219cdf0e10cSrcweir    };
220cdf0e10cSrcweir    Image IMG_YELLOWCHECK_HC
221cdf0e10cSrcweir    {
222cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nuh04.png"; };
223cdf0e10cSrcweir    };
224cdf0e10cSrcweir    Image IMG_REDCROSS
225cdf0e10cSrcweir    {
226cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nu02.png"; };
227cdf0e10cSrcweir	};
228cdf0e10cSrcweir    Image IMG_REDCROSS_HC
229cdf0e10cSrcweir    {
230cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "nuh02.png"; };
231cdf0e10cSrcweir	};
232cdf0e10cSrcweir	String STR_SUCCESSRECOV
233cdf0e10cSrcweir	{
234cdf0e10cSrcweir		Text[ en-US ] = "Successfully recovered";
235cdf0e10cSrcweir	};
236cdf0e10cSrcweir    String STR_ORIGDOCRECOV
237cdf0e10cSrcweir	{
238cdf0e10cSrcweir        Text[ en-US ] = "Original document recovered";
239cdf0e10cSrcweir	};
240cdf0e10cSrcweir	String STR_RECOVFAILED
241cdf0e10cSrcweir	{
242cdf0e10cSrcweir		Text[ en-US ] = "Recovery failed";
243cdf0e10cSrcweir	};
244cdf0e10cSrcweir	String STR_RECOVINPROGR
245cdf0e10cSrcweir	{
246cdf0e10cSrcweir		Text[ en-US ] = "Recovery in progress";
247cdf0e10cSrcweir	};
248cdf0e10cSrcweir	String STR_NOTRECOVYET
249cdf0e10cSrcweir	{
250cdf0e10cSrcweir		Text[ en-US ] = "Not recovered yet";
251cdf0e10cSrcweir	};
252cdf0e10cSrcweir	String STR_RECOVERY_INPROGRESS
253cdf0e10cSrcweir	{
254cdf0e10cSrcweir	    Text[ en-US ] = "%PRODUCTNAME %PRODUCTVERSION will start to recover your documents. Depending on the size of the documents this process can take some time." ;
255cdf0e10cSrcweir	};
256cdf0e10cSrcweir	String STR_RECOVERY_REPORT
257cdf0e10cSrcweir	{
258cdf0e10cSrcweir	    Text[ en-US ] = "A report of the crash was created to help us identify the reason why %PRODUCTNAME crashed. Click 'Next' to get to the Error Report Tool or press 'Cancel' to skip this step." ;
259cdf0e10cSrcweir	};
260cdf0e10cSrcweir	String STR_RECOVERYONLY_FINISH_DESCR
261cdf0e10cSrcweir	{
262cdf0e10cSrcweir		Text[ en-US ] = "Recovery of your documents was finished.\nClick 'Finish' to see your documents.";
263cdf0e10cSrcweir	};
264cdf0e10cSrcweir	String STR_RECOVERYONLY_FINISH
265cdf0e10cSrcweir	{
266cdf0e10cSrcweir		Text[ en-US ] = "~Finish";
267cdf0e10cSrcweir	};
268cdf0e10cSrcweir};
269cdf0e10cSrcweir
270cdf0e10cSrcweirQueryBox RID_SVXQB_EXIT_RECOVERY
271cdf0e10cSrcweir{
272cdf0e10cSrcweir	BUTTONS = WB_YES_NO ;
273cdf0e10cSrcweir	DEFBUTTON = WB_DEF_YES ;
274cdf0e10cSrcweir	Message [ en-US ] = "Are you sure you want to cancel the %PRODUCTNAME document recovery?";
275cdf0e10cSrcweir};
276cdf0e10cSrcweir
277cdf0e10cSrcweirModalDialog RID_SVX_MDLG_DOCRECOVERY_BROKEN
278cdf0e10cSrcweir{
279cdf0e10cSrcweir	Size = MAP_APPFONT( BROKEN_WIDTH, BROKEN_HEIGHT );
280cdf0e10cSrcweir	HelpId = HID_SVX_MDLG_DOCRECOVERY_BROKEN;
281cdf0e10cSrcweir	OutputSize = TRUE;
282cdf0e10cSrcweir	SVLook = TRUE;
283cdf0e10cSrcweir	Moveable = TRUE;
284cdf0e10cSrcweir    Text = "%PRODUCTNAME %PRODUCTVERSION";
285cdf0e10cSrcweir
286cdf0e10cSrcweir	FixedText FT_BROKEN_DESCR
287cdf0e10cSrcweir	{
288cdf0e10cSrcweir		Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW0 );
289cdf0e10cSrcweir        Size = MAP_APPFONT( BROKEN_CONTROLWIDTH, (5*RSC_CD_FIXEDTEXT_HEIGHT) );
290cdf0e10cSrcweir		WordBreak = TRUE;
291cdf0e10cSrcweir		Text[ en-US ] = "The automatic recovery process was interrupted.\n\nThe documents listed below will be saved in the folder noted below if you click 'Save'. Click 'Cancel' to close the wizard without saving the documents.";
292cdf0e10cSrcweir	};
293cdf0e10cSrcweir	FixedText FT_BROKEN_FILELIST
294cdf0e10cSrcweir	{
295cdf0e10cSrcweir		Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW1 );
296cdf0e10cSrcweir		Size = MAP_APPFONT( BROKEN_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
297cdf0e10cSrcweir		Text[ en-US ] = "Documents";
298cdf0e10cSrcweir	};
299cdf0e10cSrcweir    ListBox LB_BROKEN_FILELIST
300cdf0e10cSrcweir	{
301cdf0e10cSrcweir        HelpID = "svx:ListBox:RID_SVX_MDLG_DOCRECOVERY_BROKEN:LB_BROKEN_FILELIST";
302cdf0e10cSrcweir		Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW2 );
303cdf0e10cSrcweir		Size = MAP_APPFONT( BROKEN_CONTROLWIDTH, (BROKEN_ROW3-BROKEN_ROW2) );
304cdf0e10cSrcweir        Border = TRUE;
305cdf0e10cSrcweir        TabStop = TRUE;
306cdf0e10cSrcweir	};
307cdf0e10cSrcweir    FixedText FT_BROKEN_SAVEDIR
308cdf0e10cSrcweir    {
309cdf0e10cSrcweir        Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW4 + 1 ); // see ED_BROKEN_SAVEDIR
310cdf0e10cSrcweir        Size = MAP_APPFONT( BROKEN_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
311cdf0e10cSrcweir        Text[ en-US ] = "~Save to";
312cdf0e10cSrcweir    };
313cdf0e10cSrcweir    Edit ED_BROKEN_SAVEDIR
314cdf0e10cSrcweir    {
315cdf0e10cSrcweir        HelpID = "svx:Edit:RID_SVX_MDLG_DOCRECOVERY_BROKEN:ED_BROKEN_SAVEDIR";
316cdf0e10cSrcweir        Pos = MAP_APPFONT( BROKEN_COL0, BROKEN_ROW5 + 1 ); // center to pushbutton
317cdf0e10cSrcweir        Size = MAP_APPFONT( BROKEN_COL2 - BROKEN_COL0, RSC_CD_TEXTBOX_HEIGHT );
318cdf0e10cSrcweir        Border = TRUE;
319cdf0e10cSrcweir    };
320cdf0e10cSrcweir    PushButton BTN_BROKEN_SAVEDIR
321cdf0e10cSrcweir	{
322cdf0e10cSrcweir        HelpID = "svx:PushButton:RID_SVX_MDLG_DOCRECOVERY_BROKEN:BTN_BROKEN_SAVEDIR";
323cdf0e10cSrcweir        Pos = MAP_APPFONT( BROKEN_COL3, BROKEN_ROW5 );
324cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
325cdf0e10cSrcweir        Text [ en-US ] = "Chan~ge...";
326cdf0e10cSrcweir	};
327cdf0e10cSrcweir	FixedLine FL_BROKEN_BOTTOM
328cdf0e10cSrcweir	{
329cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , BROKEN_ROW6 );
330cdf0e10cSrcweir		Size = MAP_APPFONT( BROKEN_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
331cdf0e10cSrcweir	};
332cdf0e10cSrcweir	OKButton BTN_BROKEN_OK
333cdf0e10cSrcweir	{
334cdf0e10cSrcweir        Pos = MAP_APPFONT( BROKEN_COL1, BROKEN_ROW7 );
335cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
336cdf0e10cSrcweir		DefButton = TRUE;
337cdf0e10cSrcweir        Text [ en-US ] = "~Save";
338cdf0e10cSrcweir	};
339cdf0e10cSrcweir	CancelButton BTN_BROKEN_CANCEL
340cdf0e10cSrcweir	{
341cdf0e10cSrcweir        Pos = MAP_APPFONT( BROKEN_COL3, BROKEN_ROW7 );
342cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
343cdf0e10cSrcweir	};
344cdf0e10cSrcweir};
345cdf0e10cSrcweir
346cdf0e10cSrcweirTabPage RID_SVXPAGE_ERR_REP_WELCOME
347cdf0e10cSrcweir{
348cdf0e10cSrcweir	Size = MAP_APPFONT( RECOV_WIDTH, RECOV_HEIGHT );
349cdf0e10cSrcweir	HelpId = HID_SVX_TP_ERR_REP_WELCOME;
350cdf0e10cSrcweir	OutputSize = TRUE;
351cdf0e10cSrcweir	SVLook = TRUE;
352cdf0e10cSrcweir    Hide = TRUE;
353cdf0e10cSrcweir	Window WIN_RECOV_TITLE
354cdf0e10cSrcweir	{
355cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , 0 );
356cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_WIDTH, RECOV_TITLEWINHEIGHT );
357cdf0e10cSrcweir	};
358cdf0e10cSrcweir	FixedText FT_RECOV_TITLE
359cdf0e10cSrcweir	{
360cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW0 );
361cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
362cdf0e10cSrcweir		Text[ en-US ] = "Welcome to the %PRODUCTNAME %PRODUCTVERSION Error Report";
363cdf0e10cSrcweir	};
364cdf0e10cSrcweir    FixedLine FL_RECOV_TITLE
365cdf0e10cSrcweir    {
366cdf0e10cSrcweir        Pos = MAP_APPFONT( 0 , RECOV_TITLEWINHEIGHT );
367cdf0e10cSrcweir        Size = MAP_APPFONT( RECOV_WIDTH, 2 );
368cdf0e10cSrcweir    };
369cdf0e10cSrcweir	FixedText FT_RECOV_DESCR
370cdf0e10cSrcweir	{
371cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL1, RECOV_ROW2 );
372cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_CONTROLWIDTH, (RECOV_ROW7-RECOV_ROW2-RSC_SP_CTRL_Y) );
373cdf0e10cSrcweir		WordBreak = TRUE;
374cdf0e10cSrcweir		Text[ en-US ] = "This error report tool gathers information about how %PRODUCTNAME is working and sends it to Oracle to help improve future versions.\n\nIt's easy - just send the report without any further effort on your part by clicking 'Send' in the next dialog, or you can briefly describe how the error occurred and then click 'Send'. If you want to see the report, click the 'Show Report' button. No data will be sent if you click 'Do Not Send'.\n\nCustomer Privacy\nThe information gathered is limited to data concerning the state of %PRODUCTNAME %PRODUCTVERSION when the error occurred. Other information about passwords or document contents is not collected.\n\nThe information will only be used to improve the quality of %PRODUCTNAME and will not be shared with third parties.\nFor more information on Oracle's privacy policy, visit\nwww.oracle.com/html/services-privacy-policy.html";
375cdf0e10cSrcweir	};
376cdf0e10cSrcweir	FixedLine FL_RECOV_BOTTOM
377cdf0e10cSrcweir	{
378cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , RECOV_ROW8 );
379cdf0e10cSrcweir		Size = MAP_APPFONT( RECOV_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
380cdf0e10cSrcweir	};
381cdf0e10cSrcweir	PushButton BTN_RECOV_PREV
382cdf0e10cSrcweir	{
383cdf0e10cSrcweir	    HelpID = "svx:PushButton:RID_SVXPAGE_ERR_REP_WELCOME:BTN_RECOV_PREV";
384cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL_C, RECOV_ROW9 );
385cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
386cdf0e10cSrcweir		Text[ en-US ] = "< ~Back";
387cdf0e10cSrcweir	};
388cdf0e10cSrcweir	OKButton BTN_RECOV_NEXT
389cdf0e10cSrcweir	{
390cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL_D, RECOV_ROW9 );
391cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
392cdf0e10cSrcweir		Text[ en-US ] = "~Next >";
393cdf0e10cSrcweir        DefButton = TRUE;
394cdf0e10cSrcweir	};
395cdf0e10cSrcweir	CancelButton BTN_RECOV_CANCEL
396cdf0e10cSrcweir	{
397cdf0e10cSrcweir		Pos = MAP_APPFONT( RECOV_COL_F, RECOV_ROW9 );
398cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
399cdf0e10cSrcweir	};
400cdf0e10cSrcweir};
401cdf0e10cSrcweir
402cdf0e10cSrcweirTabPage RID_SVXPAGE_ERR_REP_SEND
403cdf0e10cSrcweir{
404cdf0e10cSrcweir	Size = MAP_APPFONT( ERRSEND_WIDTH, ERRSEND_HEIGHT );
405cdf0e10cSrcweir	HelpId = HID_SVX_TP_ERR_REP_SEND;
406cdf0e10cSrcweir	OutputSize = TRUE;
407cdf0e10cSrcweir	SVLook = TRUE;
408cdf0e10cSrcweir    Hide = TRUE;
409cdf0e10cSrcweir	Window WIN_RECOV_TITLE
410cdf0e10cSrcweir	{
411cdf0e10cSrcweir		Pos = MAP_APPFONT( 0 , 0 );
412cdf0e10cSrcweir		Size = MAP_APPFONT( ERRSEND_WIDTH, RECOV_TITLEWINHEIGHT );
413cdf0e10cSrcweir	};
414cdf0e10cSrcweir	FixedText FT_RECOV_TITLE
415cdf0e10cSrcweir	{
416cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW0 );
417cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH1, RSC_CD_FIXEDTEXT_HEIGHT );
418cdf0e10cSrcweir		Text[ en-US ] = "Sending the Error Report";
419cdf0e10cSrcweir	};
420cdf0e10cSrcweir    FixedLine FL_RECOV_TITLE
421cdf0e10cSrcweir    {
422cdf0e10cSrcweir        Pos = MAP_APPFONT( 0 , RECOV_TITLEWINHEIGHT );
423cdf0e10cSrcweir        Size = MAP_APPFONT( RECOV_WIDTH, 2 );
424cdf0e10cSrcweir    };
425cdf0e10cSrcweir	FixedText FT_RECOV_DESCR
426cdf0e10cSrcweir	{
427cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW2 );
428cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, (ERRSEND_ROW3-ERRSEND_ROW2) );
429cdf0e10cSrcweir		WordBreak = TRUE;
430cdf0e10cSrcweir		Text[ en-US ] = "In the spaces below, you can enter a title for your error report and describe the action you were trying to carry out when the error occurred. Then click 'Send'.";
431cdf0e10cSrcweir	};
432cdf0e10cSrcweir
433cdf0e10cSrcweir	FixedText FT_ERRSEND_DOCTYPE
434cdf0e10cSrcweir	{
435cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW4 );
436cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, 2*RSC_CD_FIXEDTEXT_HEIGHT );
437cdf0e10cSrcweir        WordBreak = TRUE;
438cdf0e10cSrcweir		Text[ en-US ] = "~Which type of document (e.g. presentation) were you using when the error occurred?";
439cdf0e10cSrcweir	};
440cdf0e10cSrcweir	Edit ED_ERRSEND_DOCTYPE
441cdf0e10cSrcweir	{
442cdf0e10cSrcweir	    HelpID = "svx:Edit:RID_SVXPAGE_ERR_REP_SEND:ED_ERRSEND_DOCTYPE";
443cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW5 );
444cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, RSC_CD_TEXTBOX_HEIGHT );
445cdf0e10cSrcweir		Border = TRUE;
446cdf0e10cSrcweir	};
447cdf0e10cSrcweir	FixedText FT_ERRSEND_USING
448cdf0e10cSrcweir	{
449cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW7 );
450cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, RSC_CD_FIXEDTEXT_HEIGHT );
451cdf0e10cSrcweir        Text[ en-US ] = "~How were you using %PRODUCTNAME when the error occurred? (optional)";
452cdf0e10cSrcweir	};
453cdf0e10cSrcweir	MultiLineEdit ML_ERRSEND_USING
454cdf0e10cSrcweir	{
455cdf0e10cSrcweir	    HelpID = "svx:MultiLineEdit:RID_SVXPAGE_ERR_REP_SEND:ML_ERRSEND_USING";
456cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW8 );
457cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, (ERRSEND_ROW12-ERRSEND_ROW8-RSC_SP_CTRL_Y) );
458cdf0e10cSrcweir        VScroll = TRUE;
459cdf0e10cSrcweir        IgnoreTab = TRUE;
460cdf0e10cSrcweir		Border = TRUE;
461cdf0e10cSrcweir	};
462cdf0e10cSrcweir	PushButton BTN_ERRSEND_SHOWREP
463cdf0e10cSrcweir	{
464cdf0e10cSrcweir	    HelpID = "svx:PushButton:RID_SVXPAGE_ERR_REP_SEND:BTN_ERRSEND_SHOWREP";
465cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL3, ERRSEND_ROW8 );
466cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
467cdf0e10cSrcweir        Text[ en-US ] = "Show ~Report";
468cdf0e10cSrcweir	};
469cdf0e10cSrcweir	PushButton BTN_ERRSEND_OPT
470cdf0e10cSrcweir	{
471cdf0e10cSrcweir	    HelpID = "svx:PushButton:RID_SVXPAGE_ERR_REP_SEND:BTN_ERRSEND_OPT";
472cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRSEND_COL3, ERRSEND_ROW10 );
473cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
474cdf0e10cSrcweir        Text[ en-US ] = "~Options...";
475cdf0e10cSrcweir	};
476cdf0e10cSrcweir	CheckBox CB_ERRSEND_CONTACT
477cdf0e10cSrcweir	{
478cdf0e10cSrcweir	    HelpID = "svx:CheckBox:RID_SVXPAGE_ERR_REP_SEND:CB_ERRSEND_CONTACT";
479cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL0, ERRSEND_ROW12 );
480cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH2, RSC_CD_CHECKBOX_HEIGHT );
481cdf0e10cSrcweir		Check = FALSE;
482cdf0e10cSrcweir        Text[ en-US ] = "~I allow Oracle to contact me regarding this report.";
483cdf0e10cSrcweir	};
484cdf0e10cSrcweir	FixedText FT_ERRSEND_EMAILADDR
485cdf0e10cSrcweir	{
486cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL1, ERRSEND_ROW13 );
487cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH3, RSC_CD_FIXEDTEXT_HEIGHT );
488cdf0e10cSrcweir        Text[ en-US ] = "~Please enter your e-mail address";
489cdf0e10cSrcweir	};
490cdf0e10cSrcweir	Edit ED_ERRSEND_EMAILADDR
491cdf0e10cSrcweir	{
492cdf0e10cSrcweir	    HelpID = "svx:Edit:RID_SVXPAGE_ERR_REP_SEND:ED_ERRSEND_EMAILADDR";
493cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL1, ERRSEND_ROW14 );
494cdf0e10cSrcweir        Size = MAP_APPFONT( ERRSEND_CONTROLWIDTH3, RSC_CD_TEXTBOX_HEIGHT );
495cdf0e10cSrcweir		Border = TRUE;
496cdf0e10cSrcweir	};
497cdf0e10cSrcweir	FixedLine FL_RECOV_BOTTOM
498cdf0e10cSrcweir	{
499cdf0e10cSrcweir        Pos = MAP_APPFONT( 0 , ERRSEND_ROW15 );
500cdf0e10cSrcweir		Size = MAP_APPFONT( ERRSEND_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
501cdf0e10cSrcweir	};
502cdf0e10cSrcweir	PushButton BTN_RECOV_PREV
503cdf0e10cSrcweir	{
504cdf0e10cSrcweir	    HelpID = "svx:PushButton:RID_SVXPAGE_ERR_REP_SEND:BTN_RECOV_PREV";
505cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL5, ERRSEND_ROW16 );
506cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
507cdf0e10cSrcweir        Text[ en-US ] = "< ~Back";
508cdf0e10cSrcweir	};
509cdf0e10cSrcweir	OKButton BTN_RECOV_NEXT
510cdf0e10cSrcweir	{
511cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL6, ERRSEND_ROW16 );
512cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
513cdf0e10cSrcweir        Text[ en-US ] = "S~end";
514cdf0e10cSrcweir        DefButton = TRUE;
515cdf0e10cSrcweir	};
516cdf0e10cSrcweir	CancelButton BTN_RECOV_CANCEL
517cdf0e10cSrcweir	{
518cdf0e10cSrcweir        Pos = MAP_APPFONT( ERRSEND_COL3, ERRSEND_ROW16 );
519cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
520cdf0e10cSrcweir        Text[ en-US ] = "Do ~Not Send";
521cdf0e10cSrcweir	};
522cdf0e10cSrcweir};
523cdf0e10cSrcweir
524cdf0e10cSrcweirModalDialog RID_SVX_MDLG_ERR_REP_OPTIONS
525cdf0e10cSrcweir{
526cdf0e10cSrcweir	Size = MAP_APPFONT( ERROPT_WIDTH, ERROPT_HEIGHT );
527cdf0e10cSrcweir	HelpId = HID_SVX_MDLG_ERR_REP_OPTIONS;
528cdf0e10cSrcweir	OutputSize = TRUE;
529cdf0e10cSrcweir	SVLook = TRUE;
530cdf0e10cSrcweir	Moveable = TRUE;
531cdf0e10cSrcweir	Text[ en-US ] = "Options";
532cdf0e10cSrcweir
533cdf0e10cSrcweir	FixedLine FL_ERROPT_PROXY
534cdf0e10cSrcweir	{
535cdf0e10cSrcweir		Pos = MAP_APPFONT( ERROPT_COLA, ERROPT_ROW0 );
536cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_COLF - ERROPT_COLA, RSC_CD_FIXEDLINE_HEIGHT );
537cdf0e10cSrcweir		Text[ en-US ] = "Proxy settings";
538cdf0e10cSrcweir	};
539cdf0e10cSrcweir
540cdf0e10cSrcweir	RadioButton BTN_ERROPT_SYSTEM
541cdf0e10cSrcweir	{
542cdf0e10cSrcweir	    HelpID = "svx:RadioButton:RID_SVX_MDLG_ERR_REP_OPTIONS:BTN_ERROPT_SYSTEM";
543cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLB, ERROPT_ROW1 );
544cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_COLF - ERROPT_COLB, RSC_CD_RADIOBUTTON_HEIGHT );
545cdf0e10cSrcweir		Text[ en-US ] = "Use ~system settings";
546cdf0e10cSrcweir	};
547cdf0e10cSrcweir
548cdf0e10cSrcweir	RadioButton BTN_ERROPT_DIRECT
549cdf0e10cSrcweir	{
550cdf0e10cSrcweir	    HelpID = "svx:RadioButton:RID_SVX_MDLG_ERR_REP_OPTIONS:BTN_ERROPT_DIRECT";
551cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLB, ERROPT_ROW2 );
552cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_COLF - ERROPT_COLB, RSC_CD_RADIOBUTTON_HEIGHT );
553cdf0e10cSrcweir		Text[ en-US ] = "Use ~direct connection to the Internet";
554cdf0e10cSrcweir	};
555cdf0e10cSrcweir
556cdf0e10cSrcweir	RadioButton BTN_ERROPT_MANUAL
557cdf0e10cSrcweir	{
558cdf0e10cSrcweir	    HelpID = "svx:RadioButton:RID_SVX_MDLG_ERR_REP_OPTIONS:BTN_ERROPT_MANUAL";
559cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLB, ERROPT_ROW3 );
560cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_COLF - ERROPT_COLB, RSC_CD_RADIOBUTTON_HEIGHT );
561cdf0e10cSrcweir		Text[ en-US ] = "Use ~manual settings";
562cdf0e10cSrcweir	};
563cdf0e10cSrcweir
564cdf0e10cSrcweir	FixedText FT_ERROPT_PROXYSERVER
565cdf0e10cSrcweir	{
566cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLC, ERROPT_ROW4 );
567cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_SERVER_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
568cdf0e10cSrcweir		Text[ en-US ] = "HT~TP Proxy";
569cdf0e10cSrcweir	};
570cdf0e10cSrcweir
571cdf0e10cSrcweir	Edit ED_ERROPT_PROXYSERVER
572cdf0e10cSrcweir	{
573cdf0e10cSrcweir	    HelpID = "svx:Edit:RID_SVX_MDLG_ERR_REP_OPTIONS:ED_ERROPT_PROXYSERVER";
574cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLC, ERROPT_ROW5 );
575cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_SERVER_WIDTH, RSC_CD_TEXTBOX_HEIGHT );
576cdf0e10cSrcweir        Border = TRUE;
577cdf0e10cSrcweir	};
578cdf0e10cSrcweir
579cdf0e10cSrcweir	FixedText FT_ERROPT_PROXYPORT
580cdf0e10cSrcweir	{
581cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLC + ERROPT_SERVER_WIDTH + RSC_SP_CTRL_GROUP_X, ERROPT_ROW4 );
582cdf0e10cSrcweir		Size = MAP_APPFONT( ERROPT_PORT_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT );
583cdf0e10cSrcweir		Text[ en-US ] = "~Port";
584cdf0e10cSrcweir	};
585cdf0e10cSrcweir
586cdf0e10cSrcweir	Edit ED_ERROPT_PROXYPORT
587cdf0e10cSrcweir	{
588cdf0e10cSrcweir	    HelpID = "svx:Edit:RID_SVX_MDLG_ERR_REP_OPTIONS:ED_ERROPT_PROXYPORT";
589cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLC + ERROPT_SERVER_WIDTH + RSC_SP_CTRL_GROUP_X, ERROPT_ROW5 );
590cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_PORT_WIDTH, RSC_CD_TEXTBOX_HEIGHT );
591cdf0e10cSrcweir		Border = TRUE;
592cdf0e10cSrcweir	};
593cdf0e10cSrcweir
594cdf0e10cSrcweir    FixedText FT_ERROPT_DESCRIPTION
595cdf0e10cSrcweir    {
596cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLB, ERROPT_ROW6 );
597cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_COLF - ERROPT_COLB, ERROPT_ROW7 - ERROPT_ROW6 );
598cdf0e10cSrcweir        WordBreak = TRUE;
599cdf0e10cSrcweir        Text[ en-US ] = "The %PRODUCTNAME Error Report tool needs to be connected to the Internet to be able to send error reports.\nCompanies often use proxy servers in conjunction with a firewall to protect the network.\nIf this applies to your situation, you have to specify the address and port for the server.";
600cdf0e10cSrcweir    };
601cdf0e10cSrcweir
602cdf0e10cSrcweir    FixedLine FL_ERROPT_BUTTONS
603cdf0e10cSrcweir    {
604cdf0e10cSrcweir        Pos = MAP_APPFONT( 0, ERROPT_ROW8 );
605cdf0e10cSrcweir        Size = MAP_APPFONT( ERROPT_WIDTH, RSC_CD_FIXEDLINE_HEIGHT );
606cdf0e10cSrcweir    };
607cdf0e10cSrcweir
608cdf0e10cSrcweir    OKButton BTN_ERROPT_OK
609cdf0e10cSrcweir	{
610cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLD, ERROPT_ROW9 );
611cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
612cdf0e10cSrcweir        DefButton = TRUE;
613cdf0e10cSrcweir	};
614cdf0e10cSrcweir
615cdf0e10cSrcweir	CancelButton BTN_ERROPT_CANCEL
616cdf0e10cSrcweir	{
617cdf0e10cSrcweir        Pos = MAP_APPFONT( ERROPT_COLE, ERROPT_ROW9 );
618cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
619cdf0e10cSrcweir	};
620cdf0e10cSrcweir};
621cdf0e10cSrcweir
622cdf0e10cSrcweir
623cdf0e10cSrcweirModalDialog RID_SVX_MDLG_ERR_REP_PREVIEW
624cdf0e10cSrcweir{
625cdf0e10cSrcweir	Size = MAP_APPFONT( ERRPREVIEW_WIDTH, ERRPREVIEW_HEIGHT );
626cdf0e10cSrcweir	HelpId = HID_SVX_MDLG_ERR_REP_PREVIEW;
627cdf0e10cSrcweir	OutputSize = TRUE;
628cdf0e10cSrcweir	SVLook = TRUE;
629cdf0e10cSrcweir	Moveable = TRUE;
630cdf0e10cSrcweir    Sizeable = TRUE;
631cdf0e10cSrcweir    Text[ en-US ] = "Error Report";
632cdf0e10cSrcweir
633cdf0e10cSrcweir	MultiLineEdit ML_ERRPREVIEW_CONTENT
634cdf0e10cSrcweir	{
635cdf0e10cSrcweir	    HelpID = "svx:MultiLineEdit:RID_SVX_MDLG_ERR_REP_PREVIEW:ML_ERRPREVIEW_CONTENT";
636cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRPREVIEW_COLA, ERRPREVIEW_ROW0 );
637cdf0e10cSrcweir		Size = MAP_APPFONT( ERRPREVIEW_COLC - ERRPREVIEW_COLA, ERRPREVIEW_ROW1 - ERRPREVIEW_ROW0 );
638cdf0e10cSrcweir		VScroll = TRUE;
639cdf0e10cSrcweir		HScroll = TRUE;
640cdf0e10cSrcweir		ReadOnly = TRUE;
641cdf0e10cSrcweir		Border = TRUE;
642cdf0e10cSrcweir	};
643cdf0e10cSrcweir
644cdf0e10cSrcweir    OKButton BTN_ERRPREVIEW_OK
645cdf0e10cSrcweir	{
646cdf0e10cSrcweir		Pos = MAP_APPFONT( ERRPREVIEW_COLB, ERRPREVIEW_ROW2 );
647cdf0e10cSrcweir		Size = MAP_APPFONT( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT );
648cdf0e10cSrcweir        DefButton = TRUE;
649cdf0e10cSrcweir	};
650cdf0e10cSrcweir};