...(for now, from LIBO_INTERNAL_CODE only). See the mail thread starting at <https://lists.freedesktop.org/archives/libreoffice/2017-January/076665.html> "Dynamic Exception Specifications" for details. Most changes have been done automatically by the rewriting loplugin:dynexcspec (after enabling the rewriting mode, to be committed shortly). The way it only removes exception specs from declarations if it also sees a definition, it identified some dead declarations-w/o-definitions (that have been removed manually) and some cases where a definition appeared in multiple include files (which have also been cleaned up manually). There's also been cases of macro paramters (that were used to abstract over exception specs) that have become unused now (and been removed). Furthermore, some code needed to be cleaned up manually (avmedia/source/quicktime/ and connectivity/source/drivers/kab/), as I had no configurations available that would actually build that code. Missing @throws documentation has not been applied in such manual clean-up. Change-Id: I3408691256c9b0c12bc5332de976743626e13960 Reviewed-on: https://gerrit.libreoffice.org/33574 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
395 lines
16 KiB
C++
395 lines
16 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_SD_INC_SDPAGE_HXX
|
|
#define INCLUDED_SD_INC_SDPAGE_HXX
|
|
|
|
#include <com/sun/star/drawing/XDrawPage.hpp>
|
|
#include <com/sun/star/presentation/FadeEffect.hpp>
|
|
#include <com/sun/star/office/XAnnotation.hpp>
|
|
|
|
#include <functional>
|
|
#include <list>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <svx/svdobj.hxx>
|
|
#include <svx/fmpage.hxx>
|
|
#include "fadedef.h"
|
|
#include "diadef.h"
|
|
#include "pres.hxx"
|
|
#include "shapelist.hxx"
|
|
#include "misc/scopelock.hxx"
|
|
#include "sddllapi.h"
|
|
|
|
namespace com { namespace sun { namespace star { namespace animations {
|
|
class XAnimationNode;
|
|
} } } }
|
|
|
|
class SfxStyleSheet;
|
|
class SdDrawDocument;
|
|
class SdrTextObj;
|
|
class SdPageLink;
|
|
class SfxItemSet;
|
|
class Paragraph;
|
|
class Outliner;
|
|
class SdStyleSheet;
|
|
|
|
namespace sd
|
|
{
|
|
class MainSequence;
|
|
}
|
|
|
|
namespace sd {
|
|
|
|
struct SD_DLLPUBLIC HeaderFooterSettings
|
|
{
|
|
bool mbHeaderVisible;
|
|
OUString maHeaderText;
|
|
|
|
bool mbFooterVisible;
|
|
OUString maFooterText;
|
|
|
|
bool mbSlideNumberVisible;
|
|
|
|
bool mbDateTimeVisible;
|
|
bool mbDateTimeIsFixed;
|
|
OUString maDateTimeText;
|
|
int meDateTimeFormat;
|
|
|
|
HeaderFooterSettings();
|
|
|
|
bool operator==( const HeaderFooterSettings& rSettings ) const;
|
|
};
|
|
|
|
typedef std::vector< css::uno::Reference< css::office::XAnnotation > > AnnotationVector;
|
|
}
|
|
|
|
namespace sd {
|
|
class UndoAnimation;
|
|
class UndoTransition;
|
|
class UndoGeoObject;
|
|
class UndoAttrObject;
|
|
}
|
|
|
|
class SD_DLLPUBLIC SdPage : public FmFormPage, public SdrObjUserCall
|
|
{
|
|
SdPage& operator=(const SdPage&) = delete;
|
|
|
|
friend class SdGenericDrawPage;
|
|
friend class SdDrawPage;
|
|
friend class sd::UndoAnimation;
|
|
friend class sd::UndoTransition;
|
|
friend class ModifyPageUndoAction;
|
|
friend class sd::UndoGeoObject;
|
|
friend class sd::UndoAttrObject;
|
|
|
|
protected:
|
|
PageKind mePageKind; ///< page type
|
|
AutoLayout meAutoLayout; ///< AutoLayout
|
|
sd::ShapeList maPresentationShapeList;///< presentation objects
|
|
sd::ScopeLock maLockAutoLayoutArrangement;
|
|
bool mbSelected; ///< selection identifier
|
|
PresChange mePresChange; ///< manual / automatic / semi automatic
|
|
double mfTime; ///< Display time in seconds
|
|
bool mbSoundOn; ///< with / without sound.
|
|
bool mbExcluded; ///< will (not) be displayed during show.
|
|
OUString maLayoutName; ///< Name of the layout
|
|
OUString maSoundFile; ///< Path to sound file (MSDOS notation).
|
|
bool mbLoopSound;
|
|
bool mbStopSound;
|
|
OUString maCreatedPageName; ///< generated page name by GetPageName.
|
|
OUString maFileName; ///< file name.
|
|
OUString maBookmarkName; ///< Bookmark name.
|
|
bool mbScaleObjects; ///< Objects should be scaled
|
|
bool mbBackgroundFullSize; ///< Background object to represent the whole page.
|
|
rtl_TextEncoding meCharSet; ///< Text encoding
|
|
sal_uInt16 mnPaperBin; ///< PaperBin
|
|
Orientation meOrientation; ///< Print orientation.
|
|
SdPageLink* mpPageLink; ///< Page link (at left sides only)
|
|
|
|
sd::AnnotationVector maAnnotations;
|
|
|
|
/** holds the smil animation sequences for this page */
|
|
css::uno::Reference< css::animations::XAnimationNode > mxAnimationNode;
|
|
|
|
/** a helper class to manipulate effects inside the main sequence */
|
|
std::shared_ptr< sd::MainSequence > mpMainSequence;
|
|
|
|
virtual css::uno::Reference< css::uno::XInterface > createUnoPage() override;
|
|
|
|
SfxItemSet* mpItems;
|
|
|
|
SfxItemSet* getOrCreateItems();
|
|
|
|
sd::HeaderFooterSettings maHeaderFooterSettings;
|
|
|
|
// new transition settings
|
|
sal_Int16 mnTransitionType;
|
|
sal_Int16 mnTransitionSubtype;
|
|
bool mbTransitionDirection;
|
|
sal_Int32 mnTransitionFadeColor;
|
|
double mfTransitionDuration;
|
|
|
|
SdPage(const SdPage& rSrcPage);
|
|
void lateInit(const SdPage& rSrcPage);
|
|
|
|
public:
|
|
|
|
SdPage(SdDrawDocument& rNewDoc, bool bMasterPage);
|
|
virtual ~SdPage() override;
|
|
virtual SdrPage* Clone() const override;
|
|
virtual SdrPage* Clone(SdrModel* pNewModel) const override;
|
|
|
|
virtual void SetSize(const Size& aSize) override;
|
|
virtual void SetBorder(sal_Int32 nLft, sal_Int32 nUpp, sal_Int32 nRgt, sal_Int32 Lwr) override;
|
|
virtual void SetLftBorder(sal_Int32 nBorder) override;
|
|
virtual void SetRgtBorder(sal_Int32 nBorder) override;
|
|
virtual void SetUppBorder(sal_Int32 nBorder) override;
|
|
virtual void SetLwrBorder(sal_Int32 nBorder) override;
|
|
virtual void SetModel(SdrModel* pNewModel) override;
|
|
virtual bool IsReadOnly() const override;
|
|
|
|
sd::ShapeList& GetPresentationShapeList() { return maPresentationShapeList; }
|
|
|
|
void EnsureMasterPageDefaultBackground();
|
|
SdrObject* CreatePresObj(PresObjKind eObjKind, bool bVertical, const Rectangle& rRect, bool bInsert=false);
|
|
SdrObject* CreateDefaultPresObj(PresObjKind eObjKind);
|
|
void DestroyDefaultPresObj(PresObjKind eObjKind);
|
|
SdrObject* GetPresObj(PresObjKind eObjKind, int nIndex = 1, bool bFuzzySearch = false );
|
|
PresObjKind GetPresObjKind(SdrObject* pObj) const;
|
|
OUString GetPresObjText(PresObjKind eObjKind) const;
|
|
SfxStyleSheet* GetStyleSheetForMasterPageBackground() const;
|
|
SfxStyleSheet* GetStyleSheetForPresObj(PresObjKind eObjKind) const;
|
|
sal_Int64 GetHashCode() const;
|
|
bool RestoreDefaultText( SdrObject* pObj );
|
|
|
|
/** @return true if the given SdrObject is inside the presentation object list */
|
|
bool IsPresObj(const SdrObject* pObj);
|
|
|
|
/** removes the given SdrObject from the presentation object list */
|
|
void RemovePresObj(const SdrObject* pObj);
|
|
|
|
/** inserts the given SdrObject into the presentation object list */
|
|
void InsertPresObj(SdrObject* pObj, PresObjKind eKind );
|
|
|
|
void SetAutoLayout(AutoLayout eLayout, bool bInit=false, bool bCreate=false);
|
|
AutoLayout GetAutoLayout() const { return meAutoLayout; }
|
|
void CreateTitleAndLayout(bool bInit=false, bool bCreate=false);
|
|
SdrObject* InsertAutoLayoutShape(SdrObject* pObj, PresObjKind eObjKind, bool bVertical, const Rectangle& rRect, bool bInit);
|
|
|
|
virtual void NbcInsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE,
|
|
const SdrInsertReason* pReason=nullptr) override;
|
|
virtual SdrObject* NbcRemoveObject(size_t nObjNum) override;
|
|
virtual SdrObject* RemoveObject(size_t nObjNum) override;
|
|
|
|
/** Also override ReplaceObject methods to realize when
|
|
objects are removed with this mechanism instead of RemoveObject*/
|
|
virtual SdrObject* NbcReplaceObject(SdrObject* pNewObj, size_t nObjNum) override;
|
|
virtual SdrObject* ReplaceObject(SdrObject* pNewObj, size_t nObjNum) override;
|
|
|
|
void SetObjText(SdrTextObj* pObj, SdrOutliner* pOutliner, PresObjKind eObjKind, const OUString& rStr );
|
|
|
|
void SetPageKind(PageKind ePgType) { mePageKind = ePgType; }
|
|
PageKind GetPageKind() const { return mePageKind; }
|
|
|
|
void SetSelected(bool bSel) { mbSelected = bSel; }
|
|
bool IsSelected() const { return mbSelected; }
|
|
|
|
void SetFadeEffect(css::presentation::FadeEffect eNewEffect);
|
|
css::presentation::FadeEffect GetFadeEffect() const;
|
|
|
|
void SetPresChange(PresChange eChange) { mePresChange = eChange; }
|
|
PresChange GetPresChange() const { return mePresChange; }
|
|
|
|
void SetTime(double fNewTime) { mfTime = fNewTime; }
|
|
double GetTime() const { return mfTime; }
|
|
|
|
void SetSound(bool bNewSoundOn) { mbSoundOn = bNewSoundOn; }
|
|
bool IsSoundOn() const { return mbSoundOn; }
|
|
|
|
void SetExcluded(bool bNewExcluded) { mbExcluded = bNewExcluded; }
|
|
bool IsExcluded() const { return mbExcluded; }
|
|
|
|
bool IsScaleObjects() const { return mbScaleObjects; }
|
|
|
|
void SetSoundFile(const OUString& rStr) { maSoundFile = rStr; }
|
|
const OUString& GetSoundFile() const { return maSoundFile; }
|
|
|
|
void SetLoopSound( bool bLoopSound ) { mbLoopSound = bLoopSound; }
|
|
bool IsLoopSound() const { return mbLoopSound; }
|
|
|
|
void SetStopSound( bool bStopSound ) { mbStopSound = bStopSound; }
|
|
bool IsStopSound() const { return mbStopSound; }
|
|
|
|
sal_Int16 getTransitionType() const { return mnTransitionType;}
|
|
void setTransitionType( sal_Int16 nTransitionType );
|
|
|
|
sal_Int16 getTransitionSubtype() const { return mnTransitionSubtype;}
|
|
void setTransitionSubtype( sal_Int16 nTransitionSubtype );
|
|
|
|
bool getTransitionDirection() const { return mbTransitionDirection;}
|
|
void setTransitionDirection( bool bTransitionbDirection );
|
|
|
|
sal_Int32 getTransitionFadeColor() const { return mnTransitionFadeColor;}
|
|
void setTransitionFadeColor( sal_Int32 nTransitionFadeColor );
|
|
|
|
double getTransitionDuration() const { return mfTransitionDuration;}
|
|
void setTransitionDuration( double fTranstionDuration );
|
|
|
|
virtual void Changed(const SdrObject& rObj, SdrUserCallType eType,
|
|
const Rectangle& rOldBoundRect) override;
|
|
|
|
void SetLayoutName(const OUString& aName);
|
|
virtual OUString GetLayoutName() const override { return maLayoutName; }
|
|
|
|
void SetFileName(const OUString& aName) { maFileName = aName; }
|
|
const OUString& GetFileName() const { return maFileName; }
|
|
void SetBookmarkName(const OUString& aName) { maBookmarkName = aName; }
|
|
const OUString& GetBookmarkName() const { return maBookmarkName; }
|
|
|
|
void ConnectLink();
|
|
void DisconnectLink();
|
|
|
|
void ScaleObjects(const Size& rNewPageSize, const Rectangle& rNewBorderRect,
|
|
bool bScaleAllObj);
|
|
|
|
const OUString& GetName() const;
|
|
OUString GetRealName() const { return FmFormPage::GetName(); };
|
|
|
|
void SetPresentationLayout(const OUString& rLayoutName,
|
|
bool bReplaceStyleSheets = true,
|
|
bool bSetMasterPage = true,
|
|
bool bReverseOrder = false);
|
|
void EndListenOutlineText();
|
|
|
|
void SetBackgroundFullSize( bool bIn );
|
|
bool IsBackgroundFullSize() const { return mbBackgroundFullSize; }
|
|
|
|
void SetPaperBin(sal_uInt16 nBin) { mnPaperBin = nBin; }
|
|
sal_uInt16 GetPaperBin() const { return mnPaperBin; }
|
|
virtual void SetOrientation(Orientation eOrient) override;
|
|
virtual Orientation GetOrientation() const override;
|
|
|
|
virtual SfxStyleSheet* GetTextStyleSheetForObject( SdrObject* pObj ) const override;
|
|
|
|
bool setAlienAttributes( const css::uno::Any& rAttributes );
|
|
void getAlienAttributes( css::uno::Any& rAttributes );
|
|
|
|
/** @return the main animation node
|
|
|
|
@throws css::uno::RuntimeException
|
|
*/
|
|
css::uno::Reference< css::animations::XAnimationNode > const & getAnimationNode();
|
|
|
|
/** sets the main animation node
|
|
|
|
@throws css::uno::RuntimeException
|
|
*/
|
|
void setAnimationNode( css::uno::Reference< css::animations::XAnimationNode >& xNode );
|
|
|
|
/// @return a helper class to manipulate effects inside the main sequence
|
|
std::shared_ptr< sd::MainSequence > const & getMainSequence();
|
|
|
|
/** quick check if this slide has an animation node.
|
|
This can be used to have a cost free check if there are no animations ad this slide.
|
|
If it returns true this does not mean that there are animations available.
|
|
*/
|
|
bool hasAnimationNode() const;
|
|
|
|
/// @return the SdPage implementation for the given XDrawPage or 0 if not available
|
|
static SdPage* getImplementation( const css::uno::Reference< css::drawing::XDrawPage >& xPage );
|
|
|
|
/** removes all custom animations for the given shape */
|
|
void removeAnimations( const SdrObject* pObj );
|
|
|
|
/** Set the name of the page and broadcast a model change.
|
|
*/
|
|
void SetName (const OUString& rName);
|
|
|
|
const sd::HeaderFooterSettings& getHeaderFooterSettings() const;
|
|
void setHeaderFooterSettings( const sd::HeaderFooterSettings& rNewSettings );
|
|
|
|
/**
|
|
@return true if the object from the ViewObjectContact should
|
|
be visible on this page while rendering.
|
|
|
|
bEdit selects if visibility test is for an editing view or a final render,
|
|
like printing.
|
|
*/
|
|
virtual bool checkVisibility(
|
|
const sdr::contact::ViewObjectContact& rOriginal,
|
|
const sdr::contact::DisplayInfo& rDisplayInfo,
|
|
bool bEdit ) override;
|
|
|
|
/** callback from the sd::View when a new paragraph for one object on this page is created */
|
|
void onParagraphInserted( ::Outliner* pOutliner, Paragraph* pPara, SdrObject* pObj );
|
|
|
|
/** callback from the sd::View when a paragraph from one object on this page is removed */
|
|
void onParagraphRemoving( ::Outliner* pOutliner, Paragraph* pPara, SdrObject* pObj );
|
|
|
|
/** callback from the sd::View when an object just left text edit mode */
|
|
void onEndTextEdit( SdrObject* pObj );
|
|
|
|
/** @return the presentation style with the given helpid from this masterpage or this
|
|
slides masterpage */
|
|
SdStyleSheet* getPresentationStyle( sal_uInt32 nHelpId ) const;
|
|
|
|
/** removes all empty presentation objects from this slide */
|
|
void RemoveEmptyPresentationObjects();
|
|
|
|
Rectangle GetTitleRect() const;
|
|
Rectangle GetLayoutRect() const;
|
|
|
|
static void CalculateHandoutAreas( SdDrawDocument& rModel, AutoLayout eLayout, bool bHorizontal, std::vector< Rectangle >& rAreas );
|
|
|
|
/** Set the "precious" flag to the given value.
|
|
*/
|
|
void SetPrecious (const bool bIsPrecious);
|
|
|
|
/** The "precious" flag is used for master pages to prevent some unused
|
|
master pages from being deleted automatically. For pages
|
|
other than master pages this flag can be ignored.
|
|
@return
|
|
When this method returns <TRUE/> for a master page then this
|
|
master page should not be deleted automatically.
|
|
*/
|
|
bool IsPrecious() const { return mbIsPrecious; }
|
|
|
|
void createAnnotation( css::uno::Reference< css::office::XAnnotation >& xAnnotation );
|
|
void addAnnotation( const css::uno::Reference< css::office::XAnnotation >& xAnnotation, int nIndex );
|
|
void removeAnnotation( const css::uno::Reference< css::office::XAnnotation >& xAnnotation );
|
|
const sd::AnnotationVector& getAnnotations() const { return maAnnotations; }
|
|
OString stringify() const;
|
|
virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const override;
|
|
|
|
private:
|
|
bool mbIsPrecious;
|
|
|
|
/** clone the animations from this and set them to rTargetPage
|
|
*/
|
|
void cloneAnimations( SdPage& rTargetPage ) const;
|
|
|
|
/** called before a shape is removed or replaced from this slide */
|
|
void onRemoveObject( SdrObject* pObject );
|
|
};
|
|
|
|
#endif // INCLUDED_SD_INC_SDPAGE_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|