blob: 3c10e7db26a7ad12183dc48a4800e542de05c046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef CONFIG_HXX_INCLUDED
#define CONFIG_HXX_INCLUDED
#ifdef _MSC_VER
#pragma warning (disable : 4786 4503 4917)
#endif
#ifndef OS2
#include <tchar.h>
#endif
#ifdef _AMD64_
#define MODULE_NAME TEXT("shlxthdl_x64.dll")
#define MODULE_NAME_FILTER TEXT("ooofilt_x64.dll")
#else
#define MODULE_NAME TEXT("shlxthdl.dll")
#define MODULE_NAME_FILTER TEXT("ooofilt.dll")
#endif
#define COLUMN_HANDLER_DESCRIPTIVE_NAME TEXT("OpenOffice.org Column Handler")
#define INFOTIP_HANDLER_DESCRIPTIVE_NAME TEXT("OpenOffice.org Infotip Handler")
#define PROPSHEET_HANDLER_DESCRIPTIVE_NAME TEXT("OpenOffice.org Property Sheet Handler")
#define THUMBVIEWER_HANDLER_DESCRIPTIVAE_NAME TEXT("OpenOffice.org Thumbnail Viewer")
#define META_CONTENT_NAME "meta.xml"
#define DOC_CONTENT_NAME "content.xml"
#define EMPTY_STRING L""
#define SPACE L" "
#define LF L"\n"
#define META_INFO_TITLE L"title"
#define META_INFO_AUTHOR L"initial-creator"
#define META_INFO_SUBJECT L"subject"
#define META_INFO_KEYWORDS L"keywords"
#define META_INFO_KEYWORD L"keyword"
#define META_INFO_DESCRIPTION L"description"
#define META_INFO_PAGES L"page-count"
#define META_INFO_TABLES L"table-count"
#define META_INFO_DRAWS L"image-count"
#define META_INFO_OBJECTS L"object-count"
#define META_INFO_OLE_OBJECTS L"object-count"
#define META_INFO_PARAGRAPHS L"paragraph-count"
#define META_INFO_WORDS L"word-count"
#define META_INFO_CHARACTERS L"character-count"
#define META_INFO_ROWS L"row-count"
#define META_INFO_CELLS L"cell-count"
#define META_INFO_DOCUMENT_STATISTIC L"document-statistic"
#define META_INFO_MODIFIED L"date"
#define META_INFO_DOCUMENT_NUMBER L"editing-cycles"
#define META_INFO_EDITING_TIME L"editing-duration"
#define META_INFO_LANGUAGE L"language"
#define META_INFO_CREATOR L"creator"
#define META_INFO_CREATION L"creation-date"
#define META_INFO_GENERATOR L"generator"
#define CONTENT_TEXT_A L"a"
#define CONTENT_TEXT_P L"p"
#define CONTENT_TEXT_H L"h"
#define CONTENT_TEXT_SPAN L"span"
#define CONTENT_TEXT_SEQUENCE L"sequence"
#define CONTENT_TEXT_BOOKMARK_REF L"bookmark-ref"
#define CONTENT_TEXT_INDEX_TITLE_TEMPLATE L"index-title-template"
#define CONTENT_TEXT_STYLENAME L"style-name"
#define CONTENT_STYLE_STYLE L"style"
#define CONTENT_STYLE_STYLE_NAME L"name"
#define CONTENT_STYLE_PROPERTIES L"properties"
#define CONTENT_TEXT_STYLE_PROPERTIES L"text-properties" // added for OASIS Open Office XML format.
#define CONTENT_STYLE_PROPERTIES_LANGUAGE L"language"
#define CONTENT_STYLE_PROPERTIES_COUNTRY L"country"
#define CONTENT_STYLE_PROPERTIES_LANGUAGEASIAN L"language-asian"
#define CONTENT_STYLE_PROPERTIES_COUNTRYASIAN L"country-asian"
#endif
|