LibreOffice Module shell (master) 1
config.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_SHELL_INC_INTERNAL_CONFIG_HXX
21#define INCLUDED_SHELL_INC_INTERNAL_CONFIG_HXX
22
23#define COLUMN_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Column Handler"
24#define INFOTIP_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Infotip Handler"
25#define PROPSHEET_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Property Sheet Handler"
26#define THUMBVIEWER_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Thumbnail Viewer"
27
28#define META_CONTENT_NAME "meta.xml"
29#define DOC_CONTENT_NAME "content.xml"
30
31#define EMPTY_STRING L""
32#define SPACE L" "
33#define LF L"\n"
34#define META_INFO_TITLE L"title"
35#define META_INFO_AUTHOR L"initial-creator"
36#define META_INFO_SUBJECT L"subject"
37#define META_INFO_KEYWORDS L"keywords"
38#define META_INFO_KEYWORD L"keyword"
39#define META_INFO_DESCRIPTION L"description"
40
41#define META_INFO_PAGES L"page-count"
42#define META_INFO_TABLES L"table-count"
43#define META_INFO_DRAWS L"image-count"
44#define META_INFO_OBJECTS L"object-count"
45#define META_INFO_PARAGRAPHS L"paragraph-count"
46#define META_INFO_WORDS L"word-count"
47#define META_INFO_CHARACTERS L"character-count"
48#define META_INFO_CELLS L"cell-count"
49#define META_INFO_DOCUMENT_STATISTIC L"document-statistic"
50#define META_INFO_MODIFIED L"date"
51#define META_INFO_DOCUMENT_NUMBER L"editing-cycles"
52#define META_INFO_EDITING_TIME L"editing-duration"
53
54#define META_INFO_LANGUAGE L"language"
55#define META_INFO_CREATOR L"creator"
56#define META_INFO_CREATION L"creation-date"
57#define META_INFO_GENERATOR L"generator"
58
59
60#define CONTENT_TEXT_A L"a"
61#define CONTENT_TEXT_P L"p"
62#define CONTENT_TEXT_H L"h"
63#define CONTENT_TEXT_SPAN L"span"
64#define CONTENT_TEXT_SEQUENCE L"sequence"
65#define CONTENT_TEXT_BOOKMARK_REF L"bookmark-ref"
66#define CONTENT_TEXT_INDEX_TITLE_TEMPLATE L"index-title-template"
67#define CONTENT_TEXT_STYLENAME L"style-name"
68
69#define CONTENT_STYLE_STYLE L"style"
70#define CONTENT_STYLE_STYLE_NAME L"name"
71#define CONTENT_STYLE_PROPERTIES L"properties"
72#define CONTENT_TEXT_STYLE_PROPERTIES L"text-properties" // added for OASIS Open Office XML format.
73#define CONTENT_STYLE_PROPERTIES_LANGUAGE L"language"
74#define CONTENT_STYLE_PROPERTIES_COUNTRY L"country"
75#define CONTENT_STYLE_PROPERTIES_LANGUAGEASIAN L"language-asian"
76#define CONTENT_STYLE_PROPERTIES_COUNTRYASIAN L"country-asian"
77
78#endif
79
80/* vim:set shiftwidth=4 softtabstop=4 expandtab: */