LibreOffice Module svx (master) 1
fmobj.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef INCLUDED_SVX_SOURCE_INC_FMOBJ_HXX
20#define INCLUDED_SVX_SOURCE_INC_FMOBJ_HXX
21
22#include <config_options.h>
23#include <svx/svdouno.hxx>
24#include <com/sun/star/container/XIndexContainer.hpp>
25#include <com/sun/star/form/XForms.hpp>
26#include <com/sun/star/script/ScriptEventDescriptor.hpp>
27
28
29// FmFormObj
30
31class UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) FmFormObj final : public SdrUnoObj
32{
33 FmFormObj( const FmFormObj& ) = delete;
34
35 css::uno::Sequence< css::script::ScriptEventDescriptor > aEvts; // events of the object
36 css::uno::Sequence< css::script::ScriptEventDescriptor> m_aEventsHistory;
37 // valid if and only if m_pEnvironmentHistory != NULL, this are the events which we're set when
38 // m_pEnvironmentHistory was created
39
40 // information for the control environment is only maintained if an object is not in an
41 // object list
42 css::uno::Reference< css::container::XIndexContainer> m_xParent;
43 css::uno::Reference< css::form::XForms > m_xEnvironmentHistory;
44 sal_Int32 m_nPos;
45
46 VclPtr<OutputDevice> m_pLastKnownRefDevice;
47 // the last ref device we know, as set at the model
48 // only to be used for comparison with the current ref device!
49
50 // protected destructor
51 SAL_DLLPRIVATE virtual ~FmFormObj() override;
52
53public:
54 FmFormObj(
55 SdrModel& rSdrModel,
56 const OUString& rModelName);
57 FmFormObj(SdrModel& rSdrModel);
58 // Copy constructor
59 FmFormObj(SdrModel& rSdrModel, FmFormObj const & rSource);
60
61 SAL_DLLPRIVATE const css::uno::Reference< css::container::XIndexContainer>&
62 GetOriginalParent() const { return m_xParent; }
63 SAL_DLLPRIVATE const css::uno::Sequence< css::script::ScriptEventDescriptor >&
64 GetOriginalEvents() const { return aEvts; }
65 SAL_DLLPRIVATE sal_Int32
66 GetOriginalIndex() const { return m_nPos; }
67
68 SAL_DLLPRIVATE void SetObjEnv(
69 const css::uno::Reference< css::container::XIndexContainer>& xForm,
70 const sal_Int32 nIdx,
71 const css::uno::Sequence< css::script::ScriptEventDescriptor >& rEvts );
72 SAL_DLLPRIVATE void ClearObjEnv();
73
74public:
75 // react on page change
76 virtual void handlePageChange(SdrPage* pOldPage, SdrPage* pNewPage) override;
77
78 SAL_DLLPRIVATE virtual SdrInventor GetObjInventor() const override;
79 SAL_DLLPRIVATE virtual SdrObjKind GetObjIdentifier() const override;
80 SAL_DLLPRIVATE virtual void NbcReformatText() override;
81
82 SAL_DLLPRIVATE virtual rtl::Reference<SdrObject> CloneSdrObject(SdrModel& rTargetModel) const override;
83
84 SAL_DLLPRIVATE static css::uno::Reference< css::uno::XInterface> ensureModelEnv(
85 const css::uno::Reference< css::uno::XInterface>& _rSourceContainer,
86 const css::uno::Reference< css::form::XForms>& _rTopLevelDestContainer);
87
94 SAL_DLLPRIVATE static FmFormObj* GetFormObject( SdrObject* _pSdrObject );
95 SAL_DLLPRIVATE static const FmFormObj* GetFormObject( const SdrObject* _pSdrObject );
96
97 SAL_DLLPRIVATE virtual void SetUnoControlModel( const css::uno::Reference< css::awt::XControlModel >& _rxModel ) override;
98
99private:
100 SAL_DLLPRIVATE virtual bool EndCreate( SdrDragStat& rStat, SdrCreateCmd eCmd ) override;
101 SAL_DLLPRIVATE virtual void BrkCreate( SdrDragStat& rStat ) override;
102
106 SAL_DLLPRIVATE void impl_isolateControlModel_nothrow();
107
110 SAL_DLLPRIVATE void impl_checkRefDevice_nothrow( bool _force = false );
111};
112
113
114#endif // _FM_FMOBJ_HXX
115
116/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Abstract DrawObject.
Definition: svdobj.hxx:260
virtual SdrInventor GetObjInventor() const
Definition: svdobj.cxx:621
A SdrPage contains exactly one SdrObjList and a description of the physical page dimensions (size / m...
Definition: svdpage.hxx:379
virtual void NbcReformatText() override
Definition: svdotext.cxx:1467
virtual void BrkCreate(SdrDragStat &rStat) override
Definition: svdotxdr.cxx:226
virtual void handlePageChange(SdrPage *pOldPage, SdrPage *pNewPage) override
Definition: svdotext.cxx:480
virtual bool EndCreate(SdrDragStat &rStat, SdrCreateCmd eCmd) override
Definition: svdotxdr.cxx:210
virtual void SetUnoControlModel(const css::uno::Reference< css::awt::XControlModel > &xModel)
Definition: svdouno.cxx:414
virtual SdrObjKind GetObjIdentifier() const override
Definition: svdouno.cxx:251
virtual rtl::Reference< SdrObject > CloneSdrObject(SdrModel &rTargetModel) const override
Definition: svdouno.cxx:285
size_t m_nPos
Definition: filtnav.cxx:172
SdrInventor
Definition: svdobj.hxx:98
SdrObjKind
Definition: svdobjkind.hxx:25
SdrCreateCmd
Definition: svdtypes.hxx:27