Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / svx / source / unodraw / shapeimpl.hxx
blobce67e16bb5729a9681d85eb0c3a272efe886db0c
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 .
19 #ifndef INCLUDED_SVX_SOURCE_UNODRAW_SHAPEIMPL_HXX
20 #define INCLUDED_SVX_SOURCE_UNODRAW_SHAPEIMPL_HXX
22 #include <svx/unoprov.hxx>
23 #include <svx/unoshape.hxx>
25 class SvxShapeCaption : public SvxShapeText
27 public:
28 explicit SvxShapeCaption(SdrObject* pObj);
29 virtual ~SvxShapeCaption() noexcept override;
31 class SvxPluginShape : public SvxOle2Shape
33 protected:
34 // override these for special property handling in subcasses. Return true if property is handled
35 virtual bool setPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, const css::uno::Any& rValue ) override;
36 virtual bool getPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, css::uno::Any& rValue ) override;
38 public:
39 explicit SvxPluginShape(SdrObject* pObj, OUString referer);
40 virtual ~SvxPluginShape() noexcept override;
42 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
43 using SvxUnoTextRangeBase::setPropertyValue;
45 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) override;
47 virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override;
50 class SvxAppletShape : public SvxOle2Shape
52 protected:
53 // override these for special property handling in subcasses. Return true if property is handled
54 virtual bool setPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, const css::uno::Any& rValue ) override;
55 virtual bool getPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, css::uno::Any& rValue ) override;
57 public:
58 explicit SvxAppletShape(SdrObject* pObj, OUString referer);
59 virtual ~SvxAppletShape() noexcept override;
61 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
62 using SvxUnoTextRangeBase::setPropertyValue;
64 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) override;
66 virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override;
69 class SvxFrameShape : public SvxOle2Shape
71 private:
72 OUString m_sInitialFrameURL;
73 protected:
74 // override these for special property handling in subcasses. Return true if property is handled
75 virtual bool setPropertyValueImpl( const OUString& rName, const SfxItemPropertyMapEntry* pProperty, const css::uno::Any& rValue ) override;
76 virtual bool getPropertyValueImpl(const OUString& rName, const SfxItemPropertyMapEntry* pProperty,
77 css::uno::Any& rValue) override;
79 public:
80 explicit SvxFrameShape(SdrObject* pObj, OUString referer);
81 virtual ~SvxFrameShape() noexcept override;
83 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
84 using SvxUnoTextRangeBase::setPropertyValue;
86 virtual void SAL_CALL setPropertyValues( const css::uno::Sequence< OUString >& aPropertyNames, const css::uno::Sequence< css::uno::Any >& aValues ) override;
88 virtual void Create( SdrObject* pNewOpj, SvxDrawPage* pNewPage ) override;
90 virtual OUString GetAndClearInitialFrameURL() override;
93 SvxUnoPropertyMapProvider& getSvxMapProvider();
95 #endif
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */