2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 20:25:33 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2009-12-08 18:27:46 +01:00
|
|
|
|
2013-10-23 19:09:35 +02:00
|
|
|
#ifndef INCLUDED_XMLOFF_ODFFIELDS_HXX
|
|
|
|
#define INCLUDED_XMLOFF_ODFFIELDS_HXX
|
2009-11-17 12:33:55 +01:00
|
|
|
|
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_FORMTEXT "vnd.oasis.opendocument.field.FORMTEXT"
|
2019-02-14 12:33:39 +01:00
|
|
|
#define ODF_FORMFIELD_DEFAULT_LENGTH 5
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_FORMCHECKBOX "vnd.oasis.opendocument.field.FORMCHECKBOX"
|
2009-12-11 16:20:25 +01:00
|
|
|
#define ODF_FORMCHECKBOX_HELPTEXT "Checkbox_HelpText"
|
|
|
|
#define ODF_FORMCHECKBOX_NAME "Checkbox_Name"
|
|
|
|
#define ODF_FORMCHECKBOX_RESULT "Checkbox_Checked"
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_FORMDROPDOWN "vnd.oasis.opendocument.field.FORMDROPDOWN"
|
2009-12-11 16:20:25 +01:00
|
|
|
#define ODF_FORMDROPDOWN_LISTENTRY "Dropdown_ListEntry"
|
|
|
|
#define ODF_FORMDROPDOWN_RESULT "Dropdown_Selected"
|
2019-08-20 15:01:34 +02:00
|
|
|
#define ODF_FORMDROPDOWN_ENTRY_COUNT_LIMIT 25
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2019-05-31 17:34:51 +02:00
|
|
|
#define ODF_FORMDATE "vnd.oasis.opendocument.field.FORMDATE"
|
2019-06-14 22:00:07 +02:00
|
|
|
#define ODF_FORMDATE_DATEFORMAT "DateField_DateFormat" // e.g. "MM.DD.YY"
|
|
|
|
#define ODF_FORMDATE_DATEFORMAT_LANGUAGE "DateField_DateFormat_Language" // e.g. "en-US", "hu-HU"
|
|
|
|
#define ODF_FORMDATE_CURRENTDATE "DateField_CurrentDate" // date string in a specific format
|
|
|
|
#define ODF_FORMDATE_CURRENTDATE_FORMAT "YYYY-MM-DD" // Coming from MSO
|
|
|
|
#define ODF_FORMDATE_CURRENTDATE_LANGUAGE LANGUAGE_ENGLISH_US
|
2019-05-31 17:34:51 +02:00
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_TOC "vnd.oasis.opendocument.field.TOC"
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_HYPERLINK "vnd.oasis.opendocument.field.HYPERLINK"
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2009-12-08 17:15:57 +01:00
|
|
|
#define ODF_PAGEREF "vnd.oasis.opendocument.field.PAGEREF"
|
2009-11-17 12:33:55 +01:00
|
|
|
|
2010-10-12 09:57:29 +02:00
|
|
|
#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"
|
|
|
|
|
2013-10-23 19:09:35 +02:00
|
|
|
#endif // INCLUDED_XMLOFF_ODFFIELDS_HXX
|
2010-10-27 13:11:31 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|