LibreOffice Module sw (master) 1
swtablerep.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#ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWTABLEREP_HXX
20#define INCLUDED_SW_SOURCE_UIBASE_INC_SWTABLEREP_HXX
21
22#include <swdllapi.h>
23#include <swtypes.hxx>
24
25class SwTabCols;
26
27struct TColumn
28{
31};
32
34{
35 std::vector<TColumn> m_aTColumns;
36
41 sal_uInt16 m_nAlign;
42 sal_uInt16 m_nColCount;
43 sal_uInt16 m_nAllCols;
44 sal_uInt16 m_nWidthPercent;
48
49public:
50 SwTableRep( const SwTabCols& rTabCol );
52
53 SwTableRep( const SwTableRep& rCopy ) = default;
54 SwTableRep( SwTableRep&& rCopy ) = default;
55 SwTableRep& operator=(const SwTableRep& rCopy) = default;
56 SwTableRep& operator=(SwTableRep&& rCopy) = default;
57
58 bool FillTabCols( SwTabCols& rTabCol ) const;
59
60 SwTwips GetLeftSpace() const {return m_nLeftSpace;}
61 void SetLeftSpace(SwTwips nSet) {m_nLeftSpace = nSet;}
62
63 SwTwips GetRightSpace() const {return m_nRightSpace;}
64 void SetRightSpace(SwTwips nSet) {m_nRightSpace = nSet;}
65
66 SwTwips GetWidth() const {return m_nTableWidth;}
67 void SetWidth(SwTwips nSet) {m_nTableWidth = nSet;}
68
69 sal_uInt16 GetWidthPercent() const {return m_nWidthPercent;}
70 void SetWidthPercent(sal_uInt16 nSet) {m_nWidthPercent = nSet;}
71
72 sal_uInt16 GetAlign() const {return m_nAlign;}
73 void SetAlign(sal_uInt16 nSet) {m_nAlign = nSet;}
74
75 sal_uInt16 GetColCount() const {return m_nColCount;}
76 sal_uInt16 GetAllColCount() const {return m_nAllCols;}
77
78 bool HasColsChanged() const {return m_bColsChanged;}
79 void SetColsChanged() {m_bColsChanged = true;}
80
81 bool HasWidthChanged() const {return m_bWidthChanged;}
82 void SetWidthChanged() {m_bWidthChanged = true;}
83
84 bool IsLineSelected() const {return m_bLineSelected;}
85 void SetLineSelected(bool bSet) {m_bLineSelected = bSet;}
86
87 SwTwips GetSpace() const { return m_nSpace;}
88 void SetSpace(SwTwips nSet) {m_nSpace = nSet;}
89
90 TColumn* GetColumns() {return m_aTColumns.data();}
91};
92#endif
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void SetRightSpace(SwTwips nSet)
Definition: swtablerep.hxx:64
void SetSpace(SwTwips nSet)
Definition: swtablerep.hxx:88
SwTwips m_nSpace
Definition: swtablerep.hxx:38
SwTwips m_nRightSpace
Definition: swtablerep.hxx:40
SwTableRep & operator=(SwTableRep &&rCopy)=default
SwTwips m_nLeftSpace
Definition: swtablerep.hxx:39
SwTableRep & operator=(const SwTableRep &rCopy)=default
SwTableRep(SwTableRep &&rCopy)=default
bool m_bColsChanged
Definition: swtablerep.hxx:47
void SetColsChanged()
Definition: swtablerep.hxx:79
SwTwips GetLeftSpace() const
Definition: swtablerep.hxx:60
sal_uInt16 m_nAlign
Definition: swtablerep.hxx:41
SwTwips m_nTableWidth
Definition: swtablerep.hxx:37
TColumn * GetColumns()
Definition: swtablerep.hxx:90
SwTwips GetRightSpace() const
Definition: swtablerep.hxx:63
sal_uInt16 GetAllColCount() const
Definition: swtablerep.hxx:76
void SetWidthPercent(sal_uInt16 nSet)
Definition: swtablerep.hxx:70
bool m_bWidthChanged
Definition: swtablerep.hxx:46
void SetAlign(sal_uInt16 nSet)
Definition: swtablerep.hxx:73
bool m_bLineSelected
Definition: swtablerep.hxx:45
sal_uInt16 GetAlign() const
Definition: swtablerep.hxx:72
SwTableRep(const SwTableRep &rCopy)=default
std::vector< TColumn > m_aTColumns
Definition: swtablerep.hxx:35
sal_uInt16 m_nAllCols
Definition: swtablerep.hxx:43
sal_uInt16 m_nColCount
Definition: swtablerep.hxx:42
sal_uInt16 GetWidthPercent() const
Definition: swtablerep.hxx:69
bool HasWidthChanged() const
Definition: swtablerep.hxx:81
SwTwips GetWidth() const
Definition: swtablerep.hxx:66
sal_uInt16 GetColCount() const
Definition: swtablerep.hxx:75
void SetLeftSpace(SwTwips nSet)
Definition: swtablerep.hxx:61
void SetWidthChanged()
Definition: swtablerep.hxx:82
void SetLineSelected(bool bSet)
Definition: swtablerep.hxx:85
SwTwips GetSpace() const
Definition: swtablerep.hxx:87
void SetWidth(SwTwips nSet)
Definition: swtablerep.hxx:67
sal_uInt16 m_nWidthPercent
Definition: swtablerep.hxx:44
bool HasColsChanged() const
Definition: swtablerep.hxx:78
bool IsLineSelected() const
Definition: swtablerep.hxx:84
SwTwips nWidth
Definition: swtablerep.hxx:29
bool bVisible
Definition: swtablerep.hxx:30
#define SW_DLLPUBLIC
Definition: swdllapi.h:28
tools::Long SwTwips
Definition: swtypes.hxx:51