tdf#151073 - enable firebird for appstore build w/o experimental mode
[LibreOffice.git] / include / svx / unoprov.hxx
blob204b737edd97847b8e9dc2bbbf94a58e12397b9e
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 INCLUDED_SVX_UNOPROV_HXX
21 #define INCLUDED_SVX_UNOPROV_HXX
23 #include <config_options.h>
24 #include <com/sun/star/uno/Sequence.hxx>
25 #include <svl/itemprop.hxx>
26 #include <svx/svxdllapi.h>
27 #include <editeng/unoipset.hxx>
28 #include <rtl/ref.hxx>
29 #include <memory>
30 #include <optional>
32 class SvxItemPropertySet;
33 class SfxItemPool;
34 enum class SdrObjKind : sal_uInt16;
36 /**
37 * class UHashMap
39 class UHashMap
41 UHashMap() = delete;
42 public:
43 static std::optional<SdrObjKind> getId( const OUString& rCompareString );
44 static OUString getNameFromId (SdrObjKind nId);
45 static css::uno::Sequence< OUString > getServiceNames();
48 /**
49 * Sorter
52 #define SVXMAP_SHAPE 0
53 #define SVXMAP_CONNECTOR 1
54 #define SVXMAP_DIMENSIONING 2
55 #define SVXMAP_CIRCLE 3
56 #define SVXMAP_POLYPOLYGON 4
57 #define SVXMAP_GRAPHICOBJECT 5
58 #define SVXMAP_3DSCENEOBJECT 6
59 #define SVXMAP_3DCUBEOBJECT 7
60 #define SVXMAP_3DSPHEREOBJECT 8
61 #define SVXMAP_3DLATHEOBJECT 9
62 #define SVXMAP_3DEXTRUDEOBJECT 10
63 #define SVXMAP_3DPOLYGONOBJECT 11
64 #define SVXMAP_ALL 12
65 #define SVXMAP_GROUP 13
66 #define SVXMAP_CAPTION 14
67 #define SVXMAP_OLE2 15
68 #define SVXMAP_PLUGIN 16
69 #define SVXMAP_FRAME 17
70 #define SVXMAP_APPLET 18
71 #define SVXMAP_CONTROL 19
72 #define SVXMAP_TEXT 20
73 #define SVXMAP_CUSTOMSHAPE 21
74 #define SVXMAP_MEDIA 22
75 #define SVXMAP_TABLE 23
76 #define SVXMAP_PAGE 24
77 #define SVXMAP_END 25 // last+1 !
79 /**
80 * SvxUnoPropertyMapProvider
83 class SVXCORE_DLLPUBLIC SvxUnoPropertyMapProvider
85 o3tl::span<SfxItemPropertyMapEntry const> aMapArr[SVXMAP_END];
86 std::unique_ptr<SvxItemPropertySet> aSetArr[SVXMAP_END];
87 public:
88 SvxUnoPropertyMapProvider();
89 ~SvxUnoPropertyMapProvider();
90 o3tl::span<const SfxItemPropertyMapEntry> GetMap(sal_uInt16 nPropertyId);
91 const SvxItemPropertySet* GetPropertySet(sal_uInt16 nPropertyId, SfxItemPool& rPool);
94 /**
95 * class SvxPropertySetInfoPool
98 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS = 0;
99 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS_WRITER = 1;
100 const sal_Int32 SVXUNO_SERVICEID_LASTID = 1;
102 namespace comphelper { class PropertySetInfo; }
104 class SvxPropertySetInfoPool
106 public:
107 UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) static rtl::Reference<comphelper::PropertySetInfo> const & getOrCreate( sal_Int32 nServiceId ) noexcept;
109 private:
110 static rtl::Reference<comphelper::PropertySetInfo> mxInfos[SVXUNO_SERVICEID_LASTID+1];
113 #endif
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */