Files
libreoffice/reportdesign/inc/UndoActions.hxx

313 lines
13 KiB
C++
Raw Normal View History

2010-10-27 12:33:13 +01:00
/* -*- 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 .
*/
2014-04-18 18:54:04 +02:00
#ifndef INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
#define INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
2007-07-09 10:56:41 +00:00
#include "dllapi.h"
#include "RptModel.hxx"
2007-07-09 10:56:41 +00:00
#include <com/sun/star/util/XModifyListener.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/PropertyChangeEvent.hpp>
#include <com/sun/star/script/ScriptEvent.hpp>
#include <com/sun/star/script/XScriptListener.hpp>
#include <com/sun/star/script/ScriptEventDescriptor.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/container/ContainerEvent.hpp>
#include <com/sun/star/report/XReportComponent.hpp>
#include <com/sun/star/report/XReportDefinition.hpp>
#include <com/sun/star/report/XGroup.hpp>
#include <com/sun/star/document/XUndoManager.hpp>
2007-07-09 10:56:41 +00:00
#include <cppuhelper/implbase3.hxx>
#include <comphelper/uno3.hxx>
#include <comphelper/sequence.hxx>
#include <svl/lstner.hxx>
2007-07-09 10:56:41 +00:00
#include <svx/svdouno.hxx>
#include <svx/svdundo.hxx>
2007-07-09 10:56:41 +00:00
#include <functional>
namespace dbaui
{
class IController;
}
namespace rptui
{
enum Action
{
Inserted = 1,
Removed = 2
};
/** Helper class to allow std::mem_fun for SAL_CALL
*/
class REPORTDESIGN_DLLPUBLIC OGroupHelper
{
::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup > m_xGroup;
OGroupHelper(const OGroupHelper&) SAL_DELETED_FUNCTION;
OGroupHelper& operator=(const OGroupHelper&) SAL_DELETED_FUNCTION;
2007-07-09 10:56:41 +00:00
public:
OGroupHelper(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup >& _xGroup)
:m_xGroup(_xGroup)
{
}
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getHeader() { return m_xGroup->getHeader(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getFooter() { return m_xGroup->getFooter(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup > getGroup() { return m_xGroup; }
inline bool getHeaderOn() { return m_xGroup->getHeaderOn(); }
inline bool getFooterOn() { return m_xGroup->getFooterOn(); }
2007-07-09 10:56:41 +00:00
static ::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection> , OGroupHelper> getMemberFunction(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection);
};
typedef com::sun::star::uno::Reference< ::com::sun::star::report::XSection > TSection;
/** Helper class to allow std::mem_fun for SAL_CALL
*/
class REPORTDESIGN_DLLPUBLIC OReportHelper
{
::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition > m_xReport;
public:
OReportHelper(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >& _xReport)
:m_xReport(_xReport)
{
}
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getReportHeader() { return m_xReport->getReportHeader(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getReportFooter() { return m_xReport->getReportFooter(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getPageHeader() { return m_xReport->getPageHeader(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getPageFooter() { return m_xReport->getPageFooter(); }
inline ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection > getDetail() { return m_xReport->getDetail(); }
inline bool getReportHeaderOn() { return m_xReport->getReportHeaderOn(); }
inline bool getReportFooterOn() { return m_xReport->getReportFooterOn(); }
inline bool getPageHeaderOn() { return m_xReport->getPageHeaderOn(); }
inline bool getPageFooterOn() { return m_xReport->getPageFooterOn(); }
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
2008-12-10 13:41:25 +00:00
2007-07-09 10:56:41 +00:00
static ::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection> , OReportHelper> getMemberFunction(const ::com::sun::star::uno::Reference< ::com::sun::star::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() );
}
~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
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC OCommentUndoAction : public SdrUndoAction
{
protected:
OUString m_strComment; // undo, redo comment
2007-07-09 10:56:41 +00:00
::dbaui::IController* m_pController;
public:
TYPEINFO_OVERRIDE();
2007-07-09 10:56:41 +00:00
OCommentUndoAction( SdrModel& rMod
,sal_uInt16 nCommentID);
virtual ~OCommentUndoAction();
2007-07-09 10:56:41 +00:00
virtual OUString GetComment() const SAL_OVERRIDE { return m_strComment; }
virtual void Undo() SAL_OVERRIDE;
virtual void Redo() SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
};
2007-07-09 10:56:41 +00:00
// OUndoContainerAction
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC OUndoContainerAction: public OCommentUndoAction
{
OUndoContainerAction(OUndoContainerAction&) SAL_DELETED_FUNCTION;
void operator =(OUndoContainerAction&) SAL_DELETED_FUNCTION;
2007-07-09 10:56:41 +00:00
protected:
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
m_xElement; // object not owned by the action
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
m_xOwnElement; // object owned by the action
::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer >
m_xContainer;
::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
m_xSection;
Action m_eAction;
public:
OUndoContainerAction(SdrModel& rMod
,Action _eAction
,const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer >& rContainer
2007-07-09 10:56:41 +00:00
,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& xElem
,sal_uInt16 _nCommentId);
2007-07-09 10:56:41 +00:00
virtual ~OUndoContainerAction();
virtual void Undo() SAL_OVERRIDE;
virtual void Redo() SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
protected:
virtual void implReInsert( );
virtual void implReRemove( );
2007-07-09 10:56:41 +00:00
};
2007-07-09 10:56:41 +00:00
// OUndoReportSectionAction
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC OUndoReportSectionAction : public OUndoContainerAction
{
OReportHelper m_aReportHelper;
::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OReportHelper> m_pMemberFunction;
public:
OUndoReportSectionAction(SdrModel& rMod
,Action _eAction
,::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OReportHelper> _pMemberFunction
,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >& _xReport
,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& xElem
,sal_uInt16 _nCommentId);
2007-07-09 10:56:41 +00:00
protected:
virtual void implReInsert( ) SAL_OVERRIDE;
virtual void implReRemove( ) SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
};
2007-07-09 10:56:41 +00:00
// OUndoGroupSectionAction
class REPORTDESIGN_DLLPUBLIC OUndoGroupSectionAction : public OUndoContainerAction
{
OGroupHelper m_aGroupHelper;
::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OGroupHelper> m_pMemberFunction;
public:
OUndoGroupSectionAction(SdrModel& rMod
,Action _eAction
,::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OGroupHelper> _pMemberFunction
,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup >& _xGroup
,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& xElem
,sal_uInt16 _nCommentId);
2007-07-09 10:56:41 +00:00
protected:
virtual void implReInsert( ) SAL_OVERRIDE;
virtual void implReRemove( ) SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
};
// ORptUndoPropertyAction
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC ORptUndoPropertyAction: public OCommentUndoAction
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> m_xObj;
OUString m_aPropertyName;
2007-07-09 10:56:41 +00:00
::com::sun::star::uno::Any m_aNewValue;
::com::sun::star::uno::Any m_aOldValue;
/** sets either the old value or the new value again at the property set.
*
* \param _bOld If set to <TRUE/> than the old value will be set otherwise the new value will be set.
*/
void setProperty(bool _bOld);
2007-07-09 10:56:41 +00:00
protected:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> getObject();
public:
ORptUndoPropertyAction(SdrModel& rMod, const ::com::sun::star::beans::PropertyChangeEvent& evt);
virtual void Undo() SAL_OVERRIDE;
virtual void Redo() SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
virtual OUString GetComment() const SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
};
2007-07-09 10:56:41 +00:00
// OUndoPropertyReportSectionAction
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC OUndoPropertyReportSectionAction : public ORptUndoPropertyAction
{
OReportHelper m_aReportHelper;
::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OReportHelper> m_pMemberFunction;
protected:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> getObject() SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
public:
OUndoPropertyReportSectionAction(SdrModel& rMod
,const ::com::sun::star::beans::PropertyChangeEvent& evt
,::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OReportHelper> _pMemberFunction
,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XReportDefinition >& _xReport
);
};
2007-07-09 10:56:41 +00:00
// OUndoPropertyGroupSectionAction
2007-07-09 10:56:41 +00:00
class REPORTDESIGN_DLLPUBLIC OUndoPropertyGroupSectionAction : public ORptUndoPropertyAction
{
OGroupHelper m_aGroupHelper;
::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OGroupHelper> m_pMemberFunction;
protected:
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> getObject() SAL_OVERRIDE;
2007-07-09 10:56:41 +00:00
public:
OUndoPropertyGroupSectionAction(SdrModel& rMod
,const ::com::sun::star::beans::PropertyChangeEvent& evt
,::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >
,OGroupHelper> _pMemberFunction
,const ::com::sun::star::uno::Reference< ::com::sun::star::report::XGroup >& _xGroup
);
};
}
2014-04-18 18:54:04 +02:00
#endif // INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
2007-07-09 10:56:41 +00:00
2010-10-27 12:33:13 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */