Bump for 3.6-28
[LibreOffice.git] / offapi / com / sun / star / style / ParagraphStyleCategory.idl
blob962ce3b65babef7880bfc673652e5d3c36c140a5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef __com_sun_star_style_ParagraphStyleCategory_idl__
30 #define __com_sun_star_style_ParagraphStyleCategory_idl__
32 //=============================================================================
34 module com { module sun { module star { module style {
35 //=============================================================================
37 // DocMerge from idl: constants com::sun::star::style::ParagraphStyleCategory
38 /** These constants are used to specify the category of paragraph styles in text documents.
40 published constants ParagraphStyleCategory
42 //-------------------------------------------------------------------------
44 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::TEXT
45 /** is applied to styles that are used for common text.
47 const short TEXT = 0;
48 //-------------------------------------------------------------------------
50 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::CHAPTER
51 /** is applied to styles that are used as headings.
53 const short CHAPTER = 1;
54 //-------------------------------------------------------------------------
56 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::LIST
57 /** is applied to styles that used in numberings and lists.
59 const short LIST = 2;
60 //-------------------------------------------------------------------------
62 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::INDEX
63 /** is applied to styles that are used in indexes.
65 const short INDEX = 3;
66 //-------------------------------------------------------------------------
68 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::EXTRA
69 /** is applied to styles that are used in special regions like headers, footers, and footnote text.
71 const short EXTRA = 4;
72 //-------------------------------------------------------------------------
74 // DocMerge from idl: value com::sun::star::style::ParagraphStyleCategory::HTML
75 /** is applied to styles that are used to support HTML.
77 const short HTML = 5;
80 //=============================================================================
82 }; }; }; };
84 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */