fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / xmloff / source / forms / formenums.hxx
blob0b391e2f9d0cd1b83536ce9e9759eefe6ba26e0f
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 _XMLOFF_FORMENUMS_HXX_
21 #define _XMLOFF_FORMENUMS_HXX_
23 #include <xmloff/xmlement.hxx>
25 //.........................................................................
26 namespace xmloff
28 //.........................................................................
30 //=====================================================================
31 //= OEnumMapper
32 //=====================================================================
33 class OEnumMapper
35 public:
36 enum EnumProperties
38 epSubmitEncoding = 0,
39 epSubmitMethod,
40 epCommandType,
41 epNavigationType,
42 epTabCyle,
43 epButtonType,
44 epListSourceType,
45 epCheckState,
46 epTextAlign,
47 epBorderWidth,
48 epFontEmphasis,
49 epFontRelief,
50 epListLinkageType,
51 epOrientation,
52 epVisualEffect,
53 epImagePosition,
54 epImageAlign,
55 epImageScaleMode,
57 KNOWN_ENUM_PROPERTIES
60 private:
61 static const SvXMLEnumMapEntry* s_pEnumMap[KNOWN_ENUM_PROPERTIES];
63 public:
64 static const SvXMLEnumMapEntry* getEnumMap(EnumProperties _eProperty);
67 //.........................................................................
68 } // namespace xmloff
69 //.........................................................................
71 #endif // _XMLOFF_FORMENUMS_HXX_
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */