Files
libreoffice/sw/source/core/inc/viewimp.hxx

343 lines
12 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by Oliver-Rainer Wittmann sw34bf06: #i117783# - Writer's implementation of XPagePrintable - apply print settings to new printing routines http://svn.apache.org/viewvc?view=revision&revision=1172115 sw34bf06: #o12311627# use <rtl_random> methods to create unique ids for list styles and list ids http://svn.apache.org/viewvc?view=revision&revision=1172112 sw34bf06 #i114725#,#i115828# - method <SwDoc::ClearDoc()> - clear list structures completely http://svn.apache.org/viewvc?view=revision&revision=1172122 i#118572 - remove ui string and help content regarding usage of Java Mail in Writer's Mail Merge as Java Mail is not used. http://svn.apache.org/viewvc?view=revision&revision=1197035 Patches contributed by Mathias Bauer cws mba34issues01: #i117718#: provide filter name in case storage of medium does not allow to detect one http://svn.apache.org/viewvc?view=revision&revision=1172350 cws mba34issues01: #i117721#: directly provide parameters retrieved from SfxMedium http://svn.apache.org/viewvc?view=revision&revision=1172353 gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 cws mba34issues01: #i117723#: convert assertion into trace http://svn.apache.org/viewvc?view=revision&revision=1172355 cws mba34issues01: #i117699#: keep layout alive until swdoc dies http://svn.apache.org/viewvc?view=revision&revision=1172362 cws mba34issues01: #i117943#: missing color attributes in RTF clipboard http://svn.apache.org/viewvc?view=revision&revision=1172363 Patch contributed by Henning Brinkmann imported patch i#103878 http://svn.apache.org/viewvc?view=revision&revision=1172109 Patches contributed by Michael Stahl sw34bf06: #i117955#: WW8 export: disable storing of section breaks in endnotes http://svn.apache.org/viewvc?view=revision&revision=1172119 Patch contributed by imacat Fixed the Asian language work count. http://svn.apache.org/viewvc?view=revision&revision=1241345 Patch contributed by Pedro Giffuni i#20878 - Add comment with BZ issue for reference. http://svn.apache.org/viewvc?view=revision&revision=1244517 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 add writerperfect dependency.
2011-03-31 10:05:04 +02:00
/*
* 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_SW_SOURCE_CORE_INC_VIEWIMP_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_VIEWIMP_HXX
#include <rtl/ustring.hxx>
#include <tools/color.hxx>
#include <svx/svdtypes.hxx>
#include <vcl/timer.hxx>
#include <swrect.hxx>
#include <swtypes.hxx>
#include <vector>
2000-09-18 23:08:29 +00:00
class SwViewShell;
2000-09-18 23:08:29 +00:00
class SwFlyFrm;
class SwViewOption;
class SwRegionRects;
class SwFrm;
class SwLayAction;
class SwLayIdle;
class SwDrawView;
class SdrPageView;
class SwPageFrm;
class SwRegionRects;
class SwAccessibleMap;
2002-05-15 12:22:47 +00:00
class SdrObject;
2002-05-22 10:48:43 +00:00
class Fraction;
class SwPrintData;
class SwPagePreviewLayout;
struct PreviewPage;
class SwTxtFrm;
// --> OD #i76669#
namespace sdr { namespace contact {
class ViewObjectContactRedirector;
} }
// <--
2000-09-18 23:08:29 +00:00
class SwViewImp
{
friend class SwViewShell;
2000-09-18 23:08:29 +00:00
friend class SwLayAction; //Lay- und IdleAction tragen sich ein und aus.
friend class SwLayIdle;
2011-02-12 22:48:50 +01:00
// for paint of page preview
friend class SwPagePreviewLayout;
SwViewShell *pSh; //Falls jemand einen Imp durchreicht und doch
//mal eine SwViewShell braucht hier die
2000-09-18 23:08:29 +00:00
//Rueckwaertsverkettung.
SwDrawView *pDrawView; //Unsere DrawView
SdrPageView *pSdrPageView; //Genau eine Seite fuer unsere DrawView
SwPageFrm *pFirstVisPage;//Zeigt immer auf die erste sichtbare Seite.
SwRegionRects *pRegion; //Sammler fuer Paintrects aus der LayAction.
SwLayAction *pLayAct; //Ist gesetzt wenn ein Action-Objekt existiert
//Wird vom SwLayAction-CTor ein- und vom DTor
//ausgetragen.
SwLayIdle *pIdleAct; //Analog zur SwLayAction fuer SwLayIdle.
SwAccessibleMap *pAccMap; // Accessible Wrappers
mutable const SdrObject * pSdrObjCached;
mutable OUString sSdrObjCachedComment;
sal_Bool bFirstPageInvalid :1; //Pointer auf erste Seite ungueltig?
2000-09-18 23:08:29 +00:00
sal_Bool bResetHdlHiddenPaint:1;// -- "" --
2000-09-18 23:08:29 +00:00
sal_Bool bSmoothUpdate :1; //Meber fuer SmoothScroll
sal_Bool bStopSmooth :1;
sal_Bool bStopPrt :1; // Stop Printing
2000-09-18 23:08:29 +00:00
sal_uInt16 nRestoreActions ; //Die Anzahl der zu restaurierenden Actions (UNO)
2000-09-18 23:08:29 +00:00
SwRect aSmoothRect;
SwPagePreviewLayout* mpPgPreviewLayout;
/**
Returns if printer shall be stopped.
@retval sal_True The printer shall be stopped.
@retval sal_False else
*/
sal_Bool IsStopPrt() { return bStopPrt; }
/**
Resets signal for stopping printing.
*/
void ResetStopPrt() { bStopPrt = sal_False; }
2000-09-18 23:08:29 +00:00
void SetFirstVisPage(); //Neue Ermittlung der ersten sichtbaren Seite
void StartAction(); //Henkel Anzeigen und verstecken.
void EndAction(); //gerufen von SwViewShell::ImplXXXAction
void LockPaint(); //dito, gerufen von SwViewShell::ImplLockPaint
2000-09-18 23:08:29 +00:00
void UnlockPaint();
private:
SwAccessibleMap *CreateAccessibleMap();
/** invalidate CONTENT_FLOWS_FROM/_TO relation for paragraphs
2011-02-12 22:48:50 +01:00
#i27138#
implementation for wrapper method
<SwViewShell::InvalidateAccessibleParaFlowRelation(..)>
@param _pFromTxtFrm
input parameter - paragraph frame, for which the relation CONTENT_FLOWS_FROM
has to be invalidated.
If NULL, no CONTENT_FLOWS_FROM relation has to be invalidated
@param _pToTxtFrm
input parameter - paragraph frame, for which the relation CONTENT_FLOWS_TO
has to be invalidated.
If NULL, no CONTENT_FLOWS_TO relation has to be invalidated
*/
void _InvalidateAccessibleParaFlowRelation( const SwTxtFrm* _pFromTxtFrm,
const SwTxtFrm* _pToTxtFrm );
/** invalidate text selection for paragraphs
2011-02-12 22:48:50 +01:00
#i27301#
implementation for wrapper method
<SwViewShell::InvalidateAccessibleParaTextSelection(..)>
*/
void _InvalidateAccessibleParaTextSelection();
2000-09-18 23:08:29 +00:00
/** invalidate attributes for paragraphs and paragraph's characters
2011-02-12 22:48:50 +01:00
#i88069#
implementation for wrapper method
<SwViewShell::InvalidateAccessibleParaAttrs(..)>
*/
void _InvalidateAccessibleParaAttrs( const SwTxtFrm& rTxtFrm );
2000-09-18 23:08:29 +00:00
public:
SwViewImp( SwViewShell * );
2000-09-18 23:08:29 +00:00
~SwViewImp();
void Init( const SwViewOption * ); //nur fuer SwViewShell::Init()
2000-09-18 23:08:29 +00:00
const SwViewShell *GetShell() const { return pSh; }
SwViewShell *GetShell() { return pSh; }
2000-09-18 23:08:29 +00:00
Color GetRetoucheColor() const;
//Verwaltung zur ersten sichtbaren Seite
inline const SwPageFrm *GetFirstVisPage() const;
inline SwPageFrm *GetFirstVisPage();
void SetFirstVisPageInvalid() { bFirstPageInvalid = sal_True; }
2000-09-18 23:08:29 +00:00
sal_Bool AddPaintRect( const SwRect &rRect );
2000-09-18 23:08:29 +00:00
SwRegionRects *GetRegion() { return pRegion; }
void DelRegion();
2000-09-18 23:08:29 +00:00
// neues Interface fuer StarView Drawing
inline sal_Bool HasDrawView() const { return 0 != pDrawView; }
2000-09-18 23:08:29 +00:00
SwDrawView* GetDrawView() { return pDrawView; }
const SwDrawView* GetDrawView() const { return pDrawView; }
SdrPageView*GetPageView() { return pSdrPageView; }
const SdrPageView*GetPageView() const { return pSdrPageView; }
void MakeDrawView();
// add 3rd parameter <const Color* pPageBackgrdColor> for setting this
// color as the background color at the outliner of the draw view
// for painting layers <hell> and <heaven>
2011-02-12 22:48:50 +01:00
// add 4th parameter for the horizontal text
// direction of the page in order to set the default horizontal text
// direction at the outliner of the draw view for painting layers <hell>
// and <heaven>.
2011-02-12 22:48:50 +01:00
// #i76669# - added parameter <pRedirector>
void PaintLayer( const SdrLayerID _nLayerID,
SwPrintData const*const pPrintData,
const SwRect& _rRect,
const Color* _pPageBackgrdColor = 0,
const bool _bIsPageRightToLeft = false,
sdr::contact::ViewObjectContactRedirector* pRedirector = 0 ) const;
2000-09-18 23:08:29 +00:00
//wird als Link an die DrawEngine uebergeben, entscheidet was wie
//gepaintet wird oder nicht.
// Interface Drawing
sal_Bool IsDragPossible( const Point &rPoint );
2000-09-18 23:08:29 +00:00
void NotifySizeChg( const Size &rNewSz );
//SS Fuer die Lay- bzw. IdleAction und verwandtes
sal_Bool IsAction() const { return pLayAct != 0; }
sal_Bool IsIdleAction() const { return pIdleAct != 0; }
2000-09-18 23:08:29 +00:00
SwLayAction &GetLayAction() { return *pLayAct; }
const SwLayAction &GetLayAction() const { return *pLayAct; }
SwLayIdle &GetIdleAction() { return *pIdleAct;}
const SwLayIdle &GetIdleAction() const { return *pIdleAct;}
//Wenn eine Aktion laueft wird diese gebeten zu pruefen ob es
//an der zeit ist den WaitCrsr einzuschalten.
void CheckWaitCrsr();
sal_Bool IsCalcLayoutProgress() const; //Fragt die LayAction wenn vorhanden.
//sal_True wenn eine LayAction laeuft, dort wird dann auch das Flag fuer
2000-09-18 23:08:29 +00:00
//ExpressionFields gesetzt.
sal_Bool IsUpdateExpFlds();
2000-09-18 23:08:29 +00:00
void SetRestoreActions(sal_uInt16 nSet){nRestoreActions = nSet;}
sal_uInt16 GetRestoreActions() const{return nRestoreActions;}
void InitPagePreviewLayout();
2002-12-06 15:25:21 +00:00
inline SwPagePreviewLayout* PagePreviewLayout()
{
return mpPgPreviewLayout;
}
2002-02-27 08:32:33 +00:00
// Is this view accessible?
sal_Bool IsAccessible() const { return pAccMap != 0; }
inline SwAccessibleMap& GetAccessibleMap();
// Update (this) accessible view
void UpdateAccessible();
2002-02-27 08:32:33 +00:00
// Remove a frame from the accessible view
2002-05-15 12:22:47 +00:00
void DisposeAccessible( const SwFrm *pFrm, const SdrObject *pObj,
sal_Bool bRecursive );
inline void DisposeAccessibleFrm( const SwFrm *pFrm,
2002-04-05 11:18:25 +00:00
sal_Bool bRecursive=sal_False );
2002-05-15 12:22:47 +00:00
inline void DisposeAccessibleObj( const SdrObject *pObj );
2002-02-27 08:32:33 +00:00
// Move a frame's position in the accessible view
2002-05-15 12:22:47 +00:00
void MoveAccessible( const SwFrm *pFrm, const SdrObject *pObj,
const SwRect& rOldFrm );
inline void MoveAccessibleFrm( const SwFrm *pFrm, const SwRect& rOldFrm );
2002-04-05 11:18:25 +00:00
// Add a frame in the accessible view
inline void AddAccessibleFrm( const SwFrm *pFrm );
2002-05-15 12:22:47 +00:00
inline void AddAccessibleObj( const SdrObject *pObj );
void FirePageChangeEvent(sal_uInt16 nOldPage, sal_uInt16 nNewPage);
void FireSectionChangeEvent(sal_uInt16 nOldSection, sal_uInt16 nNewSection);
void FireColumnChangeEvent(sal_uInt16 nOldColumn, sal_uInt16 nNewColumn);
// Invalidate accessible frame's frame's content
void InvalidateAccessibleFrmContent( const SwFrm *pFrm );
// Invalidate accessible frame's cursor position
2002-04-05 11:18:25 +00:00
void InvalidateAccessibleCursorPosition( const SwFrm *pFrm );
// Invalidate editable state for all accessible frames
void InvalidateAccessibleEditableState( sal_Bool bAllShells=sal_True,
const SwFrm *pFrm=0 );
// Invalidate frame's relation set (for chained frames)
void InvalidateAccessibleRelationSet( const SwFlyFrm *pMaster,
const SwFlyFrm *pFollow );
2002-05-22 10:48:43 +00:00
// update data for accessible preview
2011-02-12 22:48:50 +01:00
// change method signature due to new page preview functionality
void UpdateAccessiblePreview( const std::vector<PreviewPage*>& _rPreviewPages,
const Fraction& _rScale,
const SwPageFrm* _pSelectedPageFrm,
const Size& _rPreviewWinSize );
2002-05-29 14:06:25 +00:00
void InvalidateAccessiblePreviewSelection( sal_uInt16 nSelPage );
2002-05-22 10:48:43 +00:00
// Fire all accessible events that have been collected so far
void FireAccessibleEvents();
2000-09-18 23:08:29 +00:00
};
inline SwPageFrm *SwViewImp::GetFirstVisPage()
{
if ( bFirstPageInvalid )
SetFirstVisPage();
return pFirstVisPage;
}
inline const SwPageFrm *SwViewImp::GetFirstVisPage() const
{
if ( bFirstPageInvalid )
((SwViewImp*)this)->SetFirstVisPage();
return pFirstVisPage;
}
inline SwAccessibleMap& SwViewImp::GetAccessibleMap()
{
if( !pAccMap )
CreateAccessibleMap();
return *pAccMap;
}
2000-09-18 23:08:29 +00:00
2002-05-15 12:22:47 +00:00
inline void SwViewImp::DisposeAccessibleFrm( const SwFrm *pFrm,
sal_Bool bRecursive )
{
DisposeAccessible( pFrm, 0, bRecursive );
}
inline void SwViewImp::DisposeAccessibleObj( const SdrObject *pObj )
{
DisposeAccessible( 0, pObj, sal_False );
}
inline void SwViewImp::MoveAccessibleFrm( const SwFrm *pFrm,
const SwRect& rOldFrm )
{
MoveAccessible( pFrm, 0, rOldFrm );
}
2002-04-05 11:18:25 +00:00
inline void SwViewImp::AddAccessibleFrm( const SwFrm *pFrm )
{
SwRect aEmptyRect;
2002-05-15 12:22:47 +00:00
MoveAccessible( pFrm, 0, aEmptyRect );
}
inline void SwViewImp::AddAccessibleObj( const SdrObject *pObj )
{
SwRect aEmptyRect;
MoveAccessible( 0, pObj, aEmptyRect );
2002-04-05 11:18:25 +00:00
}
#endif // INCLUDED_SW_SOURCE_CORE_INC_VIEWIMP_HXX
2000-09-18 23:08:29 +00:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */