LibreOffice Module sw (master) 1
possiz.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#pragma once
20
21#include <tools/gen.hxx>
22#include <swtypes.hxx>
23
24// Compared to the SV sizes SwPosSize is always positive
26{
29public:
30 SwPosSize( const SwTwips nW = 0, const SwTwips nH = 0 )
31 : m_nWidth(nW)
32 , m_nHeight(nH)
33 {
34 }
35 explicit SwPosSize( const Size &rSize )
36 : m_nWidth(SwTwips(rSize.Width()))
37 , m_nHeight(SwTwips(rSize.Height()))
38 {
39 }
40#if defined(__COVERITY__)
41 virtual ~SwPosSize() COVERITY_NOEXCEPT_FALSE {}
42#else
43 virtual ~SwPosSize() {}
44#endif
45 SwPosSize(SwPosSize const &) = default;
46 SwPosSize(SwPosSize &&) = default;
47 SwPosSize & operator =(SwPosSize const &) = default;
49 SwTwips Height() const { return m_nHeight; }
50 virtual void Height(const SwTwips nNew, const bool = true) { m_nHeight = nNew; }
51 SwTwips Width() const { return m_nWidth; }
52 void Width( const SwTwips nNew ) { m_nWidth = nNew; }
53 Size SvLSize() const { return Size( m_nWidth, m_nHeight ); }
54 void SvLSize( const Size &rSize )
55 {
56 m_nWidth = SwTwips(rSize.Width());
57 m_nHeight = SwTwips(rSize.Height());
58 }
59 void SvXSize( const Size &rSize )
60 {
61 m_nHeight = SwTwips(rSize.Width());
62 m_nWidth = SwTwips(rSize.Height());
63 }
64 SwPosSize& operator=( const Size &rSize )
65 {
66 m_nWidth = SwTwips(rSize.Width());
67 m_nHeight = SwTwips(rSize.Height());
68 return *this;
69 }
70};
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
constexpr tools::Long Height() const
constexpr tools::Long Width() const
SwTwips Width() const
Definition: possiz.hxx:51
SwPosSize & operator=(SwPosSize const &)=default
SwTwips m_nHeight
Definition: possiz.hxx:28
SwPosSize & operator=(const Size &rSize)
Definition: possiz.hxx:64
void SvXSize(const Size &rSize)
Definition: possiz.hxx:59
SwPosSize(SwPosSize &&)=default
SwPosSize(const SwTwips nW=0, const SwTwips nH=0)
Definition: possiz.hxx:30
SwTwips Height() const
Definition: possiz.hxx:49
void Width(const SwTwips nNew)
Definition: possiz.hxx:52
void SvLSize(const Size &rSize)
Definition: possiz.hxx:54
SwPosSize(SwPosSize const &)=default
virtual void Height(const SwTwips nNew, const bool=true)
Definition: possiz.hxx:50
virtual ~SwPosSize()
Definition: possiz.hxx:43
Size SvLSize() const
Definition: possiz.hxx:53
SwTwips m_nWidth
Definition: possiz.hxx:27
SwPosSize(const Size &rSize)
Definition: possiz.hxx:35
tools::Long SwTwips
Definition: swtypes.hxx:51