renames the most annoying abbreviations in Writer (and partially in the shared code too). Change-Id: I9a62759138126c1537cc5c985ba05cf54d6132d9
113 lines
4.8 KiB
C++
113 lines
4.8 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_FMTFSIZE_HXX
|
|
#define INCLUDED_SW_INC_FMTFSIZE_HXX
|
|
|
|
#include <tools/gen.hxx>
|
|
#include <svl/poolitem.hxx>
|
|
#include "swdllapi.h"
|
|
#include <hintids.hxx>
|
|
#include <swtypes.hxx>
|
|
#include <format.hxx>
|
|
|
|
class IntlWrapper;
|
|
|
|
//Frame size.
|
|
|
|
enum SwFrmSize
|
|
{
|
|
ATT_VAR_SIZE, ///< Frame is variable in Var-direction.
|
|
ATT_FIX_SIZE, ///< Frame cannot be moved in Var-direction.
|
|
ATT_MIN_SIZE /**< Value in Var-direction gives minimum
|
|
(can be exceeded but not be less). */
|
|
};
|
|
|
|
class SW_DLLPUBLIC SwFormatFrmSize: public SfxPoolItem
|
|
{
|
|
Size m_aSize;
|
|
SwFrmSize m_eFrmHeightType;
|
|
SwFrmSize m_eFrmWidthType;
|
|
sal_uInt8 m_nWidthPercent;
|
|
sal_Int16 m_eWidthPercentRelation;
|
|
sal_uInt8 m_nHeightPercent;
|
|
sal_Int16 m_eHeightPercentRelation;
|
|
|
|
// For tables: width can be given in percent.
|
|
|
|
// For frames: height and/or width may be given in percent.
|
|
// If only one of these percentage values is given, the value 0xFF
|
|
// used instead of the missing percentage value indicates this side
|
|
// being proportional to the given one.
|
|
// The calculation in this case is based upon the values in Size.
|
|
// Percentages are always related to the environment in which
|
|
// the object is placed (PrtArea) and to the screen width
|
|
// minus borders in BrowseView if the environment is the page.
|
|
|
|
public:
|
|
SwFormatFrmSize( SwFrmSize eSize = ATT_VAR_SIZE,
|
|
SwTwips nWidth = 0, SwTwips nHeight = 0 );
|
|
SwFormatFrmSize& operator=( const SwFormatFrmSize& rCpy );
|
|
|
|
/// "Pure virtual methods" of SfxPoolItem.
|
|
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
|
|
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
|
|
virtual bool GetPresentation( SfxItemPresentation ePres,
|
|
SfxMapUnit eCoreMetric,
|
|
SfxMapUnit ePresMetric,
|
|
OUString &rText,
|
|
const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE;
|
|
virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
|
|
virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;
|
|
|
|
SwFrmSize GetHeightSizeType() const { return m_eFrmHeightType; }
|
|
void SetHeightSizeType( SwFrmSize eSize ) { m_eFrmHeightType = eSize; }
|
|
|
|
SwFrmSize GetWidthSizeType() const { return m_eFrmWidthType; }
|
|
void SetWidthSizeType( SwFrmSize eSize ) { m_eFrmWidthType = eSize; }
|
|
|
|
const Size& GetSize() const { return m_aSize; }
|
|
void SetSize( const Size &rNew ) { m_aSize = rNew; }
|
|
|
|
SwTwips GetHeight() const { return m_aSize.Height(); }
|
|
SwTwips GetWidth() const { return m_aSize.Width(); }
|
|
void SetHeight( const SwTwips nNew ) { m_aSize.Height() = nNew; }
|
|
void SetWidth ( const SwTwips nNew ) { m_aSize.Width() = nNew; }
|
|
|
|
sal_uInt8 GetHeightPercent() const{ return m_nHeightPercent; }
|
|
sal_Int16 GetHeightPercentRelation() const { return m_eHeightPercentRelation; }
|
|
sal_uInt8 GetWidthPercent() const { return m_nWidthPercent; }
|
|
sal_Int16 GetWidthPercentRelation() const { return m_eWidthPercentRelation; }
|
|
void SetHeightPercent( sal_uInt8 n ) { m_nHeightPercent = n; }
|
|
void SetHeightPercentRelation ( sal_Int16 n ) { m_eHeightPercentRelation = n; }
|
|
void SetWidthPercent ( sal_uInt8 n ) { m_nWidthPercent = n; }
|
|
void SetWidthPercentRelation ( sal_Int16 n ) { m_eWidthPercentRelation = n; }
|
|
|
|
void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
|
|
};
|
|
|
|
inline const SwFormatFrmSize &SwAttrSet::GetFrmSize(bool bInP) const
|
|
{ return static_cast<const SwFormatFrmSize&>(Get( RES_FRM_SIZE,bInP)); }
|
|
|
|
inline const SwFormatFrmSize &SwFormat::GetFrmSize(bool bInP) const
|
|
{ return m_aSet.GetFrmSize(bInP); }
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|