8611f6e259
Which means we can get rid of the majestic hack of ScCaptionPtr Previously, SdrObject was manually managed, and the ownership passed around in very complicated fashion. Notes: (*) SvxShape has a strong reference to SdrObject, where previously it had a weak reference. It is now strong since otherwise the SdrObject will go away very eagerly. (*) SdrObject still has a weak reference to SvxShape (*) In the existing places that an SdrObject is being deleted, we now just clear the reference (*) instead of SwVirtFlyDrawObj removing itself from the page that contains inside it's destructor, make the call site do the removing from the page. (*) Needed to take the SolarMutex in UndoManagerHelper_Impl::impl_clear because this can be called from UNO (e.g. sfx2_complex JUnit test) and the SdrObjects need the SolarMutex when destructing. (*) handle a tricky situation with SwDrawVirtObj in the SwDrawModel destructor because the existing code wants mpDrawObj in SwAnchoredObject to be sometimes owning, sometimes not, which results in a cycle with the new code. Change-Id: I4d79df1660e386388e5d51030653755bca02a163 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138837 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
210 lines
6.5 KiB
C++
210 lines
6.5 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <com/sun/star/awt/XControlContainer.hpp>
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
#include <com/sun/star/datatransfer/DataFlavor.hpp>
|
|
#include <com/sun/star/frame/XModel.hpp>
|
|
#include <com/sun/star/util/XNumberFormatsSupplier.hpp>
|
|
#include <o3tl/deleter.hxx>
|
|
#include <svl/SfxBroadcaster.hxx>
|
|
#include <svl/hint.hxx>
|
|
#include <svx/svdobjkind.hxx>
|
|
#include <tools/gen.hxx>
|
|
#include <vcl/timer.hxx>
|
|
#include <vcl/idle.hxx>
|
|
#include <vcl/vclptr.hxx>
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <memory>
|
|
|
|
class ScrollAdaptor;
|
|
class Printer;
|
|
class KeyEvent;
|
|
class MouseEvent;
|
|
class Timer;
|
|
namespace vcl { class Window; }
|
|
|
|
namespace basctl
|
|
{
|
|
|
|
class DialogWindowLayout;
|
|
|
|
constexpr auto DLGED_PAGE_WIDTH_MIN = 1280;
|
|
constexpr auto DLGED_PAGE_HEIGHT_MIN = 1024;
|
|
|
|
// DlgEdHint
|
|
|
|
|
|
class DlgEdObj;
|
|
|
|
class DlgEdHint: public SfxHint
|
|
{
|
|
public:
|
|
enum Kind {
|
|
UNKNOWN,
|
|
WINDOWSCROLLED,
|
|
LAYERCHANGED,
|
|
OBJORDERCHANGED,
|
|
SELECTIONCHANGED,
|
|
};
|
|
|
|
private:
|
|
Kind eKind;
|
|
DlgEdObj* pDlgEdObj;
|
|
|
|
public:
|
|
DlgEdHint (Kind);
|
|
DlgEdHint (Kind, DlgEdObj* pObj);
|
|
virtual ~DlgEdHint() override;
|
|
|
|
Kind GetKind() const { return eKind; }
|
|
DlgEdObj* GetObject() const { return pDlgEdObj; }
|
|
};
|
|
|
|
|
|
// DlgEditor
|
|
|
|
|
|
class DlgEdModel;
|
|
class DlgEdPage;
|
|
class DlgEdView;
|
|
class DlgEdForm;
|
|
class DlgEdFactory;
|
|
class DlgEdFunc;
|
|
|
|
class DlgEditor: public SfxBroadcaster
|
|
{
|
|
public:
|
|
enum Mode {
|
|
INSERT,
|
|
SELECT,
|
|
TEST,
|
|
READONLY,
|
|
};
|
|
|
|
private:
|
|
DECL_LINK(MarkTimeout, Timer *, void);
|
|
|
|
static void Print( Printer* pPrinter, const OUString& rTitle );
|
|
|
|
private:
|
|
VclPtr<ScrollAdaptor> pHScroll;
|
|
VclPtr<ScrollAdaptor> pVScroll;
|
|
std::unique_ptr<DlgEdModel> pDlgEdModel; // never nullptr
|
|
DlgEdPage* pDlgEdPage; // never nullptr
|
|
std::unique_ptr<DlgEdView> pDlgEdView; // never nullptr
|
|
rtl::Reference<DlgEdForm> pDlgEdForm; // never nullptr
|
|
css::uno::Reference< css::container::XNameContainer > m_xUnoControlDialogModel;
|
|
css::uno::Reference< css::awt::XControlContainer > m_xControlContainer;
|
|
css::uno::Sequence< css::datatransfer::DataFlavor > m_ClipboardDataFlavors;
|
|
css::uno::Sequence< css::datatransfer::DataFlavor > m_ClipboardDataFlavorsResource;
|
|
css::uno::Reference< css::util::XNumberFormatsSupplier > m_xSupplier;
|
|
std::unique_ptr<DlgEdFactory, o3tl::default_delete<DlgEdFactory>> pObjFac; // never nullptr
|
|
vcl::Window& rWindow; // DialogWindow
|
|
std::unique_ptr<DlgEdFunc> pFunc;
|
|
DialogWindowLayout& rLayout;
|
|
Mode eMode;
|
|
SdrObjKind eActObj;
|
|
bool bFirstDraw;
|
|
bool bCreateOK;
|
|
tools::Rectangle aPaintRect;
|
|
bool bDialogModelChanged;
|
|
Idle aMarkIdle;
|
|
tools::Long mnPaintGuard;
|
|
css::uno::Reference< css::frame::XModel > m_xDocument;
|
|
|
|
public:
|
|
DlgEditor (
|
|
vcl::Window&, DialogWindowLayout&,
|
|
css::uno::Reference<css::frame::XModel> const& xModel,
|
|
css::uno::Reference<css::container::XNameContainer> const & xDialogModel
|
|
);
|
|
virtual ~DlgEditor() override;
|
|
|
|
vcl::Window& GetWindow() const { return rWindow; }
|
|
|
|
/** returns the control container associated with our window
|
|
@see GetWindow
|
|
@see SetWindow
|
|
*/
|
|
css::uno::Reference< css::awt::XControlContainer > const &
|
|
GetWindowControlContainer();
|
|
|
|
void SetScrollBars(ScrollAdaptor* pHScroll, ScrollAdaptor* pVScroll);
|
|
void InitScrollBars();
|
|
ScrollAdaptor* GetHScroll() const { return pHScroll; }
|
|
ScrollAdaptor* GetVScroll() const { return pVScroll; }
|
|
void DoScroll();
|
|
void UpdateScrollBars();
|
|
|
|
void SetDialog (const css::uno::Reference<css::container::XNameContainer>& xUnoControlDialogModel);
|
|
void ResetDialog ();
|
|
const css::uno::Reference< css::container::XNameContainer >& GetDialog() const
|
|
{return m_xUnoControlDialogModel;}
|
|
|
|
css::uno::Reference< css::util::XNumberFormatsSupplier > const & GetNumberFormatsSupplier();
|
|
|
|
DlgEdModel& GetModel() const { return *pDlgEdModel; }
|
|
DlgEdView& GetView() const { return *pDlgEdView; }
|
|
DlgEdPage& GetPage() const { return *pDlgEdPage; }
|
|
|
|
void ShowDialog();
|
|
|
|
bool UnmarkDialog();
|
|
bool RemarkDialog();
|
|
|
|
void SetDialogModelChanged() { bDialogModelChanged = true; }
|
|
|
|
bool IsModified () const;
|
|
void ClearModifyFlag();
|
|
|
|
void MouseButtonDown( const MouseEvent& rMEvt );
|
|
void MouseButtonUp( const MouseEvent& rMEvt );
|
|
void MouseMove( const MouseEvent& rMEvt );
|
|
void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect);
|
|
bool KeyInput( const KeyEvent& rKEvt );
|
|
|
|
void SetMode (Mode eMode);
|
|
void SetInsertObj(SdrObjKind eObj);
|
|
void CreateDefaultObject();
|
|
Mode GetMode() const { return eMode; }
|
|
bool IsCreateOK() const { return bCreateOK; }
|
|
|
|
void Cut();
|
|
void Copy();
|
|
void Paste();
|
|
void Delete();
|
|
bool IsPasteAllowed();
|
|
|
|
void ShowProperties();
|
|
void UpdatePropertyBrowserDelayed();
|
|
|
|
static void printPage( sal_Int32 nPage, Printer* pPrinter, const OUString& );
|
|
|
|
bool AdjustPageSize();
|
|
|
|
bool isInPaint() const { return mnPaintGuard > 0; }
|
|
};
|
|
|
|
} // namespace basctl
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|