Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / shell / inc / config.hxx
blob58b5dd4bfc3c2c1aa6e5950327cf5540c70080be
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_SHELL_INC_INTERNAL_CONFIG_HXX
21 #define INCLUDED_SHELL_INC_INTERNAL_CONFIG_HXX
23 #ifdef _AMD64_
24 #define MODULE_NAME L"shlxthdl_x64.dll"
25 #else
26 #define MODULE_NAME L"shlxthdl.dll"
27 #endif
29 #define COLUMN_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Column Handler"
30 #define INFOTIP_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Infotip Handler"
31 #define PROPSHEET_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Property Sheet Handler"
32 #define THUMBVIEWER_HANDLER_DESCRIPTIVE_NAME L"LibreOffice Thumbnail Viewer"
34 #define META_CONTENT_NAME "meta.xml"
35 #define DOC_CONTENT_NAME "content.xml"
37 #define EMPTY_STRING L""
38 #define SPACE L" "
39 #define LF L"\n"
40 #define META_INFO_TITLE L"title"
41 #define META_INFO_AUTHOR L"initial-creator"
42 #define META_INFO_SUBJECT L"subject"
43 #define META_INFO_KEYWORDS L"keywords"
44 #define META_INFO_KEYWORD L"keyword"
45 #define META_INFO_DESCRIPTION L"description"
47 #define META_INFO_PAGES L"page-count"
48 #define META_INFO_TABLES L"table-count"
49 #define META_INFO_DRAWS L"image-count"
50 #define META_INFO_OBJECTS L"object-count"
51 #define META_INFO_PARAGRAPHS L"paragraph-count"
52 #define META_INFO_WORDS L"word-count"
53 #define META_INFO_CHARACTERS L"character-count"
54 #define META_INFO_CELLS L"cell-count"
55 #define META_INFO_DOCUMENT_STATISTIC L"document-statistic"
56 #define META_INFO_MODIFIED L"date"
57 #define META_INFO_DOCUMENT_NUMBER L"editing-cycles"
58 #define META_INFO_EDITING_TIME L"editing-duration"
60 #define META_INFO_LANGUAGE L"language"
61 #define META_INFO_CREATOR L"creator"
62 #define META_INFO_CREATION L"creation-date"
63 #define META_INFO_GENERATOR L"generator"
66 #define CONTENT_TEXT_A L"a"
67 #define CONTENT_TEXT_P L"p"
68 #define CONTENT_TEXT_H L"h"
69 #define CONTENT_TEXT_SPAN L"span"
70 #define CONTENT_TEXT_SEQUENCE L"sequence"
71 #define CONTENT_TEXT_BOOKMARK_REF L"bookmark-ref"
72 #define CONTENT_TEXT_INDEX_TITLE_TEMPLATE L"index-title-template"
73 #define CONTENT_TEXT_STYLENAME L"style-name"
75 #define CONTENT_STYLE_STYLE L"style"
76 #define CONTENT_STYLE_STYLE_NAME L"name"
77 #define CONTENT_STYLE_PROPERTIES L"properties"
78 #define CONTENT_TEXT_STYLE_PROPERTIES L"text-properties" // added for OASIS Open Office XML format.
79 #define CONTENT_STYLE_PROPERTIES_LANGUAGE L"language"
80 #define CONTENT_STYLE_PROPERTIES_COUNTRY L"country"
81 #define CONTENT_STYLE_PROPERTIES_LANGUAGEASIAN L"language-asian"
82 #define CONTENT_STYLE_PROPERTIES_COUNTRYASIAN L"country-asian"
84 #endif
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */