android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / core / text / possiz.hxx
blobf66bd1988ca4404c867596818a3fde12229a4038
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #pragma once
21 #include <tools/gen.hxx>
22 #include <swtypes.hxx>
24 // Compared to the SV sizes SwPosSize is always positive
25 class SwPosSize
27 SwTwips m_nWidth;
28 SwTwips m_nHeight;
29 public:
30 SwPosSize( const SwTwips nW = 0, const SwTwips nH = 0 )
31 : m_nWidth(nW)
32 , m_nHeight(nH)
35 explicit SwPosSize( const Size &rSize )
36 : m_nWidth(SwTwips(rSize.Width()))
37 , m_nHeight(SwTwips(rSize.Height()))
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;
48 SwPosSize & operator =(SwPosSize &&) = 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 )
56 m_nWidth = SwTwips(rSize.Width());
57 m_nHeight = SwTwips(rSize.Height());
59 void SvXSize( const Size &rSize )
61 m_nHeight = SwTwips(rSize.Width());
62 m_nWidth = SwTwips(rSize.Height());
64 SwPosSize& operator=( const Size &rSize )
66 m_nWidth = SwTwips(rSize.Width());
67 m_nHeight = SwTwips(rSize.Height());
68 return *this;
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */