nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / inc / swtablerep.hxx
blob8e86093fae8e27208758db2a7e6c6d6273425473
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 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWTABLEREP_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_SWTABLEREP_HXX
22 #include <memory>
23 #include <swdllapi.h>
24 #include <swtypes.hxx>
26 class SwTabCols;
28 struct TColumn
30 SwTwips nWidth;
31 bool bVisible;
34 class SW_DLLPUBLIC SwTableRep
36 std::vector<TColumn> m_aTColumns;
38 SwTwips m_nTableWidth;
39 SwTwips m_nSpace;
40 SwTwips m_nLeftSpace;
41 SwTwips m_nRightSpace;
42 sal_uInt16 m_nAlign;
43 sal_uInt16 m_nColCount;
44 sal_uInt16 m_nAllCols;
45 sal_uInt16 m_nWidthPercent;
46 bool m_bLineSelected : 1;
47 bool m_bWidthChanged : 1;
48 bool m_bColsChanged : 1;
50 public:
51 SwTableRep( const SwTabCols& rTabCol );
52 ~SwTableRep();
54 SwTableRep( const SwTableRep& rCopy ) = default;
55 SwTableRep( SwTableRep&& rCopy ) = default;
56 SwTableRep& operator=(const SwTableRep& rCopy) = default;
57 SwTableRep& operator=(SwTableRep&& rCopy) = default;
59 bool FillTabCols( SwTabCols& rTabCol ) const;
61 SwTwips GetLeftSpace() const {return m_nLeftSpace;}
62 void SetLeftSpace(SwTwips nSet) {m_nLeftSpace = nSet;}
64 SwTwips GetRightSpace() const {return m_nRightSpace;}
65 void SetRightSpace(SwTwips nSet) {m_nRightSpace = nSet;}
67 SwTwips GetWidth() const {return m_nTableWidth;}
68 void SetWidth(SwTwips nSet) {m_nTableWidth = nSet;}
70 sal_uInt16 GetWidthPercent() const {return m_nWidthPercent;}
71 void SetWidthPercent(sal_uInt16 nSet) {m_nWidthPercent = nSet;}
73 sal_uInt16 GetAlign() const {return m_nAlign;}
74 void SetAlign(sal_uInt16 nSet) {m_nAlign = nSet;}
76 sal_uInt16 GetColCount() const {return m_nColCount;}
77 sal_uInt16 GetAllColCount() const {return m_nAllCols;}
79 bool HasColsChanged() const {return m_bColsChanged;}
80 void SetColsChanged() {m_bColsChanged = true;}
82 bool HasWidthChanged() const {return m_bWidthChanged;}
83 void SetWidthChanged() {m_bWidthChanged = true;}
85 bool IsLineSelected() const {return m_bLineSelected;}
86 void SetLineSelected(bool bSet) {m_bLineSelected = bSet;}
88 SwTwips GetSpace() const { return m_nSpace;}
89 void SetSpace(SwTwips nSet) {m_nSpace = nSet;}
91 TColumn* GetColumns() {return m_aTColumns.data();}
93 #endif
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */