blob: 95d2b75016be25be4a4cf6c57ff0fe1ec39f6a9e (
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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef _ODFFIELDS_HXX
#define _ODFFIELDS_HXX
#define ODF_FORMTEXT "vnd.oasis.opendocument.field.FORMTEXT"
#define ODF_FORMCHECKBOX "vnd.oasis.opendocument.field.FORMCHECKBOX"
#define ODF_FORMCHECKBOX_HELPTEXT "Checkbox_HelpText"
#define ODF_FORMCHECKBOX_NAME "Checkbox_Name"
#define ODF_FORMCHECKBOX_RESULT "Checkbox_Checked"
#define ODF_FORMDROPDOWN "vnd.oasis.opendocument.field.FORMDROPDOWN"
#define ODF_FORMDROPDOWN_LISTENTRY "Dropdown_ListEntry"
#define ODF_FORMDROPDOWN_RESULT "Dropdown_Selected"
#define ODF_TOC "vnd.oasis.opendocument.field.TOC"
#define ODF_HYPERLINK "vnd.oasis.opendocument.field.HYPERLINK"
#define ODF_PAGEREF "vnd.oasis.opendocument.field.PAGEREF"
#define ODF_UNHANDLED "vnd.oasis.opendocument.field.UNHANDLED"
#define ODF_OLE_PARAM "vnd.oasis.opendocument.field.ole"
#define ODF_ID_PARAM "vnd.oasis.opendocument.field.id"
#define ODF_CODE_PARAM "vnd.oasis.opendocument.field.code"
#define ODF_COMMENTRANGE "vnd.oasis.opendocument.field.COMMENTRANGE"
#endif /* _ODFFIELDS_HXX */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|