b617ac7322
Change-Id: I219c854b11a5bd4be3d789b93a96e045e3dca29f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173991 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> Tested-by: Jenkins
131 lines
7.1 KiB
C++
131 lines
7.1 KiB
C++
/* -*- 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 INCLUDED_COMPHELPER_DOCUMENTCONSTANTS_HXX
|
|
#define INCLUDED_COMPHELPER_DOCUMENTCONSTANTS_HXX
|
|
|
|
#include <o3tl/typed_flags_set.hxx>
|
|
#include <rtl/ustring.hxx>
|
|
|
|
// formats of SO6/7
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_WRITER_ASCII = u"application/vnd.sun.xml.writer"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_WRITER_WEB_ASCII = u"application/vnd.sun.xml.writer.web"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_WRITER_GLOBAL_ASCII = u"application/vnd.sun.xml.writer.global"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_DRAW_ASCII = u"application/vnd.sun.xml.draw"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_IMPRESS_ASCII = u"application/vnd.sun.xml.impress"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_CALC_ASCII = u"application/vnd.sun.xml.calc"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_CHART_ASCII = u"application/vnd.sun.xml.chart"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_MATH_ASCII = u"application/vnd.sun.xml.math"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_BASE_ASCII = u"application/vnd.sun.xml.base"_ustr;
|
|
|
|
// template formats of SO6/7
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_WRITER_TEMPLATE_ASCII = u"application/vnd.sun.xml.writer.template"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_DRAW_TEMPLATE_ASCII = u"application/vnd.sun.xml.draw.template"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_IMPRESS_TEMPLATE_ASCII = u"application/vnd.sun.xml.impress.template"_ustr;
|
|
inline constexpr OUString MIMETYPE_VND_SUN_XML_CALC_TEMPLATE_ASCII = u"application/vnd.sun.xml.calc.template"_ustr;
|
|
|
|
// formats of SO8
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_TEXT_ASCII = u"application/vnd.oasis.opendocument.text"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_TEXT_WEB_ASCII = u"application/vnd.oasis.opendocument.text-web"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_TEXT_GLOBAL_ASCII = u"application/vnd.oasis.opendocument.text-master"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_DRAWING_ASCII = u"application/vnd.oasis.opendocument.graphics"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_PRESENTATION_ASCII = u"application/vnd.oasis.opendocument.presentation"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_SPREADSHEET_ASCII = u"application/vnd.oasis.opendocument.spreadsheet"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_CHART_ASCII = u"application/vnd.oasis.opendocument.chart"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_FORMULA_ASCII = u"application/vnd.oasis.opendocument.formula"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_DATABASE_ASCII = u"application/vnd.oasis.opendocument.base"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_REPORT_ASCII = u"application/vnd.sun.xml.report"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_REPORT_CHART_ASCII = u"application/vnd.sun.xml.report.chart"_ustr;
|
|
|
|
// template formats of SO8
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_TEXT_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.text-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_TEXT_GLOBAL_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.text-master-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_DRAWING_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.graphics-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_PRESENTATION_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.presentation-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_SPREADSHEET_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.spreadsheet-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_CHART_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.chart-template"_ustr;
|
|
inline constexpr OUString MIMETYPE_OASIS_OPENDOCUMENT_FORMULA_TEMPLATE_ASCII = u"application/vnd.oasis.opendocument.formula-template"_ustr;
|
|
|
|
|
|
// ODF versions
|
|
inline constexpr OUString ODFVER_010_TEXT = u"1.0"_ustr;
|
|
inline constexpr OUString ODFVER_011_TEXT = u"1.1"_ustr;
|
|
inline constexpr OUString ODFVER_012_TEXT = u"1.2"_ustr;
|
|
inline constexpr OUString ODFVER_013_TEXT = u"1.3"_ustr;
|
|
inline constexpr OUString ODFVER_014_TEXT = u"1.4"_ustr;
|
|
|
|
// filter flags
|
|
// TODO/LATER: The flags should be part of the UNO specification
|
|
//
|
|
// http://www.mail-archive.com/dev@openoffice.org/msg05047.html says:
|
|
//
|
|
// I can just sum up what comes into my mind, hope I don't miss one:
|
|
//
|
|
// Import - should be self explaining
|
|
// Export - should be self explaining
|
|
// Template - deprecated
|
|
// TemplatePath - filter for a documenttemplate
|
|
// Own - one of the OOo file formats
|
|
// Alien - no zip container based format
|
|
// Preferred - preferred filter for a particular type
|
|
// 3rdPartyFilter - implemented as a UNO component
|
|
// Default - default filter for this document type
|
|
// Exotic - an unusual/legacy file-format, we don't normally see
|
|
//
|
|
// (The 3rdPartyFilter flag is here called StarONE)
|
|
//
|
|
enum class SfxFilterFlags
|
|
{
|
|
NONE = 0,
|
|
IMPORT = 0x00000001,
|
|
EXPORT = 0x00000002,
|
|
TEMPLATE = 0x00000004,
|
|
INTERNAL = 0x00000008,
|
|
TEMPLATEPATH = 0x00000010,
|
|
OWN = 0x00000020,
|
|
ALIEN = 0x00000040,
|
|
|
|
DEFAULT = 0x00000100,
|
|
SUPPORTSSELECTION = 0x00000400,
|
|
NOTINFILEDLG = 0x00001000,
|
|
|
|
OPENREADONLY = 0x00010000,
|
|
MUSTINSTALL = 0x00020000,
|
|
CONSULTSERVICE = 0x00040000,
|
|
STARONEFILTER = 0x00080000,
|
|
PACKED = 0x00100000,
|
|
EXOTIC = 0x00200000,
|
|
COMBINED = 0x00800000,
|
|
|
|
ENCRYPTION = 0x01000000, // password encryption
|
|
PASSWORDTOMODIFY = 0x02000000,
|
|
GPGENCRYPTION = 0x04000000,
|
|
PREFERED = 0x10000000,
|
|
STARTPRESENTATION = 0x20000000,
|
|
SUPPORTSSIGNING = 0x40000000,
|
|
};
|
|
|
|
namespace o3tl
|
|
{
|
|
template<> struct typed_flags<SfxFilterFlags> : is_typed_flags<SfxFilterFlags, 0x77bf157f> {};
|
|
}
|
|
|
|
#define SFX_FILTER_NOTINSTALLED (SfxFilterFlags::MUSTINSTALL | SfxFilterFlags::CONSULTSERVICE)
|
|
|
|
#endif
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|