From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- reportdesign/inc/UndoActions.hxx | 284 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 284 insertions(+) create mode 100644 reportdesign/inc/UndoActions.hxx (limited to 'reportdesign/inc/UndoActions.hxx') diff --git a/reportdesign/inc/UndoActions.hxx b/reportdesign/inc/UndoActions.hxx new file mode 100644 index 000000000..7b1fb2005 --- /dev/null +++ b/reportdesign/inc/UndoActions.hxx @@ -0,0 +1,284 @@ +/* -*- 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 . + */ +#ifndef INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX +#define INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX + +#include "dllapi.h" + +#include +#include +#include +#include + +#include + +#include + +namespace dbaui +{ + class IController; +} +namespace rptui +{ + enum Action + { + Inserted = 1, + Removed = 2 + }; + + /** Helper class to allow std::mem_fun for SAL_CALL + */ + class OGroupHelper + { + css::uno::Reference< css::report::XGroup > m_xGroup; + OGroupHelper(const OGroupHelper&) = delete; + OGroupHelper& operator=(const OGroupHelper&) = delete; + public: + OGroupHelper(const css::uno::Reference< css::report::XGroup >& _xGroup) + :m_xGroup(_xGroup) + { + } + css::uno::Reference< css::report::XSection > getHeader() { return m_xGroup->getHeader(); } + css::uno::Reference< css::report::XSection > getFooter() { return m_xGroup->getFooter(); } + const css::uno::Reference< css::report::XGroup >& getGroup() const { return m_xGroup; } + + bool getHeaderOn() { return m_xGroup->getHeaderOn(); } + bool getFooterOn() { return m_xGroup->getFooterOn(); } + + static ::std::function(OGroupHelper *)> getMemberFunction(const css::uno::Reference< css::report::XSection >& _xSection); + + }; + + /** Helper class to allow std::mem_fun for SAL_CALL + */ + class OReportHelper + { + css::uno::Reference< css::report::XReportDefinition > m_xReport; + public: + OReportHelper(const css::uno::Reference< css::report::XReportDefinition >& _xReport) + :m_xReport(_xReport) + { + } + css::uno::Reference< css::report::XSection > getReportHeader() { return m_xReport->getReportHeader(); } + css::uno::Reference< css::report::XSection > getReportFooter() { return m_xReport->getReportFooter(); } + css::uno::Reference< css::report::XSection > getPageHeader() { return m_xReport->getPageHeader(); } + css::uno::Reference< css::report::XSection > getPageFooter() { return m_xReport->getPageFooter(); } + css::uno::Reference< css::report::XSection > getDetail() { return m_xReport->getDetail(); } + + bool getReportHeaderOn() { return m_xReport->getReportHeaderOn(); } + bool getReportFooterOn() { return m_xReport->getReportFooterOn(); } + bool getPageHeaderOn() { return m_xReport->getPageHeaderOn(); } + bool getPageFooterOn() { return m_xReport->getPageFooterOn(); } + + static ::std::function(OReportHelper *)> getMemberFunction(const css::uno::Reference< css::report::XSection >& _xSection); + }; + + + //= UndoContext + + class UndoContext + { + public: + UndoContext( SfxUndoManager& i_undoManager, const OUString& i_undoTitle ) + :m_rUndoManager( i_undoManager ) + { + m_rUndoManager.EnterListAction( i_undoTitle, OUString(), 0, ViewShellId(-1) ); + } + + ~UndoContext() + { + m_rUndoManager.LeaveListAction(); + } + + private: + SfxUndoManager& m_rUndoManager; + }; + + + //= UndoSuppressor + + class UndoSuppressor + { + public: + UndoSuppressor( SfxUndoManager& i_undoManager ) + :m_rUndoManager( i_undoManager ) + { + m_rUndoManager.EnableUndo( false ); + } + + ~UndoSuppressor() + { + m_rUndoManager.EnableUndo( true ); + } + + private: + SfxUndoManager& m_rUndoManager; + }; + + + //= OCommentUndoAction + + class REPORTDESIGN_DLLPUBLIC OCommentUndoAction : public SdrUndoAction + { + protected: + OUString m_strComment; // undo, redo comment + ::dbaui::IController* m_pController; + + public: + OCommentUndoAction(SdrModel& rMod, TranslateId pCommentID); + virtual ~OCommentUndoAction() override; + + virtual OUString GetComment() const override { return m_strComment; } + virtual void Undo() override; + virtual void Redo() override; + }; + + // OUndoContainerAction + + class OUndoContainerAction: public OCommentUndoAction + { + OUndoContainerAction(OUndoContainerAction const &) = delete; + void operator =(OUndoContainerAction const &) = delete; + protected: + css::uno::Reference< css::uno::XInterface > + m_xElement; // object not owned by the action + css::uno::Reference< css::uno::XInterface > + m_xOwnElement; // object owned by the action + css::uno::Reference< css::container::XIndexContainer > + m_xContainer; + Action m_eAction; + + public: + OUndoContainerAction(SdrModel& rMod + ,Action _eAction + ,const css::uno::Reference< css::container::XIndexContainer >& rContainer + ,const css::uno::Reference< css::uno::XInterface>& xElem + ,TranslateId pCommentId); + virtual ~OUndoContainerAction() override; + + virtual void Undo() override; + virtual void Redo() override; + + protected: + virtual void implReInsert( ); + virtual void implReRemove( ); + }; + + + // OUndoReportSectionAction + + class OUndoReportSectionAction final : public OUndoContainerAction + { + OReportHelper m_aReportHelper; + ::std::function(OReportHelper *)> m_pMemberFunction; + public: + OUndoReportSectionAction(SdrModel& rMod + ,Action _eAction + ,::std::function(OReportHelper *)> _pMemberFunction + ,const css::uno::Reference< css::report::XReportDefinition >& _xReport + ,const css::uno::Reference< css::uno::XInterface>& xElem + ,TranslateId pCommentId); + + private: + virtual void implReInsert( ) override; + virtual void implReRemove( ) override; + }; + + + // OUndoGroupSectionAction + class OUndoGroupSectionAction final : public OUndoContainerAction + { + OGroupHelper m_aGroupHelper; + ::std::function(OGroupHelper *)> m_pMemberFunction; + public: + OUndoGroupSectionAction(SdrModel& rMod + ,Action _eAction + ,::std::function(OGroupHelper *)> _pMemberFunction + ,const css::uno::Reference< css::report::XGroup >& _xGroup + ,const css::uno::Reference< css::uno::XInterface>& xElem + ,TranslateId pCommentId); + + private: + virtual void implReInsert( ) override; + virtual void implReRemove( ) override; + }; + + // ORptUndoPropertyAction + class ORptUndoPropertyAction: public OCommentUndoAction + { + css::uno::Reference< css::beans::XPropertySet> m_xObj; + OUString m_aPropertyName; + css::uno::Any m_aNewValue; + css::uno::Any m_aOldValue; + + /** sets either the old value or the new value again at the property set. + * + * \param _bOld If set to than the old value will be set otherwise the new value will be set. + */ + void setProperty(bool _bOld); + protected: + virtual css::uno::Reference< css::beans::XPropertySet> getObject(); + + public: + ORptUndoPropertyAction(SdrModel& rMod, const css::beans::PropertyChangeEvent& evt); + + virtual void Undo() override; + virtual void Redo() override; + + virtual OUString GetComment() const override; + }; + + + // OUndoPropertyReportSectionAction + + class OUndoPropertyReportSectionAction final : public ORptUndoPropertyAction + { + OReportHelper m_aReportHelper; + ::std::function(OReportHelper *)> m_pMemberFunction; + + virtual css::uno::Reference< css::beans::XPropertySet> getObject() override; + public: + OUndoPropertyReportSectionAction(SdrModel& rMod + ,const css::beans::PropertyChangeEvent& evt + ,::std::function(OReportHelper *)> _pMemberFunction + ,const css::uno::Reference< css::report::XReportDefinition >& _xReport + ); + }; + + + // OUndoPropertyGroupSectionAction + + class OUndoPropertyGroupSectionAction final : public ORptUndoPropertyAction + { + OGroupHelper m_aGroupHelper; + ::std::function(OGroupHelper *)> m_pMemberFunction; + + virtual css::uno::Reference< css::beans::XPropertySet> getObject() override; + public: + OUndoPropertyGroupSectionAction(SdrModel& rMod + ,const css::beans::PropertyChangeEvent& evt + ,::std::function(OGroupHelper *)> _pMemberFunction + ,const css::uno::Reference< css::report::XGroup >& _xGroup + ); + }; + +} +#endif // INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3