office-gobmx/sw/inc/pagepreviewlayout.hxx
Stephan Bergmann 85825e0fd5 Avoid reserved identifiers
Change-Id: I27ff0f4f0eb395d7e0a60dd604758c220a3134c4
2016-04-22 10:08:07 +02:00

575 lines
19 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_SW_INC_PAGEPREVIEWLAYOUT_HXX
#define INCLUDED_SW_INC_PAGEPREVIEWLAYOUT_HXX
// template class <std::vector>
#include <vector>
// datatypes sal_xyz
#include <sal/types.h>
// classes <Point>, <Size> and <Rectangle>
#include <tools/gen.hxx>
// datatype <SwTwips>
#include <swtypes.hxx>
class SwViewShell;
class SwRootFrame;
class SwPageFrame;
class Fraction;
struct PreviewPage;
/** page preview functionality in the writer
@author OD
*/
class SwPagePreviewLayout
{
private:
friend class SwViewShell;
/// number of horizontal and vertical twips for spacing between the pages.
const SwTwips mnXFree;
const SwTwips mnYFree;
/// view shell the print preview is generated for.
SwViewShell& mrParentViewShell;
/// top layout frame of the layout for accessing the pages
const SwRootFrame& mrLayoutRootFrame;
/** boolean indicating, if the layout information (number of columns and rows)
are valid. */
bool mbLayoutInfoValid;
/** boolean indicating, if the calculated print preview layout sizes
( windows size in twips, maximal page size, column width, row height,
width and height of a print preview page, size of the print preview
document ) are valid */
bool mbLayoutSizesValid;
/** boolean indicating, if the paint information ( physical number of
start page, start column and row, paint offsets, rectangle visible of
the print preview document. */
bool mbPaintInfoValid;
Size maWinSize;
sal_uInt16 mnCols;
sal_uInt16 mnRows;
sal_uInt16 mnPages;
// #i18143# - the book preview is controlled by this flag
bool mbBookPreview;
bool mbBookPreviewModeToggled;
Size maMaxPageSize;
Rectangle maPreviewDocRect;
SwTwips mnColWidth;
SwTwips mnRowHeight;
SwTwips mnPreviewLayoutWidth;
SwTwips mnPreviewLayoutHeight;
bool mbDoesLayoutColsFitIntoWindow;
bool mbDoesLayoutRowsFitIntoWindow;
sal_uInt16 mnPaintPhyStartPageNum;
sal_uInt16 mnPaintStartCol;
sal_uInt16 mnPaintStartRow;
bool mbNoPageVisible;
Point maPaintStartPageOffset;
Point maPaintPreviewDocOffset;
Point maAdditionalPaintOffset;
Rectangle maPaintedPreviewDocRect;
sal_uInt16 mnSelectedPageNum;
std::vector<PreviewPage*> maPreviewPages;
/** #i22014# - internal booleans to indicate, that a new print
preview layout has been created during a paint. */
mutable bool mbInPaint;
mutable bool mbNewLayoutDuringPaint;
bool mbPrintEmptyPages;
/** clear internal data about current page preview
@author OD
*/
void Clear_();
/** helper method to clear preview page layout sizes
@author OD
*/
void ClearPreviewLayoutSizes();
/** helper method to clear data in preview page vectors
@author OD
*/
void ClearPreviewPageData();
/** calculate page preview layout sizes
@author OD
*/
void CalcPreviewLayoutSizes();
/** apply new zoom at given view shell
@author OD
@param _aNewZoom
input parameter - new zoom percentage
*/
void ApplyNewZoomAtViewShell( sal_uInt8 _aNewZoom );
/** calculate additional paint offset
helper method called by <Prepare> in order to calculate an additional
paint offset to center output in given window size.
The booleans <mbDoesLayoutRowsFitIntoWindow> and <mbDoesLayoutColsFitIntoWindow>
are also determined.
preconditions:
(1) preview layout is given (number of rows and columns).
(2) window size is given.
(3) height of row and width of column are calculated.
(4) paint offset of start page is calculated.
@author OD
*/
void CalcAdditionalPaintOffset();
/** calculate painted preview document rectangle
helper method called by <Prepare> in order to calculate the rectangle,
which will be painted for the document arranged by the given preview
layout.
preconditions:
(1) paint offset of document preview is calculated.
(2) size of document preview is calculated.
(3) additional paint offset is calculated - see <CalcAdditionalPaintOffset>.
@author OD
*/
void CalcDocPreviewPaintRect();
/** determines preview data for a given page and a given preview offset
@author OD
@param _rPage
input parameter - constant reference to page frame, for which the
preview data will be calculated.
@param _rPreviewOffset
input parameter - constant reference to the offset the given page has
in the current preview window.
Note: Offset can be negative.
@param _opPreviewPage
output parameter - calculated preview data.
@return boolean, indicating, if calculation was successful.
*/
bool CalcPreviewDataForPage( const SwPageFrame& _rPage,
const Point& _rPreviewOffset,
PreviewPage* _opPreviewPage );
/** calculate preview pages
helper method called by <Prepare> in order to determine which pages
will be visible in the current preview and calculate the data needed
to paint these pages. Also the accessible pages with its needed data
are determined.
@author OD
*/
void CalcPreviewPages();
/** get preview page by physical page number
@author OD
@param _nPageNum
input parameter - physical page number of page, for which the preview
page will be returned.
@return pointer to preview page of current preview pages. If page doesn't
belongs to current preview pages, <0> is returned.
*/
const PreviewPage* GetPreviewPageByPageNum( const sal_uInt16 _nPageNum ) const;
/** paint selection mark at page
@author OD
*/
void PaintSelectMarkAtPage(vcl::RenderContext& rRenderContext, const PreviewPage* _aSelectedPreviewPage) const;
public:
/** constructor of <SwPagePreviewLayout>
@author OD
@param _rParentViewShell
input parameter - reference to the view shell the page preview
layout belongs to. Reference will be hold as member <mrParentViewShell>.
Adjustments/Changes at this view shell:
(1) Adjustment of the mapping mode at the output device.
(2) Change of the zoom at the view options.
(3) Preparations for paint of the page preview.
@param _rLayoutRootFrame
input parameter - constant reference to the root frame of the layout.
Reference will be hold as member <mrLayoutRootFrame> in order to get
access to the page frames.
*/
SwPagePreviewLayout( SwViewShell& _rParentViewShell,
const SwRootFrame& _rLayoutRootFrame );
/** destructor of <SwPagePreviewLayout>
@author
*/
inline ~SwPagePreviewLayout()
{
ClearPreviewPageData();
}
/** init page preview layout
initialize the page preview settings for a given layout.
side effects:
(1) If parameter <_bCalcScale> is true, mapping mode with calculated
scaling is set at the output device and the zoom at the view options of
the given view shell is set with the calculated scaling.
@author OD
@param _nCols
input parameter - initial number of page columns in the preview.
@param _nRows
input parameter - initial number of page rows in the preview.
@param _rPxWinSize
input parameter - window size in which the preview will be displayed and
for which the scaling will be calculated.
@return boolean, indicating, if preview layout is successful initialized.
*/
bool Init( const sal_uInt16 _nCols,
const sal_uInt16 _nRows,
const Size& _rPxWinSize
);
/** method to adjust page preview layout to document changes
@author OD
@return boolean, indicating, if preview layout is successful initialized.
*/
bool ReInit();
/** prepare paint of page preview
With the valid preview layout settings - calculated and set by method
<Init(..)> - the paint of a specific part of the virtual preview
document is prepared. The corresponding part is given by either
a start page (parameter <_nProposedStartPageNum>) or a absolute position
(parameter <_aProposedStartPoint>).
The accessibility preview will also be updated via a corresponding
method call.
@author OD
@param _nProposedStartPageNum [0..<number of document pages>]
input parameter - proposed number of page, which should be painted in
the left-top-corner in the current output device. input parameter
<_bStartWithPageAtFirstCol> influences, if proposed page is actual
painted in the left-top-corner.
@param _nProposedStartPos [(0,0)..<PreviewDocumentSize>]
input parameter - proposed absolute position in the virtual preview
document, which should be painted in the left-top-corner in the current
output device.
@param _rPxWinSize
input parameter - pixel size of window the preview will be painted in.
@param _onStartPageNum
output parameter - physical number of page, which will be painted in the
left-top-corner in the current output device.
@param _orDocPreviewPaintRect
output parameter - rectangle of preview document, which will be painted.
@param _bStartWithPageAtFirstCol
input parameter with default value "true" - controls, if start page
is set to page in first column the proposed start page is located.
@return boolean, indicating, if prepare of preview paint was successful.
*/
bool Prepare( const sal_uInt16 _nProposedStartPageNum,
const Point& rProposedStartPos,
const Size& _rPxWinSize,
sal_uInt16& _onStartPageNum,
Rectangle& _orDocPreviewPaintRect,
const bool _bStartWithPageAtFirstCol = true
);
/** get selected page number
@author OD
*/
inline sal_uInt16 SelectedPage()
{
return mnSelectedPageNum;
}
/** set selected page number
@author OD
*/
inline void SetSelectedPage( sal_uInt16 _nSelectedPageNum )
{
mnSelectedPageNum = _nSelectedPageNum;
}
/** paint prepared preview
@author OD
@param _aOutRect
input parameter - Twip rectangle of window, which should be painted.
@return boolean, indicating, if paint of preview was performed
*/
bool Paint(vcl::RenderContext& rRenderContext, const Rectangle& rOutRect) const;
/** repaint pages on page preview
method to invalidate visible pages due to changes in a different
view shell.
@author OD
*/
void Repaint(const Rectangle& rInvalidCoreRect) const;
/** paint to mark new selected page
Perform paint for current selected page in order to unmark it.
Set new selected page and perform paint to mark this page.
@author OD
@param _nNewSelectedPage
input parameter - physical number of page, which will be marked as selected.
*/
void MarkNewSelectedPage( const sal_uInt16 _nSelectedPage );
/** calculate start position for new scale
calculate new start position for a new scale. Calculation bases on the
current visible part of the document arranged in the given preview layout.
preconditions:
(1) new scaling is already set at the given output device.
@author OD
@return Point, start position for new scale
*/
Point GetPreviewStartPosForNewScale( const Fraction& _aNewScale,
const Fraction& _aOldScale,
const Size& _aNewWinSize ) const;
/** determines, if page with given page number is visible in preview
@author OD
@param _nPageNum
input parameter - physical number of page, for which it will be
determined, if it is visible.
@return boolean, indicating, if page with given page number is visible
in preview.
*/
bool IsPageVisible( const sal_uInt16 _nPageNum ) const;
/** calculate data to bring new selected page into view.
@author OD
@param _nHoriMove
input parameter - positive/negative number of columns the current
selected page have to be moved.
@param _nVertMove
input parameter - positive/negative number of rows the current
selected page have to be moved.
@param _orNewSelectedPage
output parameter - number of new selected page
@param _orNewStartPage
output parameter - number of new start page
@param _orNewStartPos
output parameter - new start position in document preview
@return boolean - indicating, that move was successful.
*/
bool CalcStartValuesForSelectedPageMove( const sal_Int16 _nHoriMove,
const sal_Int16 _nVertMove,
sal_uInt16& _orNewSelectedPage,
sal_uInt16& _orNewStartPage,
Point& _orNewStartPos ) const;
/** checks, if given position is inside a shown document page
@author OD
@param _aPreviewPos
input parameter - position inside the visible preview window.
@param _orDocPos
output parameter - corresponding position in the document, if given
preview position is inside a shown document page, not an empty page.
If not, its value is <Point( 0, 0 )>.
@param _obPosInEmptyPage
output parameter - indicates, that given preview position lays inside
an shown empty page.
@param _onPageNum
output parameter - corresponding physical number of page, if given
preview position is inside a shown document page, considers also empty
pages. If not, its value is <0>.
@return boolean - indicating, that given preview position lays inside
a shown document preview page, not an empty page.
*/
bool IsPreviewPosInDocPreviewPage( const Point& rPreviewPos,
Point& _orDocPos,
bool& _obPosInEmptyPage,
sal_uInt16& _onPageNum ) const;
inline bool DoesPreviewLayoutRowsFitIntoWindow() const
{
return mbDoesLayoutRowsFitIntoWindow;
}
inline bool DoesPreviewLayoutColsFitIntoWindow() const
{
return mbDoesLayoutColsFitIntoWindow;
}
inline bool PreviewLayoutValid() const
{
return mbLayoutInfoValid && mbLayoutSizesValid && mbPaintInfoValid;
}
/** determine preview window page scroll amount
@author OD
@param _nWinPagesToScroll
input parameter - number of preview window pages the scroll amount has
to be calculated for. Negative values for preview window page up
scrolling, positive values for preview window page down scrolling.
@return scroll amount in SwTwips
*/
SwTwips GetWinPagesScrollAmount( const sal_Int16 _nWinPagesToScroll ) const;
/** determine row the page with the given number is in
@author OD
@param _nPageNum
input parameter - physical page number of page, for which the row in
preview layout has to be calculated.
@return number of row the page with the given physical page number is in
*/
sal_uInt16 GetRowOfPage( sal_uInt16 _nPageNum ) const;
/** determine column the page with the given number is in
@author OD
@param _nPageNum
input parameter - physical page number of page, for which the column in
preview layout has to be calculated.
@return number of column the page with the given physical page number is in
*/
sal_uInt16 GetColOfPage( sal_uInt16 _nPageNum ) const;
Size GetPreviewDocSize() const;
/** get size of a preview page by its physical page number
@author OD
@param _nPageNum
input parameter - physical page number of preview page, for which the
page size has to be returned.
@return an object of class <Size>
*/
Size GetPreviewPageSizeByPageNum( sal_uInt16 _nPageNum ) const;
/** get virtual page number by its physical page number
@author OD
@param _nPageNum
input parameter - physical page number of preview page, for which the
virtual page number has to be determined.
@return virtual page number of page given by its physical page number,
if the page is in the current preview pages vector, otherwise 0.
*/
sal_uInt16 GetVirtPageNumByPageNum( sal_uInt16 _nPageNum ) const;
/** enable/disable book preview
@author OD
*/
bool SetBookPreviewMode( const bool _bEnableBookPreview,
sal_uInt16& _onStartPageNum,
Rectangle& _orDocPreviewPaintRect );
/** Convert relative to absolute page numbers (see PrintEmptyPages)
@author FME
*/
sal_uInt16 ConvertRelativeToAbsolutePageNum( sal_uInt16 _nRelPageNum ) const;
/** Convert absolute to relative page numbers (see PrintEmptyPages)
@author FME
*/
sal_uInt16 ConvertAbsoluteToRelativePageNum( sal_uInt16 _nAbsPageNum ) const;
SwViewShell& GetParentViewShell()
{
return mrParentViewShell;
}
};
#endif // INCLUDED_SW_INC_PAGEPREVIEWLAYOUT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */