Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / basctl / source / inc / propbrw.hxx
blob123b477bed92704b128dedd85d625a4fc66dd641
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_BASCTL_SOURCE_INC_PROPBRW_HXX
21 #define INCLUDED_BASCTL_SOURCE_INC_PROPBRW_HXX
23 #include <sal/config.h>
25 #include <vector>
27 #include <com/sun/star/beans/XPropertySet.hpp>
28 #include <com/sun/star/frame/XFrame2.hpp>
29 #include <svl/lstner.hxx>
30 #include <svl/SfxBroadcaster.hxx>
31 #include <svx/svdmark.hxx>
32 #include "bastypes.hxx"
34 class SfxBindings;
35 class SdrView;
36 class SfxViewShell;
38 namespace basctl
41 class DialogWindowLayout;
43 class PropBrw final : public DockingWindow, public SfxListener, public SfxBroadcaster
45 private:
46 bool m_bInitialStateChange;
48 css::uno::Reference< css::frame::XFrame2 >
49 m_xMeAsFrame;
50 css::uno::Reference< css::beans::XPropertySet >
51 m_xBrowserController;
52 css::uno::Reference< css::awt::XWindow >
53 m_xBrowserComponentWindow;
54 css::uno::Reference< css::frame::XModel >
55 m_xContextDocument;
57 SdrView* pView;
58 virtual void Resize() override;
59 virtual bool Close() override;
61 typedef std::vector< css::uno::Reference< css::uno::XInterface> > InterfaceArray;
63 static css::uno::Sequence< css::uno::Reference< css::uno::XInterface > >
64 CreateMultiSelectionSequence( const SdrMarkList& _rMarkList );
65 void implSetNewObjectSequence( const css::uno::Sequence
66 < css::uno::Reference< css::uno::XInterface > >& _rObjectSeq );
68 void implSetNewObject( const css::uno::Reference< css::beans::XPropertySet >& _rxObject);
70 static OUString GetHeadlineName( const css::uno::Reference< css::beans::XPropertySet >& _rxObject);
72 public:
73 explicit PropBrw (DialogWindowLayout&);
74 virtual ~PropBrw() override;
75 virtual void dispose() override;
76 using Window::Update;
77 // note: changing the Context document to an instance other than the one given in the ctor is not supported
78 // currently
79 void Update( const SfxViewShell* pShell );
81 private:
82 void ImplUpdate( const css::uno::Reference< css::frame::XModel >& _rxContextDocument, SdrView* pView );
83 void ImplDestroyController();
84 void ImplReCreateController();
87 } // namespace basctl
89 #endif // INCLUDED_BASCTL_SOURCE_INC_PROPBRW_HXX
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */