1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski #ifndef INCLUDED_DOMAIN_MAPPER_TABLE_MANAGER_HXX
24*b1cdbd2cSJim Jagielski #define INCLUDED_DOMAIN_MAPPER_TABLE_MANAGER_HXX
25*b1cdbd2cSJim Jagielski 
26*b1cdbd2cSJim Jagielski #include "TablePropertiesHandler.hxx"
27*b1cdbd2cSJim Jagielski 
28*b1cdbd2cSJim Jagielski #include <resourcemodel/TableManager.hxx>
29*b1cdbd2cSJim Jagielski #include <PropertyMap.hxx>
30*b1cdbd2cSJim Jagielski #include <StyleSheetTable.hxx>
31*b1cdbd2cSJim Jagielski #include <com/sun/star/text/XTextRange.hpp>
32*b1cdbd2cSJim Jagielski #include <vector>
33*b1cdbd2cSJim Jagielski #include <stack>
34*b1cdbd2cSJim Jagielski 
35*b1cdbd2cSJim Jagielski namespace writerfilter {
36*b1cdbd2cSJim Jagielski namespace dmapper {
37*b1cdbd2cSJim Jagielski 
38*b1cdbd2cSJim Jagielski class DomainMapperTableManager : public DomainMapperTableManager_Base_t
39*b1cdbd2cSJim Jagielski {
40*b1cdbd2cSJim Jagielski     typedef boost::shared_ptr< std::vector<sal_Int32> > IntVectorPtr;
41*b1cdbd2cSJim Jagielski 
42*b1cdbd2cSJim Jagielski     ::std::stack< sal_uInt32 > m_nCellCounterForCurrentRow;
43*b1cdbd2cSJim Jagielski     sal_uInt32 m_nGridSpanOfCurrentCell;
44*b1cdbd2cSJim Jagielski     ::std::stack< sal_uInt32 > m_nCurrentCellBorderIndex; //borders are provided for all cells and need counting
45*b1cdbd2cSJim Jagielski     ::std::stack< sal_Int32 > m_nCurrentHeaderRepeatCount; //counter of repeated headers - if == -1 then the repeating stops
46*b1cdbd2cSJim Jagielski     ::std::stack< sal_Int32 > m_nTableWidthOfCurrentTable; //might be set directly or has to be calculated from the column positions
47*b1cdbd2cSJim Jagielski     bool            m_bOOXML;
48*b1cdbd2cSJim Jagielski 
49*b1cdbd2cSJim Jagielski     ::std::stack< IntVectorPtr >  m_aTableGrid;
50*b1cdbd2cSJim Jagielski     ::std::stack< IntVectorPtr >  m_aGridSpans;
51*b1cdbd2cSJim Jagielski 
52*b1cdbd2cSJim Jagielski     TablePropertiesHandler   *m_pTablePropsHandler;
53*b1cdbd2cSJim Jagielski     PropertyMapPtr            m_pStyleProps;
54*b1cdbd2cSJim Jagielski 
55*b1cdbd2cSJim Jagielski     void pushStackOfMembers();
56*b1cdbd2cSJim Jagielski     void popStackOfMembers();
57*b1cdbd2cSJim Jagielski 
58*b1cdbd2cSJim Jagielski     IntVectorPtr getCurrentGrid();
59*b1cdbd2cSJim Jagielski     IntVectorPtr getCurrentSpans( );
60*b1cdbd2cSJim Jagielski 
61*b1cdbd2cSJim Jagielski public:
62*b1cdbd2cSJim Jagielski 
63*b1cdbd2cSJim Jagielski     DomainMapperTableManager(bool bOOXML);
64*b1cdbd2cSJim Jagielski     virtual ~DomainMapperTableManager();
65*b1cdbd2cSJim Jagielski 
66*b1cdbd2cSJim Jagielski     // use this method to avoid adding the properties for the table
67*b1cdbd2cSJim Jagielski     // but in the provided properties map.
68*b1cdbd2cSJim Jagielski     void SetStyleProperties( PropertyMapPtr pProperties );
69*b1cdbd2cSJim Jagielski 
70*b1cdbd2cSJim Jagielski     virtual bool sprm(Sprm & rSprm);
71*b1cdbd2cSJim Jagielski 
72*b1cdbd2cSJim Jagielski     virtual void startLevel();
73*b1cdbd2cSJim Jagielski     virtual void endLevel();
74*b1cdbd2cSJim Jagielski 
75*b1cdbd2cSJim Jagielski     virtual void endOfCellAction();
76*b1cdbd2cSJim Jagielski     virtual void endOfRowAction();
77*b1cdbd2cSJim Jagielski 
cellProps(TablePropertyMapPtr pProps)78*b1cdbd2cSJim Jagielski     inline virtual void cellProps(TablePropertyMapPtr pProps)
79*b1cdbd2cSJim Jagielski     {
80*b1cdbd2cSJim Jagielski         if ( m_pStyleProps.get( ) )
81*b1cdbd2cSJim Jagielski             m_pStyleProps->insert( pProps, true );
82*b1cdbd2cSJim Jagielski         else
83*b1cdbd2cSJim Jagielski            DomainMapperTableManager_Base_t::cellProps( pProps );
84*b1cdbd2cSJim Jagielski     };
85*b1cdbd2cSJim Jagielski 
cellPropsByCell(unsigned int i,TablePropertyMapPtr pProps)86*b1cdbd2cSJim Jagielski     inline virtual void cellPropsByCell(unsigned int i, TablePropertyMapPtr pProps)
87*b1cdbd2cSJim Jagielski     {
88*b1cdbd2cSJim Jagielski         if ( m_pStyleProps.get( ) )
89*b1cdbd2cSJim Jagielski             m_pStyleProps->insert( pProps, true );
90*b1cdbd2cSJim Jagielski         else
91*b1cdbd2cSJim Jagielski            DomainMapperTableManager_Base_t::cellPropsByCell( i, pProps );
92*b1cdbd2cSJim Jagielski     };
93*b1cdbd2cSJim Jagielski 
insertRowProps(TablePropertyMapPtr pProps)94*b1cdbd2cSJim Jagielski     inline virtual void insertRowProps(TablePropertyMapPtr pProps)
95*b1cdbd2cSJim Jagielski     {
96*b1cdbd2cSJim Jagielski         if ( m_pStyleProps.get( ) )
97*b1cdbd2cSJim Jagielski             m_pStyleProps->insert( pProps, true );
98*b1cdbd2cSJim Jagielski         else
99*b1cdbd2cSJim Jagielski            DomainMapperTableManager_Base_t::insertRowProps( pProps );
100*b1cdbd2cSJim Jagielski     };
101*b1cdbd2cSJim Jagielski 
insertTableProps(TablePropertyMapPtr pProps)102*b1cdbd2cSJim Jagielski     inline virtual void insertTableProps(TablePropertyMapPtr pProps)
103*b1cdbd2cSJim Jagielski     {
104*b1cdbd2cSJim Jagielski         if ( m_pStyleProps.get( ) )
105*b1cdbd2cSJim Jagielski             m_pStyleProps->insert( pProps, true );
106*b1cdbd2cSJim Jagielski         else
107*b1cdbd2cSJim Jagielski            DomainMapperTableManager_Base_t::insertTableProps( pProps );
108*b1cdbd2cSJim Jagielski     };
109*b1cdbd2cSJim Jagielski 
110*b1cdbd2cSJim Jagielski };
111*b1cdbd2cSJim Jagielski 
112*b1cdbd2cSJim Jagielski }}
113*b1cdbd2cSJim Jagielski 
114*b1cdbd2cSJim Jagielski #endif // INCLUDED_DOMAIN_MAPPER_TABLE_MANAGER_HXX
115