1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_text_BibliographyDataField_idl__
20 #define __com_sun_star_text_BibliographyDataField_idl__
23 module com
{ module sun
{ module star
{ module text
{
24 /** These values define parts of bibliographic data. They are used to create a
25 bibliography in a text document.
26 <p> Depending on the type of the data some of the fields will usually be left empty.
29 published constants BibliographyDataField
31 /** This field contains a unique identifier for the bibliographic data.
33 const short IDENTIFIER
= 0;
34 /** This field contains the type of the bibliographic reference. It is of the
35 type BibliographyDataType.
36 @see BibliographyDataType
38 const short BIBILIOGRAPHIC_TYPE
= 1;
39 /** This field contains the address of the publisher.
41 const short ADDRESS
= 2;
42 /** This field contains an annotation.
44 const short ANNOTE
= 3;
45 /** This field contains the name(s) of the author(s)
47 const short AUTHOR
= 4;
48 /** This field contains the title of the book.
50 const short BOOKTITLE
= 5;
51 /** This field contains the name or number of the chapter.
53 const short CHAPTER
= 6;
54 /** This field contains the number or name of the edition.
56 const short EDITION
= 7;
57 /** This field contains the name(s) of the editor(s)
59 const short EDITOR
= 8;
60 /** This field contains a description of the type of the publishing.
62 const short HOWPUBLISHED
= 9;
63 /** This field contains the name of the institution where the publishing was created.
65 const short INSTITUTION
= 10;
66 /** This field contains the name of the journal.
68 const short JOURNAL
= 11;
69 /** This field contains number or name of the month of the publishing.
71 const short MONTH
= 12;
72 /** This field contains a note.
74 const short NOTE
= 13;
75 /** This field contains the number of the publishing.
77 const short NUMBER
= 14;
78 /** This field contains the name of the organizations where the publishing was created.
80 const short ORGANIZATIONS
= 15;
81 /** This field contains the number(s) of the page(s) of the reference into a publishing.
83 const short PAGES
= 16;
84 /** This field contains the name of the publisher.
86 const short PUBLISHER
= 17;
87 /** This field contains the name of the university or school where the publishing was created.
89 const short SCHOOL
= 18;
90 /** This field contains the series of the publishing.
92 const short SERIES
= 19;
93 /** This field contains the title of the publishing.
95 const short TITLE
= 20;
96 /** This field contains a description of the type of the report.
98 const short REPORT_TYPE
= 21;
99 /** This field contains the volume of the publishing.
101 const short VOLUME
= 22;
102 /** This field contains the year when the publishing was created.
104 const short YEAR
= 23;
105 /** This field contains URL of the publishing.
107 const short URL
= 24;
108 /** This field contains user defined data.
110 const short CUSTOM1
= 25;
111 /** This field contains user defined data.
113 const short CUSTOM2
= 26;
114 /** This field contains user defined data.
116 const short CUSTOM3
= 27;
117 /** This field contains user defined data.
119 const short CUSTOM4
= 28;
120 /** This field contains user defined data.
122 const short CUSTOM5
= 29;
123 /** This field contains the ISBN data of the publishing.
125 const short ISBN
= 30;
133 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */