* all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun:⭐:resource::OfficeResourceLoader com::sun:⭐:resource::XResourceBundleLoader com::sun:⭐:resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
303 lines
11 KiB
C++
303 lines
11 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 .
|
|
*/
|
|
#ifndef INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
|
|
#define INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
|
|
|
|
#include "dllapi.h"
|
|
|
|
#include "RptModel.hxx"
|
|
|
|
#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/container/XNameContainer.hpp>
|
|
#include <com/sun/star/container/ContainerEvent.hpp>
|
|
#include <com/sun/star/report/XReportDefinition.hpp>
|
|
#include <com/sun/star/report/XGroup.hpp>
|
|
#include <com/sun/star/document/XUndoManager.hpp>
|
|
|
|
#include <comphelper/uno3.hxx>
|
|
#include <comphelper/sequence.hxx>
|
|
#include <svl/lstner.hxx>
|
|
#include <svx/svdouno.hxx>
|
|
#include <svx/svdundo.hxx>
|
|
|
|
#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
|
|
{
|
|
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() { return m_xGroup; }
|
|
|
|
bool getHeaderOn() { return m_xGroup->getHeaderOn(); }
|
|
bool getFooterOn() { return m_xGroup->getFooterOn(); }
|
|
|
|
static ::std::mem_fun_t< css::uno::Reference< css::report::XSection> , OGroupHelper> getMemberFunction(const css::uno::Reference< css::report::XSection >& _xSection);
|
|
|
|
};
|
|
|
|
/** Helper class to allow std::mem_fun for SAL_CALL
|
|
*/
|
|
class REPORTDESIGN_DLLPUBLIC 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::mem_fun_t< css::uno::Reference< css::report::XSection> , 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, const char* pCommentID);
|
|
virtual ~OCommentUndoAction() override;
|
|
|
|
virtual OUString GetComment() const override { return m_strComment; }
|
|
virtual void Undo() override;
|
|
virtual void Redo() override;
|
|
};
|
|
|
|
// OUndoContainerAction
|
|
|
|
class REPORTDESIGN_DLLPUBLIC OUndoContainerAction: public OCommentUndoAction
|
|
{
|
|
OUndoContainerAction(OUndoContainerAction&) = delete;
|
|
void operator =(OUndoContainerAction&) = 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
|
|
,const char* pCommentId);
|
|
virtual ~OUndoContainerAction() override;
|
|
|
|
virtual void Undo() override;
|
|
virtual void Redo() override;
|
|
|
|
protected:
|
|
virtual void implReInsert( );
|
|
virtual void implReRemove( );
|
|
};
|
|
|
|
|
|
// OUndoReportSectionAction
|
|
|
|
class REPORTDESIGN_DLLPUBLIC OUndoReportSectionAction : public OUndoContainerAction
|
|
{
|
|
OReportHelper m_aReportHelper;
|
|
::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OReportHelper> m_pMemberFunction;
|
|
public:
|
|
OUndoReportSectionAction(SdrModel& rMod
|
|
,Action _eAction
|
|
,::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OReportHelper> _pMemberFunction
|
|
,const css::uno::Reference< css::report::XReportDefinition >& _xReport
|
|
,const css::uno::Reference< css::uno::XInterface>& xElem
|
|
,const char* pCommentId);
|
|
|
|
protected:
|
|
virtual void implReInsert( ) override;
|
|
virtual void implReRemove( ) override;
|
|
};
|
|
|
|
|
|
// OUndoGroupSectionAction
|
|
class REPORTDESIGN_DLLPUBLIC OUndoGroupSectionAction : public OUndoContainerAction
|
|
{
|
|
OGroupHelper m_aGroupHelper;
|
|
::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OGroupHelper> m_pMemberFunction;
|
|
public:
|
|
OUndoGroupSectionAction(SdrModel& rMod
|
|
,Action _eAction
|
|
,::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OGroupHelper> _pMemberFunction
|
|
,const css::uno::Reference< css::report::XGroup >& _xGroup
|
|
,const css::uno::Reference< css::uno::XInterface>& xElem
|
|
,const char* pCommentId);
|
|
|
|
protected:
|
|
virtual void implReInsert( ) override;
|
|
virtual void implReRemove( ) override;
|
|
};
|
|
|
|
// ORptUndoPropertyAction
|
|
class REPORTDESIGN_DLLPUBLIC 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 <TRUE/> 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 REPORTDESIGN_DLLPUBLIC OUndoPropertyReportSectionAction : public ORptUndoPropertyAction
|
|
{
|
|
OReportHelper m_aReportHelper;
|
|
::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OReportHelper> m_pMemberFunction;
|
|
protected:
|
|
virtual css::uno::Reference< css::beans::XPropertySet> getObject() override;
|
|
public:
|
|
OUndoPropertyReportSectionAction(SdrModel& rMod
|
|
,const css::beans::PropertyChangeEvent& evt
|
|
,::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OReportHelper> _pMemberFunction
|
|
,const css::uno::Reference< css::report::XReportDefinition >& _xReport
|
|
);
|
|
};
|
|
|
|
|
|
// OUndoPropertyGroupSectionAction
|
|
|
|
class REPORTDESIGN_DLLPUBLIC OUndoPropertyGroupSectionAction : public ORptUndoPropertyAction
|
|
{
|
|
OGroupHelper m_aGroupHelper;
|
|
::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OGroupHelper> m_pMemberFunction;
|
|
protected:
|
|
virtual css::uno::Reference< css::beans::XPropertySet> getObject() override;
|
|
public:
|
|
OUndoPropertyGroupSectionAction(SdrModel& rMod
|
|
,const css::beans::PropertyChangeEvent& evt
|
|
,::std::mem_fun_t< css::uno::Reference< css::report::XSection >
|
|
,OGroupHelper> _pMemberFunction
|
|
,const css::uno::Reference< css::report::XGroup >& _xGroup
|
|
);
|
|
};
|
|
|
|
}
|
|
#endif // INCLUDED_REPORTDESIGN_INC_UNDOACTIONS_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|