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