Line data Source code
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 :
20 : #ifndef INCLUDED_OOX_DRAWINGML_TABLE_TABLEPROPERTIES_HXX
21 : #define INCLUDED_OOX_DRAWINGML_TABLE_TABLEPROPERTIES_HXX
22 :
23 : #include <oox/drawingml/table/tablerow.hxx>
24 : #include <oox/drawingml/table/tablestyle.hxx>
25 : #include <oox/helper/propertymap.hxx>
26 : #include <oox/drawingml/color.hxx>
27 :
28 : #include <boost/shared_ptr.hpp>
29 : #include <boost/optional.hpp>
30 : #include <vector>
31 : #include <map>
32 :
33 : namespace oox { namespace drawingml { namespace table {
34 :
35 0 : class TableProperties
36 : {
37 : public:
38 :
39 : TableProperties();
40 : ~TableProperties();
41 :
42 0 : std::vector< sal_Int32 >& getTableGrid() { return mvTableGrid; };
43 0 : std::vector< TableRow >& getTableRows() { return mvTableRows; };
44 :
45 0 : OUString& getStyleId(){ return maStyleId; };
46 0 : boost::shared_ptr< TableStyle >& getTableStyle(){ return mpTableStyle; };
47 0 : bool& isRtl(){ return mbRtl; };
48 0 : bool& isFirstRow(){ return mbFirstRow; };
49 0 : bool& isFirstCol(){ return mbFirstCol; };
50 0 : bool& isLastRow(){ return mbLastRow; };
51 0 : bool& isLastCol(){ return mbLastCol; };
52 0 : bool& isBandRow(){ return mbBandRow; };
53 0 : bool& isBandCol(){ return mbBandCol; };
54 :
55 : void pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBase,
56 : const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > & xPropSet, ::oox::drawingml::TextListStylePtr pMasterTextListStyle );
57 :
58 : private:
59 :
60 : const TableStyle& getUsedTableStyle( const ::oox::core::XmlFilterBase& rFilterBase, bool &isCreateTabStyle);
61 :
62 : OUString maStyleId; // either StyleId is available
63 : boost::shared_ptr< TableStyle > mpTableStyle; // or the complete TableStyle
64 : std::vector< sal_Int32 > mvTableGrid;
65 : std::vector< TableRow > mvTableRows;
66 :
67 : bool mbRtl;
68 : bool mbFirstRow;
69 : bool mbFirstCol;
70 : bool mbLastRow;
71 : bool mbLastCol;
72 : bool mbBandRow;
73 : bool mbBandCol;
74 : };
75 :
76 : } } }
77 :
78 : #endif // INCLUDED_OOX_DRAWINGML_TABLE_TABLEPROPERTIES_HXX
79 :
80 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|