1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_text_BibliographyDataType_idl__
28#define __com_sun_star_text_BibliographyDataType_idl__
29
30//=============================================================================
31
32 module com {  module sun {  module star {  module text {
33//=============================================================================
34
35// DocMerge from idl: constants com::sun::star::text::BibliographyDataType
36/** These values define the type of bibliographic data like book, journal, magazine, etc.
37 */
38published constants BibliographyDataType
39{
40	//-------------------------------------------------------------------------
41
42	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::ARTICLE
43	/** An article from a journal or magazine.
44	 */
45	const short ARTICLE 		= 0;
46
47	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::BOOK
48	/** A book with an explicit publisher.
49	 */
50	const short BOOK 			= 1;
51
52	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::BOOKLET
53	/** A work that is printed and bound, but without a named publisher or sponsoring institution.
54	 */
55	const short BOOKLET 		= 2;
56
57	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CONFERENCE
58	/** An article in the proceedings of a conference. This entry is identical to the 'inproceedings'
59	entry and is included for compatibility with BiBTex.
60	 */
61	const short CONFERENCE 		= 3;
62
63	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::INBOOK
64	/** A part of a book, which may be a chapter and/or a range of pages.
65	 */
66	const short INBOOK 			= 4;
67
68	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::INCOLLECTION
69	/** A part of a book with its own title.
70	 */
71	const short INCOLLECTION 	= 5;
72
73	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::INPROCEEDINGS
74	/** An article in the proceedings of a conference.
75	 */
76	const short INPROCEEDINGS 	= 6;
77
78	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::JOURNAL
79	/** A journal or magazine.
80	 */
81	const short JOURNAL 		= 7;
82
83	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::MANUAL
84	/** Technical documentation.
85	 */
86	const short MANUAL 			= 8;
87
88	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::MASTERSTHESIS
89	/** A Master's thesis.
90	 */
91	const short MASTERSTHESIS 	= 9;
92
93	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::MISC
94	/** This type is used when nothing else seems appropriate.
95	 */
96	const short MISC 			= 10;
97
98	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::PHDTHESIS
99	/** A PhD thesis.
100	 */
101	const short PHDTHESIS 		= 11;
102
103	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::PROCEEDINGS
104	/** The proceedings of a conference.
105	 */
106	const short PROCEEDINGS 	= 12;
107
108	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::TECHREPORT
109	/** A report published by a school or other institution, usually numbered within a series.
110	 */
111	const short TECHREPORT 		= 13;
112
113	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::UNPUBLISHED
114	/** A document with an author and title, but not formally published.
115	 */
116	const short UNPUBLISHED 	= 14;
117
118	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::EMAIL
119	/** An eMail document
120	 */
121	const short EMAIL 			= 15;
122
123	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::WWW
124	/** A Web document
125	 */
126	const short WWW 			= 16;
127
128	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CUSTOM1
129	/** A user defined document type
130	 */
131	const short CUSTOM1 		= 17;
132
133	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CUSTOM2
134	/** A user defined document type
135	 */
136	const short CUSTOM2 		= 18;
137
138	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CUSTOM3
139	/** A user defined document type
140	 */
141	const short CUSTOM3 		= 19;
142
143	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CUSTOM4
144	/** A user defined document type
145	 */
146	const short CUSTOM4 		= 20;
147
148	// DocMerge from idl: value com::sun::star::text::BibliographyDataType::CUSTOM5
149	/** A user defined document type
150	 */
151	const short CUSTOM5 		= 21;
152};
153//=============================================================================
154
155}; }; }; };
156
157#endif
158