Bump version to 6.4-15
[LibreOffice.git] / include / svx / unoprov.hxx
blob90e830ee3ed5a0bf8384f05363859e351a0739ed
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 <com/sun/star/uno/Sequence.hxx>
24 #include <svl/itemprop.hxx>
25 #include <svx/svxdllapi.h>
26 #include <editeng/unoipset.hxx>
27 #include <rtl/ref.hxx>
28 #include <memory>
31 class SvxItemPropertySet;
32 class SfxItemPool;
34 /**
35 * class UHashMap
38 #define UHASHMAP_NOTFOUND sal::static_int_cast< sal_uInt32 >(~0)
39 class UHashMap
41 UHashMap() = delete;
42 public:
43 static sal_uInt32 getId( const OUString& rCompareString );
44 static OUString getNameFromId (sal_uInt32 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 SVX_DLLPUBLIC SvxUnoPropertyMapProvider
85 SfxItemPropertyMapEntry const * aMapArr[SVXMAP_END];
86 std::unique_ptr<SvxItemPropertySet> aSetArr[SVXMAP_END];
87 public:
88 SvxUnoPropertyMapProvider();
89 ~SvxUnoPropertyMapProvider();
90 const SfxItemPropertyMapEntry* GetMap(sal_uInt16 nPropertyId);
91 const SvxItemPropertySet* GetPropertySet(sal_uInt16 nPropertyId, SfxItemPool& rPool);
94 /**
95 * Globals
98 const sal_Int16 OBJ_OLE2_APPLET = 100;
99 const sal_Int16 OBJ_OLE2_PLUGIN = 101;
101 #define E3D_INVENTOR_FLAG (0x80000000)
104 * class SvxPropertySetInfoPool
107 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS = 0;
108 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS_WRITER = 1;
109 const sal_Int32 SVXUNO_SERVICEID_LASTID = 1;
111 namespace comphelper { class PropertySetInfo; }
113 class SvxPropertySetInfoPool
115 public:
116 SVX_DLLPUBLIC static rtl::Reference<comphelper::PropertySetInfo> const & getOrCreate( sal_Int32 nServiceId ) throw();
118 private:
119 static rtl::Reference<comphelper::PropertySetInfo> mxInfos[SVXUNO_SERVICEID_LASTID+1];
122 #endif
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */