xref: /trunk/main/cui/source/options/treeopt.src (revision 0dfee7983684462ddc4f5184f384c7f878e02b57)
10e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19cdf0e10cSrcweir *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "treeopt.hrc"
25cdf0e10cSrcweir#include <cuires.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include <svx/dialogs.hrc>
28cdf0e10cSrcweir
29cdf0e10cSrcweir#define IMAGE_STDBTN_COLOR Color { Red = 0xC000; Green = 0xC000; Blue = 0xC000; }
30cdf0e10cSrcweir
31cdf0e10cSrcweirModalDialog RID_OFADLG_OPTIONS_TREE
32cdf0e10cSrcweir{
33cdf0e10cSrcweir    HelpID = HID_OFADLG_OPTIONS_TREE ;
34cdf0e10cSrcweir    Moveable = TRUE ;
35cdf0e10cSrcweir    OutputSize = TRUE ;
36cdf0e10cSrcweir    SVLook = TRUE ;
37cdf0e10cSrcweir
38cdf0e10cSrcweir    Size = MAP_APPFONT ( COL_12, ROW_5 ) ;
39cdf0e10cSrcweir    Text [ en-US ] = "Options" ;
40cdf0e10cSrcweir
41cdf0e10cSrcweir    OKButton PB_OK
42cdf0e10cSrcweir    {
43cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_4, ROW_3 ) ;
44cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
45cdf0e10cSrcweir        TabStop = TRUE ;
46cdf0e10cSrcweir        DefButton = TRUE ;
47cdf0e10cSrcweir    };
48cdf0e10cSrcweir    CancelButton PB_CANCEL
49cdf0e10cSrcweir    {
50cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_6, ROW_3 ) ;
51cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
52cdf0e10cSrcweir        TabStop = TRUE ;
53cdf0e10cSrcweir    };
54cdf0e10cSrcweir    HelpButton PB_HELP
55cdf0e10cSrcweir    {
56cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_8, ROW_3 ) ;
57cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
58cdf0e10cSrcweir        TabStop = TRUE ;
59cdf0e10cSrcweir    };
60cdf0e10cSrcweir    PushButton PB_BACK
61cdf0e10cSrcweir    {
62cdf0e10cSrcweir        HelpID = "cui:PushButton:RID_OFADLG_OPTIONS_TREE:PB_BACK" ;
63cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_10, ROW_3 ) ;
64cdf0e10cSrcweir        Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH, RSC_CD_PUSHBUTTON_HEIGHT ) ;
65cdf0e10cSrcweir        TabStop = TRUE ;
66cdf0e10cSrcweir        Text [ en-US ] = "~Back" ;
67cdf0e10cSrcweir    };
686d874646SMatthias Seidel
69cdf0e10cSrcweir    // TreeListBox
70cdf0e10cSrcweir    Control TLB_PAGES
71cdf0e10cSrcweir    {
72cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_1, ROW_1 ) ;
73cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_2-COL_1), (ROW_4-ROW_1) ) ;
74cdf0e10cSrcweir        TabStop = TRUE ;
75cdf0e10cSrcweir        Border = TRUE ;
76cdf0e10cSrcweir    };
77cdf0e10cSrcweir    Control FB_BORDER
78cdf0e10cSrcweir    {
79cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3, ROW_1 ) ;
80cdf0e10cSrcweir        Size = MAP_APPFONT ( WIDTH_PAGEFRAME, HEIGHT_PAGEFRAME ) ;
81cdf0e10cSrcweir        Hide = TRUE ;
82cdf0e10cSrcweir    };
83cdf0e10cSrcweir    FixedImage IMG_HELP
84cdf0e10cSrcweir    {
85cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_1, ROW_1_1 ) ;
86cdf0e10cSrcweir        Size = MAP_APPFONT ( WIDTH_IMG_HELP, HEIGHT_IMG_HELP ) ;
87cdf0e10cSrcweir        Hide = TRUE ;
88cdf0e10cSrcweir    };
89cdf0e10cSrcweir    FixedText FT_PAGE_TITLE
90cdf0e10cSrcweir    {
91cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_3, ROW_1_2 ) ;
92cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_3_5-COL_3_3), 15 ) ;
93cdf0e10cSrcweir        Hide = TRUE ;
94cdf0e10cSrcweir    };
95cdf0e10cSrcweir    FixedLine FL_LINE_1
96cdf0e10cSrcweir    {
97cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_1, ROW_1_3 ) ;
98cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_3_5-COL_3_1), 1 ) ;
996d874646SMatthias Seidel        Comment = "Divider" ;
100cdf0e10cSrcweir        Hide = TRUE ;
101cdf0e10cSrcweir    };
102cdf0e10cSrcweir    FixedText FT_HELPTEXT
103cdf0e10cSrcweir    {
104cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL_3_3, ROW_1_4 ) ;
105cdf0e10cSrcweir        Size = MAP_APPFONT ( (COL_3_5-COL_3_3), (HEIGHT_PAGEFRAME-ROW_1_4-1) ) ;
106cdf0e10cSrcweir        WordBreak = TRUE ;
107cdf0e10cSrcweir        Hide = TRUE ;
108cdf0e10cSrcweir    };
109cdf0e10cSrcweir    String ST_LOAD_ERROR
110cdf0e10cSrcweir    {
111cdf0e10cSrcweir        Text [ en-US ] = "The selected module could not be loaded." ;
112cdf0e10cSrcweir    };
113cdf0e10cSrcweir    StringArray STR_HELPTEXTS
114cdf0e10cSrcweir    {
115cdf0e10cSrcweir        ItemList [ en-US ] =
116cdf0e10cSrcweir        {
117cdf0e10cSrcweir            < "This dialog is used to define general settings when working with %PRODUCTNAME. Enter your personal data, the defaults to be used when saving documents, and paths to important files. These settings will be saved automatically and used in later sessions as well." ; SID_GENERAL_OPTIONS; > ;
118cdf0e10cSrcweir            < "This is where you make settings concerning language and writing aids for your work with %PRODUCTNAME." ; SID_LANGUAGE_OPTIONS; > ;
119cdf0e10cSrcweir            < "This is where you configure %PRODUCTNAME for the Internet. You can define search engines or save your proxy settings." ; SID_INET_DLG; > ;
120cdf0e10cSrcweir            < "This is where you specify various settings for text documents. These settings determine how your text documents are handled in %PRODUCTNAME and are valid for all new %PRODUCTNAME Writer documents. You can also define a few settings for the active text document if you save it afterwards." ; SID_SW_EDITOPTIONS; > ;
121cdf0e10cSrcweir            < "This is where you define the basic settings for %PRODUCTNAME documents in HTML format. For example, you decide which contents should be displayed on the screen or printed, how the pages are scrolled on the screen, in which color keywords are highlighted in the source text and much more." ; SID_SW_ONLINEOPTIONS; > ;
122cdf0e10cSrcweir            < "This is where you define various global settings for spreadsheets. For example, you can define which contents should be displayed and in which direction the cursor will move after you enter data in a cell. You also define sort lists, the number of the decimal places displayed, etc." ; SID_SC_EDITOPTIONS; > ;
123cdf0e10cSrcweir            < "This is where you define the settings that apply to all newly saved presentations. Among other things, you decide which contents are displayed on the slides, which default unit of measure is used, if and how grid alignment is used, and if notes and handouts are always printed." ; SID_SD_EDITOPTIONS; > ;
124cdf0e10cSrcweir            < "This is where you define the settings for drawing documents. Among other things, you determine which contents are displayed on the pages, which scale is used, if and how grid alignment is used, and which contents are printed by default." ; SID_SD_GRAPHIC_OPTIONS; > ;
125cdf0e10cSrcweir            < "This is where you select the print format and print options for all newly saved formula documents. These options take effect when you want to print a formula directly from %PRODUCTNAME Math." ; SID_SM_EDITOPTIONS; > ;
126cdf0e10cSrcweir            < "This is where you specify general default settings for your %PRODUCTNAME Charts. Set the colors you want for all new charts." ; SID_SCH_EDITOPTIONS; > ;
127cdf0e10cSrcweir            < "This is where you define general settings for accessing external data sources." ; SID_SB_STARBASEOPTIONS; > ;
128cdf0e10cSrcweir            < "This is where you define general settings for opening and saving documents in external formats. You can control the behavior of macros or OLE objects in Microsoft Office documents or define settings for HTML documents." ; SID_FILTER_DLG; > ;
129cdf0e10cSrcweir        };
130cdf0e10cSrcweir    };
131cdf0e10cSrcweir    Bitmap BMP_ROOT_CLOSED
132cdf0e10cSrcweir    {
1336d874646SMatthias Seidel        File = "plus.png" ;
134cdf0e10cSrcweir    };
135cdf0e10cSrcweir    Bitmap BMP_ROOT_OPENED
136cdf0e10cSrcweir    {
1376d874646SMatthias Seidel        File = "minus.png" ;
138cdf0e10cSrcweir    };
139cdf0e10cSrcweir};
140cdf0e10cSrcweir
141cdf0e10cSrcweirResource RID_OFADLG_OPTIONS_TREE_PAGES
142cdf0e10cSrcweir{
143cdf0e10cSrcweir    StringArray SID_GENERAL_OPTIONS
144cdf0e10cSrcweir    {
145cdf0e10cSrcweir        ItemList [ en-US ] =
146cdf0e10cSrcweir        {
147cdf0e10cSrcweir            < "%PRODUCTNAME" ;      0                               ; > ;
148cdf0e10cSrcweir            < "User Data" ;         RID_SFXPAGE_GENERAL             ; > ;
149cdf0e10cSrcweir            < "General" ;           OFA_TP_MISC                     ; > ;
150cdf0e10cSrcweir            < "Memory" ;            OFA_TP_MEMORY                   ; > ;
151cdf0e10cSrcweir            < "View" ;              OFA_TP_VIEW                     ; > ;
152cdf0e10cSrcweir            < "Print" ;             RID_SFXPAGE_PRINTOPTIONS        ; > ;
153cdf0e10cSrcweir            < "Paths" ;             RID_SFXPAGE_PATH                ; > ;
154cdf0e10cSrcweir            < "Colors" ;            RID_SVXPAGE_COLOR               ; > ;
155cdf0e10cSrcweir            < "Fonts" ;             RID_SVX_FONT_SUBSTITUTION       ; > ;
156cdf0e10cSrcweir            < "Security" ;          RID_SVXPAGE_INET_SECURITY       ; > ;
157cdf0e10cSrcweir            < "Appearance" ;        RID_SVXPAGE_COLORCONFIG         ; > ;
158cdf0e10cSrcweir            < "Accessibility" ;     RID_SVXPAGE_ACCESSIBILITYCONFIG ; > ;
159cdf0e10cSrcweir            < "Java" ;              RID_SVXPAGE_OPTIONS_JAVA        ; > ;
160cdf0e10cSrcweir            < "Network Identity" ;  RID_SVXPAGE_SSO                 ; > ;
161cdf0e10cSrcweir            < "Online Update" ;     RID_SVXPAGE_ONLINEUPDATE        ; > ;
162cdf0e10cSrcweir            < "" ;                  RID_SVXPAGE_IMPROVEMENT         ; > ;
163cdf0e10cSrcweir        };
164cdf0e10cSrcweir    };
165cdf0e10cSrcweir    StringArray SID_LANGUAGE_OPTIONS
166cdf0e10cSrcweir    {
167cdf0e10cSrcweir        ItemList [ en-US ] =
168cdf0e10cSrcweir        {
169cdf0e10cSrcweir            < "Language Settings" ;     0                           ; > ;
170cdf0e10cSrcweir            < "Languages" ;             OFA_TP_LANGUAGES            ; > ;
171cdf0e10cSrcweir            < "Writing Aids" ;          RID_SFXPAGE_LINGU           ; > ;
172cdf0e10cSrcweir            < "Searching in Japanese" ; RID_SVXPAGE_JSEARCH_OPTIONS ; > ;
173cdf0e10cSrcweir            < "Asian Layout" ;          RID_SVXPAGE_ASIAN_LAYOUT    ; > ;
174cdf0e10cSrcweir            < "Complex Text Layout" ;   RID_SVXPAGE_OPTIONS_CTL     ; > ;
175cdf0e10cSrcweir        };
176cdf0e10cSrcweir    };
177cdf0e10cSrcweir    StringArray SID_INET_DLG
178cdf0e10cSrcweir    {
179cdf0e10cSrcweir        // modified by jmeng begin
180cdf0e10cSrcweir        ItemList [ en-US ] =
181cdf0e10cSrcweir        {
182cdf0e10cSrcweir            < "Internet" ;  0                       ; > ;
183cdf0e10cSrcweir            < "Proxy" ;     RID_SVXPAGE_INET_PROXY  ; > ;
184cdf0e10cSrcweir            < "Search" ;    RID_SVXPAGE_INET_SEARCH ; > ;
185cdf0e10cSrcweir            < "E-mail" ;    RID_SVXPAGE_INET_MAIL   ; > ;
186cdf0e10cSrcweir        };
187cdf0e10cSrcweir        // modified by jmeng end
188cdf0e10cSrcweir    };
189cdf0e10cSrcweir    StringArray SID_SW_EDITOPTIONS
190cdf0e10cSrcweir    {
191cdf0e10cSrcweir        ItemList [ en-US ] =
192cdf0e10cSrcweir        {
193cdf0e10cSrcweir            < "%PRODUCTNAME Writer" ;   0                               ; > ;
194cdf0e10cSrcweir            < "General" ;               RID_SW_TP_OPTLOAD_PAGE          ; > ;
195cdf0e10cSrcweir            < "View" ;                  RID_SW_TP_CONTENT_OPT           ; > ;
196cdf0e10cSrcweir            < "Formatting Aids" ;       RID_SW_TP_OPTSHDWCRSR           ; > ;
197cdf0e10cSrcweir            < "Grid" ;                  RID_SVXPAGE_GRID                ; > ;
198cdf0e10cSrcweir            < "Basic Fonts (Western)" ; RID_SW_TP_STD_FONT              ; > ;
199cdf0e10cSrcweir            < "Basic Fonts (Asian)" ;   RID_SW_TP_STD_FONT_CJK          ; > ;
200cdf0e10cSrcweir            < "Basic Fonts (CTL)" ;     RID_SW_TP_STD_FONT_CTL          ; > ;
201cdf0e10cSrcweir            < "Print" ;                 RID_SW_TP_OPTPRINT_PAGE         ; > ;
202cdf0e10cSrcweir            < "Table" ;                 RID_SW_TP_OPTTABLE_PAGE         ; > ;
203cdf0e10cSrcweir            < "Changes" ;               RID_SW_TP_REDLINE_OPT           ; > ;
204cdf0e10cSrcweir            < "Compatibility" ;         RID_SW_TP_OPTCOMPATIBILITY_PAGE ; > ;
205cdf0e10cSrcweir            < "AutoCaption" ;           RID_SW_TP_OPTCAPTION_PAGE       ; > ;
206cdf0e10cSrcweir            < "Mail Merge E-mail" ;     RID_SW_TP_MAILCONFIG            ; > ;
207cdf0e10cSrcweir        };
208cdf0e10cSrcweir    };
209cdf0e10cSrcweir    StringArray SID_SW_ONLINEOPTIONS
210cdf0e10cSrcweir    {
211cdf0e10cSrcweir        ItemList [ en-US ] =
212cdf0e10cSrcweir        {
213cdf0e10cSrcweir            < "%PRODUCTNAME Writer/Web" ;   0                               ; > ;
214cdf0e10cSrcweir            < "View" ;                      RID_SW_TP_HTML_CONTENT_OPT      ; > ;
215cdf0e10cSrcweir            < "Formatting Aids" ;           RID_SW_TP_HTML_OPTSHDWCRSR      ; > ;
216cdf0e10cSrcweir            < "Grid" ;                      RID_SW_TP_HTML_OPTGRID_PAGE     ; > ;
217cdf0e10cSrcweir            < "Print" ;                     RID_SW_TP_HTML_OPTPRINT_PAGE    ; > ;
218cdf0e10cSrcweir            < "Table" ;                     RID_SW_TP_HTML_OPTTABLE_PAGE    ; > ;
219cdf0e10cSrcweir            < "Background" ;                RID_SW_TP_BACKGROUND            ; > ;
220cdf0e10cSrcweir        };
221cdf0e10cSrcweir    };
222cdf0e10cSrcweir    StringArray SID_SM_EDITOPTIONS
223cdf0e10cSrcweir    {
224cdf0e10cSrcweir        ItemList [ en-US ] =
225cdf0e10cSrcweir        {
226cdf0e10cSrcweir            < "%PRODUCTNAME Math" ;     0                       ; > ;
227cdf0e10cSrcweir            < "Settings" ;              SID_SM_TP_PRINTOPTIONS  ; > ;
228cdf0e10cSrcweir        };
229cdf0e10cSrcweir    };
230cdf0e10cSrcweir    StringArray SID_SC_EDITOPTIONS
231cdf0e10cSrcweir    {
232cdf0e10cSrcweir        ItemList [ en-US ] =
233cdf0e10cSrcweir        {
234cdf0e10cSrcweir            < "%PRODUCTNAME Calc" ; 0                           ; > ;
235cdf0e10cSrcweir            < "General" ;           SID_SC_TP_LAYOUT            ; > ;
236cdf0e10cSrcweir            < "View" ;              SID_SC_TP_CONTENT           ; > ;
237cdf0e10cSrcweir            < "International" ;     RID_OFA_TP_INTERNATIONAL    ; > ;
238cdf0e10cSrcweir            < "Calculate" ;         SID_SC_TP_CALC              ; > ;
239cdf0e10cSrcweir            < "Sort Lists" ;        SID_SC_TP_USERLISTS         ; > ;
240cdf0e10cSrcweir            < "Changes" ;           SID_SC_TP_CHANGES           ; > ;
241cdf0e10cSrcweir            < "Grid" ;              SID_SC_TP_GRID              ; > ;
242cdf0e10cSrcweir            < "Print" ;             RID_SC_TP_PRINT             ; > ;
243cdf0e10cSrcweir        };
244cdf0e10cSrcweir    };
245cdf0e10cSrcweir    StringArray SID_SD_EDITOPTIONS
246cdf0e10cSrcweir    {
247cdf0e10cSrcweir        ItemList [ en-US ] =
248cdf0e10cSrcweir        {
249cdf0e10cSrcweir            < "%PRODUCTNAME Impress" ;  0                   ; > ;
250cdf0e10cSrcweir            < "General" ;               SID_SI_TP_MISC      ; > ;
251cdf0e10cSrcweir            < "View" ;                  SID_SI_TP_CONTENTS  ; > ;
252cdf0e10cSrcweir            < "Grid" ;                  SID_SI_TP_SNAP      ; > ;
253cdf0e10cSrcweir            < "Print" ;                 SID_SI_TP_PRINT     ; > ;
254cdf0e10cSrcweir        };
255cdf0e10cSrcweir    };
256cdf0e10cSrcweir    StringArray SID_SD_GRAPHIC_OPTIONS
257cdf0e10cSrcweir    {
258cdf0e10cSrcweir        ItemList [ en-US ] =
259cdf0e10cSrcweir        {
260cdf0e10cSrcweir            < "%PRODUCTNAME Draw" ; 0                   ; > ;
261cdf0e10cSrcweir            < "General" ;           SID_SD_TP_MISC      ; > ;
262cdf0e10cSrcweir            < "View" ;              SID_SD_TP_CONTENTS  ; > ;
263cdf0e10cSrcweir            < "Grid" ;              SID_SD_TP_SNAP      ; > ;
264cdf0e10cSrcweir            < "Print" ;             SID_SD_TP_PRINT     ; > ;
265cdf0e10cSrcweir        };
266cdf0e10cSrcweir    };
267cdf0e10cSrcweir    StringArray SID_SCH_EDITOPTIONS
268cdf0e10cSrcweir    {
269cdf0e10cSrcweir        ItemList [ en-US ] =
270cdf0e10cSrcweir        {
271cdf0e10cSrcweir            < "Charts" ;            0                           ; > ;
272cdf0e10cSrcweir            < "Default Colors" ;    RID_OPTPAGE_CHART_DEFCOLORS ; > ;
273cdf0e10cSrcweir        };
274cdf0e10cSrcweir    };
275cdf0e10cSrcweir    StringArray SID_FILTER_DLG
276cdf0e10cSrcweir    {
277cdf0e10cSrcweir        ItemList [ en-US ] =
278cdf0e10cSrcweir        {
279cdf0e10cSrcweir            < "Load/Save" ;             0                           ; > ;
280cdf0e10cSrcweir            < "General" ;               RID_SFXPAGE_SAVE            ; > ;
281cdf0e10cSrcweir            < "VBA Properties" ;        SID_OPTFILTER_MSOFFICE      ; > ;
282cdf0e10cSrcweir            < "Microsoft Office" ;      RID_OFAPAGE_MSFILTEROPT2    ; > ;
283cdf0e10cSrcweir            < "HTML Compatibility" ;    RID_OFAPAGE_HTMLOPT         ; > ;
284cdf0e10cSrcweir        };
285cdf0e10cSrcweir    };
286cdf0e10cSrcweir    StringArray SID_SB_STARBASEOPTIONS
287cdf0e10cSrcweir    {
288cdf0e10cSrcweir        ItemList [ en-US ] =
289cdf0e10cSrcweir        {
290cdf0e10cSrcweir            < "%PRODUCTNAME Base" ; 0                           ; > ;
291cdf0e10cSrcweir            < "Connections" ;       SID_SB_CONNECTIONPOOLING    ; > ;
292cdf0e10cSrcweir            < "Databases" ;         SID_SB_DBREGISTEROPTIONS    ; > ;
293cdf0e10cSrcweir        };
294cdf0e10cSrcweir    };
295cdf0e10cSrcweir};
296cdf0e10cSrcweirString RID_RIDER_SLL_SITE
297cdf0e10cSrcweir{
298cdf0e10cSrcweir    Text [ en-US ] = "Site certificates" ;
299cdf0e10cSrcweir};
300cdf0e10cSrcweirString RID_RIDER_SLL_PERSONAL
301cdf0e10cSrcweir{
302cdf0e10cSrcweir    Text [ en-US ] = "Personal certificates" ;
303cdf0e10cSrcweir};
304cdf0e10cSrcweir
305*0dfee798SMatthias Seidel#define MASK_COL    MaskColor = Color { Red = 0xFF00; Green = 0x0000; Blue = 0xFF00; } ;
306cdf0e10cSrcweir#define IMGLST_IDLST \
307cdf0e10cSrcweir    IdList = {                  \
308cdf0e10cSrcweir        SID_GENERAL_OPTIONS;    \
309cdf0e10cSrcweir        SID_LANGUAGE_OPTIONS;   \
310cdf0e10cSrcweir        SID_INET_DLG;           \
311cdf0e10cSrcweir        SID_SW_EDITOPTIONS;     \
312cdf0e10cSrcweir        SID_SW_ONLINEOPTIONS;   \
313cdf0e10cSrcweir        SID_SC_EDITOPTIONS;     \
314cdf0e10cSrcweir        SID_SD_EDITOPTIONS;     \
315cdf0e10cSrcweir        SID_SD_GRAPHIC_OPTIONS; \
316cdf0e10cSrcweir        SID_SM_EDITOPTIONS;     \
317cdf0e10cSrcweir        SID_SCH_EDITOPTIONS;    \
318cdf0e10cSrcweir        SID_SB_STARBASEOPTIONS; \
319cdf0e10cSrcweir        SID_FILTER_DLG;         \
320cdf0e10cSrcweir    };                          \
321cdf0e10cSrcweir    IdCount = {                 \
322cdf0e10cSrcweir        12;                     \
323cdf0e10cSrcweir    };
324cdf0e10cSrcweir
325cdf0e10cSrcweirImageList RID_IMGLIST_TREEOPT
326cdf0e10cSrcweir{
327cdf0e10cSrcweir    Prefix = "tr" ;
328*0dfee798SMatthias Seidel    MASK_COL
329cdf0e10cSrcweir    IMGLST_IDLST
330cdf0e10cSrcweir};
331cdf0e10cSrcweir
332cdf0e10cSrcweirImageList RID_IMGLIST_TREEOPT_HC
333cdf0e10cSrcweir{
334cdf0e10cSrcweir    Prefix = "trh" ;
335*0dfee798SMatthias Seidel    MASK_COL
336cdf0e10cSrcweir    IMGLST_IDLST
337cdf0e10cSrcweir};
338cdf0e10cSrcweir
3396d874646SMatthias Seidel// ********************************************************************** EOF
340