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 .
22 #define COLUMN_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Column Handler"
23 #define INFOTIP_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Infotip Handler"
24 #define PROPSHEET_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Property Sheet Handler"
25 #define THUMBVIEWER_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Thumbnail Viewer"
27 #define META_CONTENT_NAME "meta.xml"
28 #define DOC_CONTENT_NAME "content.xml"
30 #define EMPTY_STRING L""
33 #define META_INFO_TITLE L"title"
34 #define META_INFO_AUTHOR L"initial-creator"
35 #define META_INFO_SUBJECT L"subject"
36 #define META_INFO_KEYWORDS L"keywords"
37 #define META_INFO_KEYWORD L"keyword"
38 #define META_INFO_DESCRIPTION L"description"
40 #define META_INFO_PAGES L"page-count"
41 #define META_INFO_TABLES L"table-count"
42 #define META_INFO_DRAWS L"image-count"
43 #define META_INFO_OBJECTS L"object-count"
44 #define META_INFO_PARAGRAPHS L"paragraph-count"
45 #define META_INFO_WORDS L"word-count"
46 #define META_INFO_CHARACTERS L"character-count"
47 #define META_INFO_CELLS L"cell-count"
48 #define META_INFO_DOCUMENT_STATISTIC L"document-statistic"
49 #define META_INFO_MODIFIED L"date"
50 #define META_INFO_DOCUMENT_NUMBER L"editing-cycles"
51 #define META_INFO_EDITING_TIME L"editing-duration"
53 #define META_INFO_LANGUAGE L"language"
54 #define META_INFO_CREATOR L"creator"
55 #define META_INFO_CREATION L"creation-date"
56 #define META_INFO_GENERATOR L"generator"
59 #define CONTENT_TEXT_A L"a"
60 #define CONTENT_TEXT_P L"p"
61 #define CONTENT_TEXT_H L"h"
62 #define CONTENT_TEXT_SPAN L"span"
63 #define CONTENT_TEXT_SEQUENCE L"sequence"
64 #define CONTENT_TEXT_BOOKMARK_REF L"bookmark-ref"
65 #define CONTENT_TEXT_INDEX_TITLE_TEMPLATE L"index-title-template"
66 #define CONTENT_TEXT_STYLENAME L"style-name"
68 #define CONTENT_STYLE_STYLE L"style"
69 #define CONTENT_STYLE_STYLE_NAME L"name"
70 #define CONTENT_STYLE_PROPERTIES L"properties"
71 #define CONTENT_TEXT_STYLE_PROPERTIES L"text-properties" // added for OASIS Open Office XML format.
72 #define CONTENT_STYLE_PROPERTIES_LANGUAGE L"language"
73 #define CONTENT_STYLE_PROPERTIES_COUNTRY L"country"
74 #define CONTENT_STYLE_PROPERTIES_LANGUAGEASIAN L"language-asian"
75 #define CONTENT_STYLE_PROPERTIES_COUNTRYASIAN L"country-asian"
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */