1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#ifndef __FRAMEWORK_CLASSES_RESOURCE_HRC_
25#define __FRAMEWORK_CLASSES_RESOURCE_HRC_
26
27#define RID_STR_START		2000
28#define RID_MENU_START      10000
29#define RID_IMAGE_START     15000
30#define RID_FWK_DIALOG_START 0
31
32#define STR_MENU_ADDONS		                    (RID_STR_START+0)
33#define STR_MENU_ADDONHELP	                    (RID_STR_START+1)
34#define STR_MENU_HEADFOOTALL                    (RID_STR_START+2)
35#define STR_UPDATEDOC                           (RID_STR_START+3)
36#define STR_CLOSEDOC_ANDRETURN                  (RID_STR_START+4)
37#define STR_SAVECOPYDOC							(RID_STR_START+5)
38#define STR_NODOCUMENT                          (RID_STR_START+6)
39#define STR_TOOLBAR_TITLE_ADDON                 (RID_STR_START+7)
40
41#define STR_FULL_DISC_RETRY_BUTTON              (RID_STR_START+9)  // used by AuotSave to show error state: full disc
42#define STR_FULL_DISC_MSG                       (RID_STR_START+10) // used by AuotSave to show error state: full disc
43#define STR_RESTORE_TOOLBARS                    (RID_STR_START+11)
44#define STR_CORRUPT_UICFG_SHARE                 (RID_STR_START+12)
45#define STR_CORRUPT_UICFG_USER                  (RID_STR_START+13)
46#define STR_CORRUPT_UICFG_GENERAL               (RID_STR_START+14)
47#define STR_LANGSTATUS_MULTIPLE_LANGUAGES       (RID_STR_START+15)
48#define STR_LANGSTATUS_NONE                     (RID_STR_START+16)
49#define STR_LANGSTATUS_MORE                     (RID_STR_START+17)
50#define STR_SET_LANGUAGE_FOR_SELECTION          (RID_STR_START+18)
51#define STR_SET_LANGUAGE_FOR_PARAGRAPH          (RID_STR_START+19)
52#define STR_SET_LANGUAGE_FOR_ALL_TEXT           (RID_STR_START+20)
53#define STR_UNTITLED_DOCUMENT                   (RID_STR_START+21)
54#define STR_RESET_TO_DEFAULT_LANGUAGE           (RID_STR_START+22)
55#define STR_CLEAR_RECENT_FILES                  (RID_STR_START+23)
56#define STR_CLEAR_RECENT_FILES_HELP             (RID_STR_START+24)
57
58#define POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION    (RID_MENU_START+0)
59
60#define MENUITEM_TOOLBAR_VISIBLEBUTTON          1
61#define MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR       2
62#define MENUITEM_TOOLBAR_DOCKTOOLBAR            3
63#define MENUITEM_TOOLBAR_DOCKALLTOOLBAR         4
64#define MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION    5
65#define MENUITEM_TOOLBAR_CLOSE                  6
66
67// License Dialog
68#define DLG_LICENSE                         (RID_FWK_DIALOG_START+256)
69#define ML_LICENSE                          (RID_FWK_DIALOG_START+11)
70#define FT_INFO1                            (RID_FWK_DIALOG_START+12)
71#define FT_INFO2                            (RID_FWK_DIALOG_START+13)
72#define FT_INFO3                            (RID_FWK_DIALOG_START+14)
73#define FT_INFO2_1                          (RID_FWK_DIALOG_START+15)
74#define FT_INFO3_1                          (RID_FWK_DIALOG_START+16)
75#define FL_DIVIDE                           (RID_FWK_DIALOG_START+17)
76#define PB_PAGEDOWN                         (RID_FWK_DIALOG_START+18)
77#define IMG_ARROW                           (RID_FWK_DIALOG_START+19)
78#define LICENSE_ACCEPT                      (RID_FWK_DIALOG_START+20)
79#define LICENSE_NOTACCEPT                   (RID_FWK_DIALOG_START+21)
80#define PB_DECLINE                          (RID_FWK_DIALOG_START+22)
81#define PB_ACCEPT                           (RID_FWK_DIALOG_START+23)
82
83#endif
84