Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / svx / unoprov.hxx
blob38a5930924987653391cbd652867de2a55be7f24
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/lang/XServiceInfo.hpp>
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>
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_POLYPOLYGONBEZIER 5
58 #define SVXMAP_GRAPHICOBJECT 6
59 #define SVXMAP_3DSCENEOBJECT 7
60 #define SVXMAP_3DCUBEOBJECT 8
61 #define SVXMAP_3DSPHEREOBJECT 9
62 #define SVXMAP_3DLATHEOBJECT 10
63 #define SVXMAP_3DEXTRUDEOBJECT 11
64 #define SVXMAP_3DPOLYGONOBJECT 12
65 #define SVXMAP_ALL 13
66 #define SVXMAP_GROUP 14
67 #define SVXMAP_CAPTION 15
68 #define SVXMAP_OLE2 16
69 #define SVXMAP_PLUGIN 17
70 #define SVXMAP_FRAME 18
71 #define SVXMAP_APPLET 19
72 #define SVXMAP_CONTROL 20
73 #define SVXMAP_TEXT 21
74 #define SVXMAP_CUSTOMSHAPE 22
75 #define SVXMAP_MEDIA 23
76 #define SVXMAP_TABLE 24
77 #define SVXMAP_PAGE 25
78 #define SVXMAP_END 26 // last+1 !
80 /**
81 * SvxUnoPropertyMapProvider
84 class SVX_DLLPUBLIC SvxUnoPropertyMapProvider
86 SfxItemPropertyMapEntry const * aMapArr[SVXMAP_END];
87 SvxItemPropertySet* aSetArr[SVXMAP_END];
88 public:
89 SvxUnoPropertyMapProvider();
90 ~SvxUnoPropertyMapProvider();
91 const SfxItemPropertyMapEntry* GetMap(sal_uInt16 nPropertyId);
92 const SvxItemPropertySet* GetPropertySet(sal_uInt16 nPropertyId, SfxItemPool& rPool);
95 /**
96 * Globals
99 const sal_Int16 OBJ_OLE2_APPLET = 100;
100 const sal_Int16 OBJ_OLE2_PLUGIN = 101;
102 #define E3D_INVENTOR_FLAG (0x80000000)
105 * class SvxPropertySetInfoPool
108 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS = 0;
109 const sal_Int32 SVXUNO_SERVICEID_COM_SUN_STAR_DRAWING_DEFAULTS_WRITER = 1;
110 const sal_Int32 SVXUNO_SERVICEID_LASTID = 1;
112 namespace comphelper { class PropertySetInfo; }
114 class SvxPropertySetInfoPool
116 public:
117 SVX_DLLPUBLIC static comphelper::PropertySetInfo* getOrCreate( sal_Int32 nServiceId ) throw();
119 private:
120 static rtl::Reference<comphelper::PropertySetInfo> mxInfos[SVXUNO_SERVICEID_LASTID+1];
123 #endif
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */