xref: /AOO41X/main/sfx2/source/appl/newhelp.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir#include "app.hrc"
29*cdf0e10cSrcweir#include "newhelp.hrc"
30*cdf0e10cSrcweir#include "helpid.hrc"
31*cdf0e10cSrcweir
32*cdf0e10cSrcweirWindow WIN_HELPINDEX
33*cdf0e10cSrcweir{
34*cdf0e10cSrcweir	Hide = TRUE ;
35*cdf0e10cSrcweir	Size = MAP_APPFONT ( 120 , 200 ) ;
36*cdf0e10cSrcweir	DialogControl = TRUE;
37*cdf0e10cSrcweir	ListBox LB_ACTIVE
38*cdf0e10cSrcweir	{
39*cdf0e10cSrcweir		HelpId = HID_HELP_LISTBOX;
40*cdf0e10cSrcweir		Border = TRUE ;
41*cdf0e10cSrcweir		DropDown = TRUE;
42*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3 , 3 ) ;
43*cdf0e10cSrcweir		Size = MAP_APPFONT ( 114 , 40 ) ;
44*cdf0e10cSrcweir	};
45*cdf0e10cSrcweir	FixedLine FL_ACTIVE
46*cdf0e10cSrcweir	{
47*cdf0e10cSrcweir		Hide = True;
48*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 2, 19 ) ;
49*cdf0e10cSrcweir		Size = MAP_APPFONT ( 118 , 1 ) ;
50*cdf0e10cSrcweir	};
51*cdf0e10cSrcweir	TabControl TC_INDEX
52*cdf0e10cSrcweir	{
53*cdf0e10cSrcweir		HelpId = HID_HELP_TABCONTROL;
54*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3, 19 ) ;
55*cdf0e10cSrcweir		TabStop = TRUE;
56*cdf0e10cSrcweir		PageList =
57*cdf0e10cSrcweir		{
58*cdf0e10cSrcweir			PageItem
59*cdf0e10cSrcweir			{
60*cdf0e10cSrcweir				Identifier = HELP_INDEX_PAGE_CONTENTS ;
61*cdf0e10cSrcweir				Text [ en-US ] = "Contents";
62*cdf0e10cSrcweir			};
63*cdf0e10cSrcweir			PageItem
64*cdf0e10cSrcweir			{
65*cdf0e10cSrcweir				Identifier = HELP_INDEX_PAGE_INDEX ;
66*cdf0e10cSrcweir				Text [ en-US ] = "Index";
67*cdf0e10cSrcweir			};
68*cdf0e10cSrcweir			PageItem
69*cdf0e10cSrcweir			{
70*cdf0e10cSrcweir				Identifier = HELP_INDEX_PAGE_SEARCH ;
71*cdf0e10cSrcweir				Text [ en-US ] = "Find";
72*cdf0e10cSrcweir			};
73*cdf0e10cSrcweir			PageItem
74*cdf0e10cSrcweir			{
75*cdf0e10cSrcweir				Identifier = HELP_INDEX_PAGE_BOOKMARKS ;
76*cdf0e10cSrcweir				Text [ en-US ] = "Bookmarks";
77*cdf0e10cSrcweir			};
78*cdf0e10cSrcweir		};
79*cdf0e10cSrcweir	};
80*cdf0e10cSrcweir};
81*cdf0e10cSrcweir
82*cdf0e10cSrcweirTabPage TP_HELP_INDEX
83*cdf0e10cSrcweir{
84*cdf0e10cSrcweir	HelpId = HID_HELP_TABPAGE_INDEX;
85*cdf0e10cSrcweir	Hide = TRUE ;
86*cdf0e10cSrcweir	DialogControl = TRUE;
87*cdf0e10cSrcweir	Size = MAP_APPFONT ( 120 , 200 ) ;
88*cdf0e10cSrcweir	FixedText FT_EXPRESSION
89*cdf0e10cSrcweir	{
90*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 6 ) ;
91*cdf0e10cSrcweir		Size = MAP_APPFONT ( 108 , 10 ) ;
92*cdf0e10cSrcweir		Text [ en-US ] = "~Search term" ;
93*cdf0e10cSrcweir	};
94*cdf0e10cSrcweir	ComboBox CB_INDEX
95*cdf0e10cSrcweir	{
96*cdf0e10cSrcweir	    HelpID = "sfx2:ComboBox:TP_HELP_INDEX:CB_INDEX";
97*cdf0e10cSrcweir		Border = TRUE ;
98*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 17 ) ;
99*cdf0e10cSrcweir		Size = MAP_APPFONT ( 108 , 97 ) ;
100*cdf0e10cSrcweir	};
101*cdf0e10cSrcweir	PushButton PB_OPEN_INDEX
102*cdf0e10cSrcweir	{
103*cdf0e10cSrcweir	    HelpID = "sfx2:PushButton:TP_HELP_INDEX:PB_OPEN_INDEX";
104*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 64 , 115 ) ;
105*cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
106*cdf0e10cSrcweir		Text [ en-US ] = "~Display" ;
107*cdf0e10cSrcweir	};
108*cdf0e10cSrcweir};
109*cdf0e10cSrcweir
110*cdf0e10cSrcweirTabPage TP_HELP_SEARCH
111*cdf0e10cSrcweir{
112*cdf0e10cSrcweir	HelpId = HID_HELP_TABPAGE_SEARCH;
113*cdf0e10cSrcweir	Hide = TRUE ;
114*cdf0e10cSrcweir	DialogControl = TRUE;
115*cdf0e10cSrcweir    Size = MAP_APPFONT ( 140 , 122 ) ;
116*cdf0e10cSrcweir	FixedText FT_SEARCH
117*cdf0e10cSrcweir	{
118*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 6 ) ;
119*cdf0e10cSrcweir        Size = MAP_APPFONT ( 128 , 10 ) ;
120*cdf0e10cSrcweir		Text [ en-US ] = "S~earch term" ;
121*cdf0e10cSrcweir	};
122*cdf0e10cSrcweir	ComboBox ED_SEARCH
123*cdf0e10cSrcweir	{
124*cdf0e10cSrcweir	    HelpID = "sfx2:ComboBox:TP_HELP_SEARCH:ED_SEARCH";
125*cdf0e10cSrcweir		Border = TRUE ;
126*cdf0e10cSrcweir		DropDown = TRUE;
127*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 17 ) ;
128*cdf0e10cSrcweir        Size = MAP_APPFONT ( 92 , 40 ) ;
129*cdf0e10cSrcweir	};
130*cdf0e10cSrcweir	PushButton PB_SEARCH
131*cdf0e10cSrcweir	{
132*cdf0e10cSrcweir	    HelpID = "sfx2:PushButton:TP_HELP_SEARCH:PB_SEARCH";
133*cdf0e10cSrcweir        Pos = MAP_APPFONT ( 101 , 17 ) ;
134*cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
135*cdf0e10cSrcweir		Text [ en-US ] = "~Find";
136*cdf0e10cSrcweir	};
137*cdf0e10cSrcweir	CheckBox CB_FULLWORDS
138*cdf0e10cSrcweir	{
139*cdf0e10cSrcweir	    HelpID = "sfx2:CheckBox:TP_HELP_SEARCH:CB_FULLWORDS";
140*cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 34 ) ;
141*cdf0e10cSrcweir        Size = MAP_APPFONT ( 128 , 10 ) ;
142*cdf0e10cSrcweir		Text [ en-US ] = "~Complete words only";
143*cdf0e10cSrcweir	};
144*cdf0e10cSrcweir	CheckBox CB_SCOPE
145*cdf0e10cSrcweir	{
146*cdf0e10cSrcweir	    HelpID = "sfx2:CheckBox:TP_HELP_SEARCH:CB_SCOPE";
147*cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 47 ) ;
148*cdf0e10cSrcweir        Size = MAP_APPFONT ( 128 , 10 ) ;
149*cdf0e10cSrcweir		Text [ en-US ] = "Find in ~headings only";
150*cdf0e10cSrcweir	};
151*cdf0e10cSrcweir	ListBox LB_RESULT
152*cdf0e10cSrcweir	{
153*cdf0e10cSrcweir	    HelpID = "sfx2:ListBox:TP_HELP_SEARCH:LB_RESULT";
154*cdf0e10cSrcweir		Border = TRUE ;
155*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 60 ) ;
156*cdf0e10cSrcweir        Size = MAP_APPFONT ( 128 , 30 ) ;
157*cdf0e10cSrcweir	};
158*cdf0e10cSrcweir	PushButton PB_OPEN_SEARCH
159*cdf0e10cSrcweir	{
160*cdf0e10cSrcweir	    HelpID = "sfx2:PushButton:TP_HELP_SEARCH:PB_OPEN_SEARCH";
161*cdf0e10cSrcweir        Pos = MAP_APPFONT ( 84 , 182 ) ;
162*cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
163*cdf0e10cSrcweir		Text [ en-US ] = "~Display" ;
164*cdf0e10cSrcweir	};
165*cdf0e10cSrcweir};
166*cdf0e10cSrcweir
167*cdf0e10cSrcweirTabPage TP_HELP_BOOKMARKS
168*cdf0e10cSrcweir{
169*cdf0e10cSrcweir	HelpId = HID_HELP_TABPAGE_BOOKMARKS;
170*cdf0e10cSrcweir	Hide = TRUE ;
171*cdf0e10cSrcweir	DialogControl = TRUE;
172*cdf0e10cSrcweir	Size = MAP_APPFONT ( 120 , 200 ) ;
173*cdf0e10cSrcweir	FixedText FT_BOOKMARKS
174*cdf0e10cSrcweir	{
175*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 6 ) ;
176*cdf0e10cSrcweir		Size = MAP_APPFONT ( 108 , 10 ) ;
177*cdf0e10cSrcweir		Text [ en-US ] = "~Bookmarks" ;
178*cdf0e10cSrcweir	};
179*cdf0e10cSrcweir	ListBox LB_BOOKMARKS
180*cdf0e10cSrcweir	{
181*cdf0e10cSrcweir	    HelpID = "sfx2:ListBox:TP_HELP_BOOKMARKS:LB_BOOKMARKS";
182*cdf0e10cSrcweir		Border = TRUE ;
183*cdf0e10cSrcweir		Sort = TRUE;
184*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 19 ) ;
185*cdf0e10cSrcweir		Size = MAP_APPFONT ( 108 , 97 ) ;
186*cdf0e10cSrcweir	};
187*cdf0e10cSrcweir	PushButton PB_BOOKMARKS
188*cdf0e10cSrcweir	{
189*cdf0e10cSrcweir	    HelpID = "sfx2:PushButton:TP_HELP_BOOKMARKS:PB_BOOKMARKS";
190*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 64 , 119 ) ;
191*cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
192*cdf0e10cSrcweir		Text [ en-US ] = "~Display" ;
193*cdf0e10cSrcweir	};
194*cdf0e10cSrcweir};
195*cdf0e10cSrcweir
196*cdf0e10cSrcweirTabPage TP_HELP_CONTENT
197*cdf0e10cSrcweir{
198*cdf0e10cSrcweir	HelpId = HID_HELP_TABPAGE_CONTENTS;
199*cdf0e10cSrcweir	Hide = TRUE ;
200*cdf0e10cSrcweir	DialogControl = TRUE;
201*cdf0e10cSrcweir	Size = MAP_APPFONT ( 120 , 200 ) ;
202*cdf0e10cSrcweir	Control LB_CONTENTS
203*cdf0e10cSrcweir	{
204*cdf0e10cSrcweir		HelpId = HID_HELP_TREELISTBOX_CONTENTS ;
205*cdf0e10cSrcweir		Border = TRUE ;
206*cdf0e10cSrcweir		TabStop = TRUE;
207*cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 6 ) ;
208*cdf0e10cSrcweir		Size = MAP_APPFONT ( 108 , 188 ) ;
209*cdf0e10cSrcweir	};
210*cdf0e10cSrcweir};
211*cdf0e10cSrcweir
212*cdf0e10cSrcweir#define MASKCOLOR_MAGENTA \
213*cdf0e10cSrcweir	MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; };
214*cdf0e10cSrcweir
215*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_INDEX_ON
216*cdf0e10cSrcweir{
217*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexon_small.bmp" ; };
218*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
219*cdf0e10cSrcweir};
220*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_INDEX_OFF
221*cdf0e10cSrcweir{
222*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexoff_small.bmp" ; };
223*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
224*cdf0e10cSrcweir};
225*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_START
226*cdf0e10cSrcweir{
227*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc06303.bmp" ; };
228*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
229*cdf0e10cSrcweir};
230*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_PREV
231*cdf0e10cSrcweir{
232*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc06301.bmp" ; };
233*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
234*cdf0e10cSrcweir};
235*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_NEXT
236*cdf0e10cSrcweir{
237*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc06300.bmp" ; };
238*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
239*cdf0e10cSrcweir};
240*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_PRINT
241*cdf0e10cSrcweir{
242*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc05504.bmp" ; };
243*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
244*cdf0e10cSrcweir};
245*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_BOOKMARKS
246*cdf0e10cSrcweir{
247*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "favourite.bmp" ; };
248*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
249*cdf0e10cSrcweir};
250*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_SEARCHDIALOG
251*cdf0e10cSrcweir{
252*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc05961.bmp" ; };
253*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
254*cdf0e10cSrcweir};
255*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_COPY
256*cdf0e10cSrcweir{
257*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sc05711.bmp" ; };
258*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
259*cdf0e10cSrcweir};
260*cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_OPEN
261*cdf0e10cSrcweir{
262*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpbookopen.bmp" ; };
263*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
264*cdf0e10cSrcweir};
265*cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_OPEN_HC
266*cdf0e10cSrcweir{
267*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpbookopen_h.bmp" ; };
268*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
269*cdf0e10cSrcweir};
270*cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_CLOSED
271*cdf0e10cSrcweir{
272*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpbookclosed.bmp" ; };
273*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
274*cdf0e10cSrcweir};
275*cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_CLOSED_HC
276*cdf0e10cSrcweir{
277*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpbookclosed_h.bmp" ; };
278*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
279*cdf0e10cSrcweir};
280*cdf0e10cSrcweirImage IMG_HELP_CONTENT_DOC
281*cdf0e10cSrcweir{
282*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpdoc.bmp" ; };
283*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
284*cdf0e10cSrcweir};
285*cdf0e10cSrcweirImage IMG_HELP_CONTENT_DOC_HC
286*cdf0e10cSrcweir{
287*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "hlpdoc_h.bmp" ; };
288*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
289*cdf0e10cSrcweir};
290*cdf0e10cSrcweir
291*cdf0e10cSrcweirString STR_HELP_WINDOW_TITLE
292*cdf0e10cSrcweir{
293*cdf0e10cSrcweir	Text [ en-US ] = "%PRODUCTNAME Help";
294*cdf0e10cSrcweir};
295*cdf0e10cSrcweirString STR_HELP_BUTTON_INDEX_ON
296*cdf0e10cSrcweir{
297*cdf0e10cSrcweir	Text [ en-US ] = "Show Navigation Pane";
298*cdf0e10cSrcweir};
299*cdf0e10cSrcweirString STR_HELP_BUTTON_INDEX_OFF
300*cdf0e10cSrcweir{
301*cdf0e10cSrcweir	Text [ en-US ] = "Hide Navigation Pane";
302*cdf0e10cSrcweir};
303*cdf0e10cSrcweirString STR_HELP_BUTTON_START
304*cdf0e10cSrcweir{
305*cdf0e10cSrcweir	Text [ en-US ] = "First Page";
306*cdf0e10cSrcweir};
307*cdf0e10cSrcweirString STR_HELP_BUTTON_PREV
308*cdf0e10cSrcweir{
309*cdf0e10cSrcweir	Text [ en-US ] = "Previous Page";
310*cdf0e10cSrcweir};
311*cdf0e10cSrcweirString STR_HELP_BUTTON_NEXT
312*cdf0e10cSrcweir{
313*cdf0e10cSrcweir	Text [ en-US ] = "Next Page";
314*cdf0e10cSrcweir};
315*cdf0e10cSrcweirString STR_HELP_BUTTON_PRINT
316*cdf0e10cSrcweir{
317*cdf0e10cSrcweir	Text [ en-US ] = "Print...";
318*cdf0e10cSrcweir};
319*cdf0e10cSrcweirString STR_HELP_BUTTON_ADDBOOKMARK
320*cdf0e10cSrcweir{
321*cdf0e10cSrcweir	Text [ en-US ] = "Add to Bookmarks...";
322*cdf0e10cSrcweir};
323*cdf0e10cSrcweirString STR_HELP_BUTTON_SEARCHDIALOG
324*cdf0e10cSrcweir{
325*cdf0e10cSrcweir	Text [ en-US ] = "Find on this Page...";
326*cdf0e10cSrcweir};
327*cdf0e10cSrcweirString STR_HELP_BUTTON_SOURCEVIEW
328*cdf0e10cSrcweir{
329*cdf0e10cSrcweir	Text [ en-US ] = "HTML Source";
330*cdf0e10cSrcweir};
331*cdf0e10cSrcweir
332*cdf0e10cSrcweirString STR_HELP_FIRST_MESSAGE
333*cdf0e10cSrcweir{
334*cdf0e10cSrcweir	Text [ en-US ] = "The Help is being started...";
335*cdf0e10cSrcweir};
336*cdf0e10cSrcweirString STR_HELP_FIRST_HTML
337*cdf0e10cSrcweir{
338*cdf0e10cSrcweir	Text = "<html></head><body><center><br></br><br></br><p><tt>%1</tt></center></body></html>";
339*cdf0e10cSrcweir};
340*cdf0e10cSrcweirString STR_HELP_MENU_TEXT_SELECTION_MODE
341*cdf0e10cSrcweir{
342*cdf0e10cSrcweir    Text [ en-US ] = "Select Text";
343*cdf0e10cSrcweir};
344*cdf0e10cSrcweirString STR_HELP_MENU_TEXT_COPY
345*cdf0e10cSrcweir{
346*cdf0e10cSrcweir    Text [ en-US ] = "~Copy" ;
347*cdf0e10cSrcweir};
348*cdf0e10cSrcweirModalDialog DLG_HELP_ADDBOOKMARK
349*cdf0e10cSrcweir{
350*cdf0e10cSrcweir    HelpID = "sfx2:ModalDialog:DLG_HELP_ADDBOOKMARK";
351*cdf0e10cSrcweir	Size = MAP_APPFONT ( 208 , 43 ) ;
352*cdf0e10cSrcweir	Text [ en-US ] = "Add to Bookmarks";
353*cdf0e10cSrcweir	MOVEABLE = TRUE ;
354*cdf0e10cSrcweir	CLOSEABLE = TRUE ;
355*cdf0e10cSrcweir	OUTPUTSIZE = TRUE ;
356*cdf0e10cSrcweir	SVLOOK = TRUE ;
357*cdf0e10cSrcweir	FixedText FT_BOOKMARK_TITLE
358*cdf0e10cSrcweir	{
359*cdf0e10cSrcweir		PosSize = MAP_APPFONT ( 6 , 6 , 140 , 10 ) ;
360*cdf0e10cSrcweir		Text [ en-US ] = "Bookmark:" ;
361*cdf0e10cSrcweir		TABSTOP = FALSE ;
362*cdf0e10cSrcweir		GROUP = TRUE ;
363*cdf0e10cSrcweir		LEFT = TRUE ;
364*cdf0e10cSrcweir	};
365*cdf0e10cSrcweir	Edit ED_BOOKMARK_TITLE
366*cdf0e10cSrcweir	{
367*cdf0e10cSrcweir	    HelpID = "sfx2:Edit:DLG_HELP_ADDBOOKMARK:ED_BOOKMARK_TITLE";
368*cdf0e10cSrcweir		PosSize = MAP_APPFONT ( 6 , 19 , 140 , 12 ) ;
369*cdf0e10cSrcweir		TABSTOP = TRUE ;
370*cdf0e10cSrcweir		BORDER = TRUE ;
371*cdf0e10cSrcweir	};
372*cdf0e10cSrcweir	OKButton PB_BOOKMARK_OK
373*cdf0e10cSrcweir	{
374*cdf0e10cSrcweir		PosSize = MAP_APPFONT ( 152 , 6 , 50 , 14 ) ;
375*cdf0e10cSrcweir		HIDE = FALSE ;
376*cdf0e10cSrcweir		TABSTOP = TRUE ;
377*cdf0e10cSrcweir		GROUP = TRUE ;
378*cdf0e10cSrcweir		Disable = FALSE ;
379*cdf0e10cSrcweir		DefButton = TRUE ;
380*cdf0e10cSrcweir	};
381*cdf0e10cSrcweir	CancelButton PB_BOOKMARK_CANCEL
382*cdf0e10cSrcweir	{
383*cdf0e10cSrcweir		PosSize = MAP_APPFONT ( 152 , 23 , 50 , 14 ) ;
384*cdf0e10cSrcweir		TABSTOP = TRUE ;
385*cdf0e10cSrcweir		GROUP = TRUE ;
386*cdf0e10cSrcweir	};
387*cdf0e10cSrcweir	HelpButton PB_BOOKMARK_HELP
388*cdf0e10cSrcweir	{
389*cdf0e10cSrcweir		PosSize = MAP_APPFONT ( 152 , 43 , 50 , 14 ) ;
390*cdf0e10cSrcweir		TABSTOP = TRUE ;
391*cdf0e10cSrcweir		GROUP = TRUE ;
392*cdf0e10cSrcweir		Hide = TRUE;
393*cdf0e10cSrcweir	};
394*cdf0e10cSrcweir	String STR_BOOKMARK_RENAME
395*cdf0e10cSrcweir	{
396*cdf0e10cSrcweir		Text [ en-US ] = "Rename Bookmark";
397*cdf0e10cSrcweir	};
398*cdf0e10cSrcweir};
399*cdf0e10cSrcweir
400*cdf0e10cSrcweirMenu MENU_HELP_BOOKMARKS
401*cdf0e10cSrcweir{
402*cdf0e10cSrcweir	ItemList =
403*cdf0e10cSrcweir	{
404*cdf0e10cSrcweir		MenuItem
405*cdf0e10cSrcweir		{
406*cdf0e10cSrcweir			Identifier = MID_OPEN ;
407*cdf0e10cSrcweir			HelpId = HID_HELP_BOOKMARKS_OPEN;
408*cdf0e10cSrcweir			Text [ en-US ] = "Display";
409*cdf0e10cSrcweir		};
410*cdf0e10cSrcweir		MenuItem
411*cdf0e10cSrcweir		{
412*cdf0e10cSrcweir			Separator = TRUE ;
413*cdf0e10cSrcweir		};
414*cdf0e10cSrcweir		MenuItem
415*cdf0e10cSrcweir		{
416*cdf0e10cSrcweir			Identifier = MID_RENAME ;
417*cdf0e10cSrcweir			HelpId = HID_HELP_BOOKMARKS_RENAME;
418*cdf0e10cSrcweir			Text [ en-US ] = "Rename...";
419*cdf0e10cSrcweir		};
420*cdf0e10cSrcweir		MenuItem
421*cdf0e10cSrcweir		{
422*cdf0e10cSrcweir			Identifier = MID_DELETE ;
423*cdf0e10cSrcweir			HelpId = HID_HELP_BOOKMARKS_DELETE;
424*cdf0e10cSrcweir			Text [ en-US ] = "Delete";
425*cdf0e10cSrcweir		};
426*cdf0e10cSrcweir	};
427*cdf0e10cSrcweir};
428*cdf0e10cSrcweir
429*cdf0e10cSrcweirInfoBox RID_INFO_NOSEARCHRESULTS
430*cdf0e10cSrcweir{
431*cdf0e10cSrcweir	BUTTONS = WB_OK ;
432*cdf0e10cSrcweir	DEFBUTTON = WB_DEF_OK ;
433*cdf0e10cSrcweir	Message [ en-US ] = "No topics found.";
434*cdf0e10cSrcweir};
435*cdf0e10cSrcweir
436*cdf0e10cSrcweirInfoBox RID_INFO_NOSEARCHTEXTFOUND
437*cdf0e10cSrcweir{
438*cdf0e10cSrcweir	BUTTONS = WB_OK ;
439*cdf0e10cSrcweir	DEFBUTTON = WB_DEF_OK ;
440*cdf0e10cSrcweir	Message [ en-US ] = "The text you entered was not found.";
441*cdf0e10cSrcweir};
442*cdf0e10cSrcweir
443*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_INDEX_ON
444*cdf0e10cSrcweir{
445*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexon_small_h.bmp" ; };
446*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
447*cdf0e10cSrcweir};
448*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_INDEX_OFF
449*cdf0e10cSrcweir{
450*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexoff_small_h.bmp" ; };
451*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
452*cdf0e10cSrcweir};
453*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_START
454*cdf0e10cSrcweir{
455*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch06303.bmp" ; };
456*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
457*cdf0e10cSrcweir};
458*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_PREV
459*cdf0e10cSrcweir{
460*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch06301.bmp" ; };
461*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
462*cdf0e10cSrcweir};
463*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_NEXT
464*cdf0e10cSrcweir{
465*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch06300.bmp" ; };
466*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
467*cdf0e10cSrcweir};
468*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_PRINT
469*cdf0e10cSrcweir{
470*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch05504.bmp" ; };
471*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
472*cdf0e10cSrcweir};
473*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_BOOKMARKS
474*cdf0e10cSrcweir{
475*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "favourite_h.bmp" ; };
476*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
477*cdf0e10cSrcweir};
478*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_SEARCHDIALOG
479*cdf0e10cSrcweir{
480*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch05961.bmp" ; };
481*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
482*cdf0e10cSrcweir};
483*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_COPY
484*cdf0e10cSrcweir{
485*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "sch05711.bmp" ; };
486*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
487*cdf0e10cSrcweir};
488*cdf0e10cSrcweir
489*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_INDEX_ON
490*cdf0e10cSrcweir{
491*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexon_big.bmp" ; };
492*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
493*cdf0e10cSrcweir};
494*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_INDEX_OFF
495*cdf0e10cSrcweir{
496*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexoff_big.bmp" ; };
497*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
498*cdf0e10cSrcweir};
499*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_START
500*cdf0e10cSrcweir{
501*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc06303.bmp" ; };
502*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
503*cdf0e10cSrcweir};
504*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_PREV
505*cdf0e10cSrcweir{
506*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc06301.bmp" ; };
507*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
508*cdf0e10cSrcweir};
509*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_NEXT
510*cdf0e10cSrcweir{
511*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc06300.bmp" ; };
512*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
513*cdf0e10cSrcweir};
514*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_PRINT
515*cdf0e10cSrcweir{
516*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc05504.bmp" ; };
517*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
518*cdf0e10cSrcweir};
519*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_BOOKMARKS
520*cdf0e10cSrcweir{
521*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "favourite_big.bmp" ; };
522*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
523*cdf0e10cSrcweir};
524*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_SEARCHDIALOG
525*cdf0e10cSrcweir{
526*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc05961.bmp" ; };
527*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
528*cdf0e10cSrcweir};
529*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_COPY
530*cdf0e10cSrcweir{
531*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lc05711.bmp" ; };
532*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
533*cdf0e10cSrcweir};
534*cdf0e10cSrcweir
535*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_INDEX_ON
536*cdf0e10cSrcweir{
537*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexon_big_h.bmp" ; };
538*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
539*cdf0e10cSrcweir};
540*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_INDEX_OFF
541*cdf0e10cSrcweir{
542*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "indexoff_big_h.bmp" ; };
543*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
544*cdf0e10cSrcweir};
545*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_START
546*cdf0e10cSrcweir{
547*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch06303.bmp" ; };
548*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
549*cdf0e10cSrcweir};
550*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_PREV
551*cdf0e10cSrcweir{
552*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch06301.bmp" ; };
553*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
554*cdf0e10cSrcweir};
555*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_NEXT
556*cdf0e10cSrcweir{
557*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch06300.bmp" ; };
558*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
559*cdf0e10cSrcweir};
560*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_PRINT
561*cdf0e10cSrcweir{
562*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch05504.bmp" ; };
563*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
564*cdf0e10cSrcweir};
565*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_BOOKMARKS
566*cdf0e10cSrcweir{
567*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "favourite_big_h.bmp" ; };
568*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
569*cdf0e10cSrcweir};
570*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_SEARCHDIALOG
571*cdf0e10cSrcweir{
572*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch05961.bmp" ; };
573*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
574*cdf0e10cSrcweir};
575*cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_COPY
576*cdf0e10cSrcweir{
577*cdf0e10cSrcweir	ImageBitmap = Bitmap { File = "lch05711.bmp" ; };
578*cdf0e10cSrcweir	MASKCOLOR_MAGENTA
579*cdf0e10cSrcweir};
580*cdf0e10cSrcweir
581*cdf0e10cSrcweirCheckBox RID_HELP_ONSTARTUP_BOX
582*cdf0e10cSrcweir{
583*cdf0e10cSrcweir	HelpId = HID_HELP_ONSTARTUP_BOX;
584*cdf0e10cSrcweir	Hide = TRUE;
585*cdf0e10cSrcweir	TabStop = TRUE;
586*cdf0e10cSrcweir	Size = MAP_APPFONT ( 200 , 10 ) ;
587*cdf0e10cSrcweir};
588*cdf0e10cSrcweirString RID_HELP_ONSTARTUP_TEXT
589*cdf0e10cSrcweir{
590*cdf0e10cSrcweir    Text [ en-US ] = "~Display %PRODUCTNAME %MODULENAME Help at Startup";
591*cdf0e10cSrcweir};
592*cdf0e10cSrcweir
593