Change-Id: Ia1ba313d2438f04a84bcfcbbbcf6fffea5c1921d Reviewed-on: https://gerrit.libreoffice.org/35310 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
69 lines
3.4 KiB
Plaintext
69 lines
3.4 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#ifndef INCLUDED_FRAMEWORK_INC_CLASSES_RESOURCE_HRC
|
|
#define INCLUDED_FRAMEWORK_INC_CLASSES_RESOURCE_HRC
|
|
|
|
#define RID_STR_START 2000
|
|
#define RID_MENU_START 10000
|
|
#define RID_IMAGE_START 15000
|
|
|
|
#define STR_MENU_ADDONS (RID_STR_START+0)
|
|
#define STR_MENU_HEADFOOTALL (RID_STR_START+2)
|
|
#define STR_UPDATEDOC (RID_STR_START+3)
|
|
#define STR_CLOSEDOC_ANDRETURN (RID_STR_START+4)
|
|
#define STR_SAVECOPYDOC (RID_STR_START+5)
|
|
#define STR_NODOCUMENT (RID_STR_START+6)
|
|
#define STR_TOOLBAR_TITLE_ADDON (RID_STR_START+7)
|
|
|
|
#define STR_FULL_DISC_RETRY_BUTTON (RID_STR_START+9) // used by AuotSave to show error state: full disc
|
|
#define STR_FULL_DISC_MSG (RID_STR_START+10) // used by AuotSave to show error state: full disc
|
|
#define STR_RESTORE_TOOLBARS (RID_STR_START+11)
|
|
#define STR_CORRUPT_UICFG_SHARE (RID_STR_START+12)
|
|
#define STR_CORRUPT_UICFG_USER (RID_STR_START+13)
|
|
#define STR_CORRUPT_UICFG_GENERAL (RID_STR_START+14)
|
|
#define STR_LANGSTATUS_MULTIPLE_LANGUAGES (RID_STR_START+15)
|
|
#define STR_LANGSTATUS_NONE (RID_STR_START+16)
|
|
#define STR_LANGSTATUS_MORE (RID_STR_START+17)
|
|
#define STR_SET_LANGUAGE_FOR_PARAGRAPH (RID_STR_START+19)
|
|
#define STR_UNTITLED_DOCUMENT (RID_STR_START+21)
|
|
#define STR_RESET_TO_DEFAULT_LANGUAGE (RID_STR_START+22)
|
|
#define STR_CLEAR_RECENT_FILES (RID_STR_START+23)
|
|
#define STR_CLEAR_RECENT_FILES_HELP (RID_STR_START+24)
|
|
#define STR_LANGSTATUS_HINT (RID_STR_START+25)
|
|
#define STR_REMOTE_TITLE (RID_STR_START+26)
|
|
#define STR_SAFEMODE_TITLE (RID_STR_START+27)
|
|
|
|
#define BMP_SAVEMODIFIED_SMALL (RID_IMAGE_START+0)
|
|
#define BMP_SAVEMODIFIED_LARGE (RID_IMAGE_START+1)
|
|
#define BMP_SAVEMODIFIED_EXTRALARGE (RID_IMAGE_START+2)
|
|
|
|
#define POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION (RID_MENU_START+0)
|
|
|
|
#define MENUITEM_TOOLBAR_VISIBLEBUTTON 1
|
|
#define MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR 2
|
|
#define MENUITEM_TOOLBAR_DOCKTOOLBAR 3
|
|
#define MENUITEM_TOOLBAR_DOCKALLTOOLBAR 4
|
|
#define MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION 5
|
|
#define MENUITEM_TOOLBAR_CLOSE 6
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|