xref: /trunk/main/offapi/com/sun/star/text/BibliographyDataField.idl (revision ffd38472365e95f6a578737bc9a5eb0fac624a86)
1*d1766043SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*d1766043SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*d1766043SAndrew Rist * distributed with this work for additional information
6*d1766043SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*d1766043SAndrew Rist * "License"); you may not use this file except in compliance
9*d1766043SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*d1766043SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*d1766043SAndrew Rist * software distributed under the License is distributed on an
15*d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*d1766043SAndrew Rist * KIND, either express or implied.  See the License for the
17*d1766043SAndrew Rist * specific language governing permissions and limitations
18*d1766043SAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*d1766043SAndrew Rist *************************************************************/
21*d1766043SAndrew Rist
22*d1766043SAndrew Rist
23cdf0e10cSrcweir#ifndef __com_sun_star_text_BibliographyDataField_idl__
24cdf0e10cSrcweir#define __com_sun_star_text_BibliographyDataField_idl__
25cdf0e10cSrcweir
26cdf0e10cSrcweir//=============================================================================
27cdf0e10cSrcweir
28cdf0e10cSrcweir module com {  module sun {  module star {  module text {
29cdf0e10cSrcweir//=============================================================================
30cdf0e10cSrcweir
31cdf0e10cSrcweir// DocMerge from idl: constants com::sun::star::text::BibliographyDataField
32cdf0e10cSrcweir/** These values define parts of bibliographic data. They are used to create a
33cdf0e10cSrcweir        bibliography in a text document.
34cdf0e10cSrcweir     <p> Depending on the type of the data some of the fields will usually be left empty.
35cdf0e10cSrcweir     </p>
36cdf0e10cSrcweir */
37cdf0e10cSrcweirpublished constants BibliographyDataField
38cdf0e10cSrcweir{
39cdf0e10cSrcweir    //-------------------------------------------------------------------------
40cdf0e10cSrcweir
41cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::IDENTIFIER
42cdf0e10cSrcweir    /** This field contains a unique identifier for the bibliographic data.
43cdf0e10cSrcweir     */
44cdf0e10cSrcweir    const short IDENTIFIER      = 0;
45cdf0e10cSrcweir
46cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::BIBILIOGRAPHIC_TYPE
47cdf0e10cSrcweir    /** This field contains the type of the bibliographic reference. It is of the
48cdf0e10cSrcweir             type BibliographyDataType.
49cdf0e10cSrcweir             @see BibliographyDataType
50cdf0e10cSrcweir     */
51cdf0e10cSrcweir    const short BIBILIOGRAPHIC_TYPE     = 1;
52cdf0e10cSrcweir
53cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::ADDRESS
54cdf0e10cSrcweir    /** This field contains the address of the publisher.
55cdf0e10cSrcweir     */
56cdf0e10cSrcweir    const short ADDRESS         = 2;
57cdf0e10cSrcweir
58cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::ANNOTE
59cdf0e10cSrcweir    /** This field contains an annotation.
60cdf0e10cSrcweir     */
61cdf0e10cSrcweir    const short ANNOTE          = 3;
62cdf0e10cSrcweir
63cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::AUTHOR
64cdf0e10cSrcweir    /** This field contains the name(s) of the author(s)
65cdf0e10cSrcweir     */
66cdf0e10cSrcweir    const short AUTHOR          = 4;
67cdf0e10cSrcweir
68cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::BOOKTITLE
69cdf0e10cSrcweir    /** This field contains the title of the book.
70cdf0e10cSrcweir     */
71cdf0e10cSrcweir    const short BOOKTITLE       = 5;
72cdf0e10cSrcweir
73cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CHAPTER
74cdf0e10cSrcweir    /** This field contains the name or number of the chapter.
75cdf0e10cSrcweir     */
76cdf0e10cSrcweir    const short CHAPTER         = 6;
77cdf0e10cSrcweir
78cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::EDITION
79cdf0e10cSrcweir    /** This field contains the number or name of the edition.
80cdf0e10cSrcweir     */
81cdf0e10cSrcweir    const short EDITION         = 7;
82cdf0e10cSrcweir
83cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::EDITOR
84cdf0e10cSrcweir    /** This field contains the name(s) of the editor(s)
85cdf0e10cSrcweir     */
86cdf0e10cSrcweir    const short EDITOR          = 8;
87cdf0e10cSrcweir
88cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::HOWPUBLISHED
89cdf0e10cSrcweir    /** This field contains a description of the type of the publishing.
90cdf0e10cSrcweir     */
91cdf0e10cSrcweir    const short HOWPUBLISHED    = 9;
92cdf0e10cSrcweir
93cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::INSTITUTION
94cdf0e10cSrcweir    /** This field contains the name of the institution where the publishing was created.
95cdf0e10cSrcweir     */
96cdf0e10cSrcweir    const short INSTITUTION     = 10;
97cdf0e10cSrcweir
98cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::JOURNAL
99cdf0e10cSrcweir    /** This field contains the name of the journal.
100cdf0e10cSrcweir     */
101cdf0e10cSrcweir    const short JOURNAL         = 11;
102cdf0e10cSrcweir
103cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::MONTH
104cdf0e10cSrcweir    /** This field contains number or name of the month of the publishing.
105cdf0e10cSrcweir     */
106cdf0e10cSrcweir    const short MONTH           = 12;
107cdf0e10cSrcweir
108cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::NOTE
109cdf0e10cSrcweir    /** This field contains a note.
110cdf0e10cSrcweir     */
111cdf0e10cSrcweir    const short NOTE            = 13;
112cdf0e10cSrcweir
113cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::NUMBER
114cdf0e10cSrcweir    /** This field contains the number of the publishing.
115cdf0e10cSrcweir     */
116cdf0e10cSrcweir    const short NUMBER          = 14;
117cdf0e10cSrcweir
118cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::ORGANIZATIONS
119cdf0e10cSrcweir    /** This field contains the name of the organizations where the publishing was created.
120cdf0e10cSrcweir     */
121cdf0e10cSrcweir    const short ORGANIZATIONS   = 15;
122cdf0e10cSrcweir
123cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::PAGES
124cdf0e10cSrcweir    /** This field contains the number(s) of the page(s) of the reference into a publishing.
125cdf0e10cSrcweir     */
126cdf0e10cSrcweir    const short PAGES           = 16;
127cdf0e10cSrcweir
128cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::PUBLISHER
129cdf0e10cSrcweir    /** This field contains the name of the publisher.
130cdf0e10cSrcweir     */
131cdf0e10cSrcweir    const short PUBLISHER       = 17;
132cdf0e10cSrcweir
133cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::SCHOOL
134cdf0e10cSrcweir    /** This field contains the name of the university or school where the publishing was created.
135cdf0e10cSrcweir     */
136cdf0e10cSrcweir    const short SCHOOL          = 18;
137cdf0e10cSrcweir
138cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::SERIES
139cdf0e10cSrcweir    /** This field contains the series of the publishing.
140cdf0e10cSrcweir     */
141cdf0e10cSrcweir    const short SERIES          = 19;
142cdf0e10cSrcweir
143cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::TITLE
144cdf0e10cSrcweir    /** This field contains the title of the publishing.
145cdf0e10cSrcweir     */
146cdf0e10cSrcweir    const short TITLE           = 20;
147cdf0e10cSrcweir
148cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::REPORT_TYPE
149cdf0e10cSrcweir    /** This field contains a description of the type of the report.
150cdf0e10cSrcweir     */
151cdf0e10cSrcweir    const short REPORT_TYPE     = 21;
152cdf0e10cSrcweir
153cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::VOLUME
154cdf0e10cSrcweir    /** This field contains the volume of the publishing.
155cdf0e10cSrcweir     */
156cdf0e10cSrcweir    const short VOLUME          = 22;
157cdf0e10cSrcweir
158cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::YEAR
159cdf0e10cSrcweir    /** This field contains the year when the publishing was created.
160cdf0e10cSrcweir     */
161cdf0e10cSrcweir    const short YEAR            = 23;
162cdf0e10cSrcweir
163cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::URL
164cdf0e10cSrcweir    /** This field contains URL of the publishing.
165cdf0e10cSrcweir     */
166cdf0e10cSrcweir    const short URL             = 24;
167cdf0e10cSrcweir
168cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CUSTOM1
169cdf0e10cSrcweir    /** This field contains user defined data.
170cdf0e10cSrcweir     */
171cdf0e10cSrcweir    const short CUSTOM1         = 25;
172cdf0e10cSrcweir
173cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CUSTOM2
174cdf0e10cSrcweir    /** This field contains user defined data.
175cdf0e10cSrcweir     */
176cdf0e10cSrcweir    const short CUSTOM2         = 26;
177cdf0e10cSrcweir
178cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CUSTOM3
179cdf0e10cSrcweir    /** This field contains user defined data.
180cdf0e10cSrcweir     */
181cdf0e10cSrcweir    const short CUSTOM3         = 27;
182cdf0e10cSrcweir
183cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CUSTOM4
184cdf0e10cSrcweir    /** This field contains user defined data.
185cdf0e10cSrcweir     */
186cdf0e10cSrcweir    const short CUSTOM4         = 28;
187cdf0e10cSrcweir
188cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::CUSTOM5
189cdf0e10cSrcweir    /** This field contains user defined data.
190cdf0e10cSrcweir     */
191cdf0e10cSrcweir    const short CUSTOM5         = 29;
192cdf0e10cSrcweir
193cdf0e10cSrcweir    // DocMerge from idl: value com::sun::star::text::BibliographyDataField::ISBN
194cdf0e10cSrcweir    /** This field contains the ISBN data of the publishing.
195cdf0e10cSrcweir     */
196cdf0e10cSrcweir    const short ISBN            = 30;
197cdf0e10cSrcweir};
198cdf0e10cSrcweir//=============================================================================
199cdf0e10cSrcweir
200cdf0e10cSrcweir}; }; }; };
201cdf0e10cSrcweir
202cdf0e10cSrcweir#endif
203