forked from amazingfate/loongoffice
74 lines
3.2 KiB
Plaintext
74 lines
3.2 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 BIB_HRC
|
|
#define BIB_HRC
|
|
|
|
#include "bibliography.hrc"
|
|
#include <svl/solar.hrc>
|
|
#ifndef RID_BIB_START
|
|
#define RID_BIB_START RID_EXTENSIONS_START
|
|
#endif
|
|
|
|
//Controls(100)
|
|
#define RID_BIB_CONTROLS (RID_BIB_START + 100)
|
|
#define RID_BIB_TOOLBAR (RID_BIB_CONTROLS+ 1)
|
|
#define RID_TOOLBAR_IMGLIST (RID_BIB_CONTROLS+ 2)
|
|
// free
|
|
#define RID_TOOLBAR_BIGIMGLIST (RID_BIB_CONTROLS+ 4)
|
|
|
|
//Menu(100)
|
|
#define RID_BIB_MENU (RID_BIB_CONTROLS + 100)
|
|
|
|
// Strings (500)
|
|
#define RID_BIB_STRING (RID_BIB_START + 200)
|
|
#define RID_BIB_STR_NONE (RID_BIB_STRING + 1)
|
|
#define RID_BIB_STR_FIELDSELECTION (RID_BIB_STRING + 2)
|
|
#define RID_BIB_STR_TABWIN_PREFIX (RID_BIB_STRING + 3)
|
|
#define RID_BIB_STR_FRAME_TITLE (RID_BIB_STRING + 4)
|
|
#define RID_MAP_QUESTION (RID_BIB_STRING + 5)
|
|
|
|
#define ST_ERROR_PREFIX (RID_BIB_STRING + 37)
|
|
#define ST_TYPE_ARTICLE (RID_BIB_STRING + 38)
|
|
#define ST_TYPE_BOOK (RID_BIB_STRING + 39)
|
|
#define ST_TYPE_BOOKLET (RID_BIB_STRING + 40)
|
|
#define ST_TYPE_CONFERENCE (RID_BIB_STRING + 41)
|
|
#define ST_TYPE_INBOOK (RID_BIB_STRING + 42)
|
|
#define ST_TYPE_INCOLLECTION (RID_BIB_STRING + 43)
|
|
#define ST_TYPE_INPROCEEDINGS (RID_BIB_STRING + 44)
|
|
#define ST_TYPE_JOURNAL (RID_BIB_STRING + 45)
|
|
#define ST_TYPE_MANUAL (RID_BIB_STRING + 46)
|
|
#define ST_TYPE_MASTERSTHESIS (RID_BIB_STRING + 47)
|
|
#define ST_TYPE_MISC (RID_BIB_STRING + 48)
|
|
#define ST_TYPE_PHDTHESIS (RID_BIB_STRING + 49)
|
|
#define ST_TYPE_PROCEEDINGS (RID_BIB_STRING + 50)
|
|
#define ST_TYPE_TECHREPORT (RID_BIB_STRING + 51)
|
|
#define ST_TYPE_UNPUBLISHED (RID_BIB_STRING + 52)
|
|
#define ST_TYPE_EMAIL (RID_BIB_STRING + 53)
|
|
#define ST_TYPE_WWW (RID_BIB_STRING + 54)
|
|
#define ST_TYPE_CUSTOM1 (RID_BIB_STRING + 55)
|
|
#define ST_TYPE_CUSTOM2 (RID_BIB_STRING + 56)
|
|
#define ST_TYPE_CUSTOM3 (RID_BIB_STRING + 57)
|
|
#define ST_TYPE_CUSTOM4 (RID_BIB_STRING + 58)
|
|
#define ST_TYPE_CUSTOM5 (RID_BIB_STRING + 59)
|
|
#define ST_TYPE_TITLE (RID_BIB_STRING + 60)
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|