1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_INC_FMOBJ_HXX
20 #define INCLUDED_SVX_SOURCE_INC_FMOBJ_HXX
22 #include <svx/svdouno.hxx>
23 #include <com/sun/star/container/XIndexContainer.hpp>
24 #include <com/sun/star/form/XForms.hpp>
25 #include <com/sun/star/script/ScriptEventDescriptor.hpp>
30 class SVX_DLLPUBLIC FmFormObj
: public SdrUnoObj
32 FmFormObj( const FmFormObj
& ) = delete;
34 css::uno::Sequence
< css::script::ScriptEventDescriptor
> aEvts
; // events of the object
35 css::uno::Sequence
< css::script::ScriptEventDescriptor
> m_aEventsHistory
;
36 // valid if and only if m_pEnvironmentHistory != NULL, this are the events which we're set when
37 // m_pEnvironmentHistory was created
39 // information for the control environment is only maintained if an object is not in an
41 css::uno::Reference
< css::container::XIndexContainer
> m_xParent
;
42 css::uno::Reference
< css::form::XForms
> m_xEnvironmentHistory
;
45 VclPtr
<OutputDevice
> m_pLastKnownRefDevice
;
46 // the last ref device we know, as set at the model
47 // only to be used for comparison with the current ref device!
50 // protected destructor
51 SAL_DLLPRIVATE
virtual ~FmFormObj() override
;
56 const OUString
& rModelName
);
57 FmFormObj(SdrModel
& rSdrModel
);
59 SAL_DLLPRIVATE
const css::uno::Reference
< css::container::XIndexContainer
>&
60 GetOriginalParent() const { return m_xParent
; }
61 SAL_DLLPRIVATE
const css::uno::Sequence
< css::script::ScriptEventDescriptor
>&
62 GetOriginalEvents() const { return aEvts
; }
63 SAL_DLLPRIVATE sal_Int32
64 GetOriginalIndex() const { return m_nPos
; }
66 SAL_DLLPRIVATE
void SetObjEnv(
67 const css::uno::Reference
< css::container::XIndexContainer
>& xForm
,
69 const css::uno::Sequence
< css::script::ScriptEventDescriptor
>& rEvts
);
70 SAL_DLLPRIVATE
void ClearObjEnv();
73 // react on page change
74 virtual void handlePageChange(SdrPage
* pOldPage
, SdrPage
* pNewPage
) override
;
76 SAL_DLLPRIVATE
virtual SdrInventor
GetObjInventor() const override
;
77 SAL_DLLPRIVATE
virtual sal_uInt16
GetObjIdentifier() const override
;
78 SAL_DLLPRIVATE
virtual void NbcReformatText() override
;
80 SAL_DLLPRIVATE
virtual FmFormObj
* CloneSdrObject(SdrModel
& rTargetModel
) const override
;
81 SAL_DLLPRIVATE FmFormObj
& operator= (const FmFormObj
& rObj
);
83 SAL_DLLPRIVATE
void clonedFrom(const FmFormObj
* _pSource
);
85 SAL_DLLPRIVATE
static css::uno::Reference
< css::uno::XInterface
> ensureModelEnv(
86 const css::uno::Reference
< css::uno::XInterface
>& _rSourceContainer
,
87 const css::uno::Reference
< css::form::XForms
>& _rTopLevelDestContainer
);
89 /** returns the FmFormObj behind the given SdrObject
91 In case the SdrObject *is* a FmFormObject, this is a simple cast. In case the SdrObject
92 is a virtual object whose referenced object is a FmFormObj, then this referenced
93 object is returned. In all other cases, NULL is returned.
95 SAL_DLLPRIVATE
static FmFormObj
* GetFormObject( SdrObject
* _pSdrObject
);
96 SAL_DLLPRIVATE
static const FmFormObj
* GetFormObject( const SdrObject
* _pSdrObject
);
98 SAL_DLLPRIVATE
virtual void SetUnoControlModel( const css::uno::Reference
< css::awt::XControlModel
>& _rxModel
) override
;
101 SAL_DLLPRIVATE
virtual bool EndCreate( SdrDragStat
& rStat
, SdrCreateCmd eCmd
) override
;
102 SAL_DLLPRIVATE
virtual void BrkCreate( SdrDragStat
& rStat
) override
;
105 /** isolates the control model from its form component hierarchy, i.e. removes it from
108 SAL_DLLPRIVATE
void impl_isolateControlModel_nothrow();
110 /** forwards the reference device of our SdrModel to the control model
112 SAL_DLLPRIVATE
void impl_checkRefDevice_nothrow( bool _force
= false );
116 #endif // _FM_FMOBJ_HXX
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */