xref: /trunk/main/sfx2/source/appl/newhelp.src (revision 6f44dbe5a83df1264e97a8d1b8e34f2e2655e278)
1acbf353aSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3acbf353aSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4acbf353aSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5acbf353aSAndrew Rist * distributed with this work for additional information
6acbf353aSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7acbf353aSAndrew Rist * to you under the Apache License, Version 2.0 (the
8acbf353aSAndrew Rist * "License"); you may not use this file except in compliance
9acbf353aSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11acbf353aSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13acbf353aSAndrew Rist * Unless required by applicable law or agreed to in writing,
14acbf353aSAndrew Rist * software distributed under the License is distributed on an
15acbf353aSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16acbf353aSAndrew Rist * KIND, either express or implied.  See the License for the
17acbf353aSAndrew Rist * specific language governing permissions and limitations
18acbf353aSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20acbf353aSAndrew Rist *************************************************************/
21acbf353aSAndrew Rist
22acbf353aSAndrew 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
208cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_INDEX_ON
209cdf0e10cSrcweir{
210*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexon_small.png" ; };
211cdf0e10cSrcweir};
212cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_INDEX_OFF
213cdf0e10cSrcweir{
214*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexoff_small.png" ; };
215cdf0e10cSrcweir};
216cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_START
217cdf0e10cSrcweir{
218*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc06303.png" ; };
219cdf0e10cSrcweir};
220cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_PREV
221cdf0e10cSrcweir{
222*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc06301.png" ; };
223cdf0e10cSrcweir};
224cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_NEXT
225cdf0e10cSrcweir{
226*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc06300.png" ; };
227cdf0e10cSrcweir};
228cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_PRINT
229cdf0e10cSrcweir{
230*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc05504.png" ; };
231cdf0e10cSrcweir};
232cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_BOOKMARKS
233cdf0e10cSrcweir{
234*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "favourite.png" ; };
235cdf0e10cSrcweir};
236cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_SEARCHDIALOG
237cdf0e10cSrcweir{
238*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc05961.png" ; };
239cdf0e10cSrcweir};
240cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_COPY
241cdf0e10cSrcweir{
242*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sc05711.png" ; };
243cdf0e10cSrcweir};
244cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_OPEN
245cdf0e10cSrcweir{
246*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpbookopen.png" ; };
247cdf0e10cSrcweir};
248cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_OPEN_HC
249cdf0e10cSrcweir{
250*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpbookopen_h.png" ; };
251cdf0e10cSrcweir};
252cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_CLOSED
253cdf0e10cSrcweir{
254*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpbookclosed.png" ; };
255cdf0e10cSrcweir};
256cdf0e10cSrcweirImage IMG_HELP_CONTENT_BOOK_CLOSED_HC
257cdf0e10cSrcweir{
258*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpbookclosed_h.png" ; };
259cdf0e10cSrcweir};
260cdf0e10cSrcweirImage IMG_HELP_CONTENT_DOC
261cdf0e10cSrcweir{
262*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpdoc.png" ; };
263cdf0e10cSrcweir};
264cdf0e10cSrcweirImage IMG_HELP_CONTENT_DOC_HC
265cdf0e10cSrcweir{
266*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "hlpdoc_h.png" ; };
267cdf0e10cSrcweir};
268cdf0e10cSrcweir
269cdf0e10cSrcweirString STR_HELP_WINDOW_TITLE
270cdf0e10cSrcweir{
271cdf0e10cSrcweir    Text [ en-US ] = "%PRODUCTNAME Help";
272cdf0e10cSrcweir};
273cdf0e10cSrcweirString STR_HELP_BUTTON_INDEX_ON
274cdf0e10cSrcweir{
275cdf0e10cSrcweir    Text [ en-US ] = "Show Navigation Pane";
276cdf0e10cSrcweir};
277cdf0e10cSrcweirString STR_HELP_BUTTON_INDEX_OFF
278cdf0e10cSrcweir{
279cdf0e10cSrcweir    Text [ en-US ] = "Hide Navigation Pane";
280cdf0e10cSrcweir};
281cdf0e10cSrcweirString STR_HELP_BUTTON_START
282cdf0e10cSrcweir{
283cdf0e10cSrcweir    Text [ en-US ] = "First Page";
284cdf0e10cSrcweir};
285cdf0e10cSrcweirString STR_HELP_BUTTON_PREV
286cdf0e10cSrcweir{
287cdf0e10cSrcweir    Text [ en-US ] = "Previous Page";
288cdf0e10cSrcweir};
289cdf0e10cSrcweirString STR_HELP_BUTTON_NEXT
290cdf0e10cSrcweir{
291cdf0e10cSrcweir    Text [ en-US ] = "Next Page";
292cdf0e10cSrcweir};
293cdf0e10cSrcweirString STR_HELP_BUTTON_PRINT
294cdf0e10cSrcweir{
295cdf0e10cSrcweir    Text [ en-US ] = "Print...";
296cdf0e10cSrcweir};
297cdf0e10cSrcweirString STR_HELP_BUTTON_ADDBOOKMARK
298cdf0e10cSrcweir{
299cdf0e10cSrcweir    Text [ en-US ] = "Add to Bookmarks...";
300cdf0e10cSrcweir};
301cdf0e10cSrcweirString STR_HELP_BUTTON_SEARCHDIALOG
302cdf0e10cSrcweir{
303cdf0e10cSrcweir    Text [ en-US ] = "Find on this Page...";
304cdf0e10cSrcweir};
305cdf0e10cSrcweirString STR_HELP_BUTTON_SOURCEVIEW
306cdf0e10cSrcweir{
307cdf0e10cSrcweir    Text [ en-US ] = "HTML Source";
308cdf0e10cSrcweir};
309cdf0e10cSrcweir
310cdf0e10cSrcweirString STR_HELP_FIRST_MESSAGE
311cdf0e10cSrcweir{
312cdf0e10cSrcweir    Text [ en-US ] = "The Help is being started...";
313cdf0e10cSrcweir};
314cdf0e10cSrcweirString STR_HELP_FIRST_HTML
315cdf0e10cSrcweir{
316cdf0e10cSrcweir    Text = "<html></head><body><center><br></br><br></br><p><tt>%1</tt></center></body></html>";
317cdf0e10cSrcweir};
318cdf0e10cSrcweirString STR_HELP_MENU_TEXT_SELECTION_MODE
319cdf0e10cSrcweir{
320cdf0e10cSrcweir    Text [ en-US ] = "Select Text";
321cdf0e10cSrcweir};
322cdf0e10cSrcweirString STR_HELP_MENU_TEXT_COPY
323cdf0e10cSrcweir{
324cdf0e10cSrcweir    Text [ en-US ] = "~Copy" ;
325cdf0e10cSrcweir};
326cdf0e10cSrcweirModalDialog DLG_HELP_ADDBOOKMARK
327cdf0e10cSrcweir{
328cdf0e10cSrcweir    HelpID = "sfx2:ModalDialog:DLG_HELP_ADDBOOKMARK";
329cdf0e10cSrcweir    Size = MAP_APPFONT ( 208, 43 ) ;
330cdf0e10cSrcweir    Text [ en-US ] = "Add to Bookmarks";
331cdf0e10cSrcweir    MOVEABLE = TRUE ;
332cdf0e10cSrcweir    CLOSEABLE = TRUE ;
333cdf0e10cSrcweir    OUTPUTSIZE = TRUE ;
334cdf0e10cSrcweir    SVLOOK = TRUE ;
335cdf0e10cSrcweir    FixedText FT_BOOKMARK_TITLE
336cdf0e10cSrcweir    {
337cdf0e10cSrcweir        PosSize = MAP_APPFONT ( 6, 6, 140, 10 ) ;
338cdf0e10cSrcweir        Text [ en-US ] = "Bookmark:" ;
339cdf0e10cSrcweir        TABSTOP = FALSE ;
340cdf0e10cSrcweir        GROUP = TRUE ;
341cdf0e10cSrcweir        LEFT = TRUE ;
342cdf0e10cSrcweir    };
343cdf0e10cSrcweir    Edit ED_BOOKMARK_TITLE
344cdf0e10cSrcweir    {
345cdf0e10cSrcweir        HelpID = "sfx2:Edit:DLG_HELP_ADDBOOKMARK:ED_BOOKMARK_TITLE";
346cdf0e10cSrcweir        PosSize = MAP_APPFONT ( 6, 19, 140, 12 ) ;
347cdf0e10cSrcweir        TABSTOP = TRUE ;
348cdf0e10cSrcweir        BORDER = TRUE ;
349cdf0e10cSrcweir    };
350cdf0e10cSrcweir    OKButton PB_BOOKMARK_OK
351cdf0e10cSrcweir    {
352cdf0e10cSrcweir        PosSize = MAP_APPFONT ( 152, 6, 50, 14 ) ;
353cdf0e10cSrcweir        HIDE = FALSE ;
354cdf0e10cSrcweir        TABSTOP = TRUE ;
355cdf0e10cSrcweir        GROUP = TRUE ;
356cdf0e10cSrcweir        Disable = FALSE ;
357cdf0e10cSrcweir        DefButton = TRUE ;
358cdf0e10cSrcweir    };
359cdf0e10cSrcweir    CancelButton PB_BOOKMARK_CANCEL
360cdf0e10cSrcweir    {
361cdf0e10cSrcweir        PosSize = MAP_APPFONT ( 152, 23, 50, 14 ) ;
362cdf0e10cSrcweir        TABSTOP = TRUE ;
363cdf0e10cSrcweir        GROUP = TRUE ;
364cdf0e10cSrcweir    };
365cdf0e10cSrcweir    HelpButton PB_BOOKMARK_HELP
366cdf0e10cSrcweir    {
367cdf0e10cSrcweir        PosSize = MAP_APPFONT ( 152, 43, 50, 14 ) ;
368cdf0e10cSrcweir        TABSTOP = TRUE ;
369cdf0e10cSrcweir        GROUP = TRUE ;
370cdf0e10cSrcweir        Hide = TRUE;
371cdf0e10cSrcweir    };
372cdf0e10cSrcweir    String STR_BOOKMARK_RENAME
373cdf0e10cSrcweir    {
374cdf0e10cSrcweir        Text [ en-US ] = "Rename Bookmark";
375cdf0e10cSrcweir    };
376cdf0e10cSrcweir};
377cdf0e10cSrcweir
378cdf0e10cSrcweirMenu MENU_HELP_BOOKMARKS
379cdf0e10cSrcweir{
380cdf0e10cSrcweir    ItemList =
381cdf0e10cSrcweir    {
382cdf0e10cSrcweir        MenuItem
383cdf0e10cSrcweir        {
384cdf0e10cSrcweir            Identifier = MID_OPEN ;
385cdf0e10cSrcweir            HelpId = HID_HELP_BOOKMARKS_OPEN;
386cdf0e10cSrcweir            Text [ en-US ] = "Display";
387cdf0e10cSrcweir        };
388cdf0e10cSrcweir        MenuItem
389cdf0e10cSrcweir        {
390cdf0e10cSrcweir            Separator = TRUE ;
391cdf0e10cSrcweir        };
392cdf0e10cSrcweir        MenuItem
393cdf0e10cSrcweir        {
394cdf0e10cSrcweir            Identifier = MID_RENAME ;
395cdf0e10cSrcweir            HelpId = HID_HELP_BOOKMARKS_RENAME;
396cdf0e10cSrcweir            Text [ en-US ] = "Rename...";
397cdf0e10cSrcweir        };
398cdf0e10cSrcweir        MenuItem
399cdf0e10cSrcweir        {
400cdf0e10cSrcweir            Identifier = MID_DELETE ;
401cdf0e10cSrcweir            HelpId = HID_HELP_BOOKMARKS_DELETE;
402cdf0e10cSrcweir            Text [ en-US ] = "Delete";
403cdf0e10cSrcweir        };
404cdf0e10cSrcweir    };
405cdf0e10cSrcweir};
406cdf0e10cSrcweir
407cdf0e10cSrcweirInfoBox RID_INFO_NOSEARCHRESULTS
408cdf0e10cSrcweir{
409cdf0e10cSrcweir    BUTTONS = WB_OK ;
410cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
411cdf0e10cSrcweir    Message [ en-US ] = "No topics found.";
412cdf0e10cSrcweir};
413cdf0e10cSrcweir
414cdf0e10cSrcweirInfoBox RID_INFO_NOSEARCHTEXTFOUND
415cdf0e10cSrcweir{
416cdf0e10cSrcweir    BUTTONS = WB_OK ;
417cdf0e10cSrcweir    DEFBUTTON = WB_DEF_OK ;
418cdf0e10cSrcweir    Message [ en-US ] = "The text you entered was not found.";
419cdf0e10cSrcweir};
420cdf0e10cSrcweir
421cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_INDEX_ON
422cdf0e10cSrcweir{
423*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexon_small_h.png" ; };
424cdf0e10cSrcweir};
425cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_INDEX_OFF
426cdf0e10cSrcweir{
427*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexoff_small_h.png" ; };
428cdf0e10cSrcweir};
429cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_START
430cdf0e10cSrcweir{
431*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch06303.png" ; };
432cdf0e10cSrcweir};
433cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_PREV
434cdf0e10cSrcweir{
435*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch06301.png" ; };
436cdf0e10cSrcweir};
437cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_NEXT
438cdf0e10cSrcweir{
439*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch06300.png" ; };
440cdf0e10cSrcweir};
441cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_PRINT
442cdf0e10cSrcweir{
443*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch05504.png" ; };
444cdf0e10cSrcweir};
445cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_BOOKMARKS
446cdf0e10cSrcweir{
447*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "favourite_h.png" ; };
448cdf0e10cSrcweir};
449cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_SEARCHDIALOG
450cdf0e10cSrcweir{
451*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch05961.png" ; };
452cdf0e10cSrcweir};
453cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HC_COPY
454cdf0e10cSrcweir{
455*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "sch05711.png" ; };
456cdf0e10cSrcweir};
457cdf0e10cSrcweir
458cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_INDEX_ON
459cdf0e10cSrcweir{
460*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexon_big.png" ; };
461cdf0e10cSrcweir};
462cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_INDEX_OFF
463cdf0e10cSrcweir{
464*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexoff_big.png" ; };
465cdf0e10cSrcweir};
466cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_START
467cdf0e10cSrcweir{
468*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc06303.png" ; };
469cdf0e10cSrcweir};
470cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_PREV
471cdf0e10cSrcweir{
472*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc06301.png" ; };
473cdf0e10cSrcweir};
474cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_NEXT
475cdf0e10cSrcweir{
476*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc06300.png" ; };
477cdf0e10cSrcweir};
478cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_PRINT
479cdf0e10cSrcweir{
480*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc05504.png" ; };
481cdf0e10cSrcweir};
482cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_BOOKMARKS
483cdf0e10cSrcweir{
484*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "favourite_big.png" ; };
485cdf0e10cSrcweir};
486cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_SEARCHDIALOG
487cdf0e10cSrcweir{
488*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc05961.png" ; };
489cdf0e10cSrcweir};
490cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_L_COPY
491cdf0e10cSrcweir{
492*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lc05711.png" ; };
493cdf0e10cSrcweir};
494cdf0e10cSrcweir
495cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_INDEX_ON
496cdf0e10cSrcweir{
497*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexon_big_h.png" ; };
498cdf0e10cSrcweir};
499cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_INDEX_OFF
500cdf0e10cSrcweir{
501*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "indexoff_big_h.png" ; };
502cdf0e10cSrcweir};
503cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_START
504cdf0e10cSrcweir{
505*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch06303.png" ; };
506cdf0e10cSrcweir};
507cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_PREV
508cdf0e10cSrcweir{
509*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch06301.png" ; };
510cdf0e10cSrcweir};
511cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_NEXT
512cdf0e10cSrcweir{
513*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch06300.png" ; };
514cdf0e10cSrcweir};
515cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_PRINT
516cdf0e10cSrcweir{
517*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch05504.png" ; };
518cdf0e10cSrcweir};
519cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_BOOKMARKS
520cdf0e10cSrcweir{
521*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "favourite_big_h.png" ; };
522cdf0e10cSrcweir};
523cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_SEARCHDIALOG
524cdf0e10cSrcweir{
525*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch05961.png" ; };
526cdf0e10cSrcweir};
527cdf0e10cSrcweirImage IMG_HELP_TOOLBOX_HCL_COPY
528cdf0e10cSrcweir{
529*6f44dbe5SMatthias Seidel    ImageBitmap = Bitmap { File = "lch05711.png" ; };
530cdf0e10cSrcweir};
531cdf0e10cSrcweir
532cdf0e10cSrcweirCheckBox RID_HELP_ONSTARTUP_BOX
533cdf0e10cSrcweir{
534cdf0e10cSrcweir    HelpId = HID_HELP_ONSTARTUP_BOX;
535cdf0e10cSrcweir    Hide = TRUE;
536cdf0e10cSrcweir    TabStop = TRUE;
537cdf0e10cSrcweir    Size = MAP_APPFONT ( 200, 10 ) ;
538cdf0e10cSrcweir};
539cdf0e10cSrcweirString RID_HELP_ONSTARTUP_TEXT
540cdf0e10cSrcweir{
541cdf0e10cSrcweir    Text [ en-US ] = "~Display %PRODUCTNAME %MODULENAME Help at Startup";
542cdf0e10cSrcweir};
543