Bump version to 4.1-6
[LibreOffice.git] / writerfilter / source / dmapper / CellMarginHandler.cxx
blob61198310c67df509ff6c2e2545c5363a58a97842
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 #include <CellMarginHandler.hxx>
20 #include <PropertyMap.hxx>
21 #include <doctok/resourceids.hxx>
22 #include <ConversionHelper.hxx>
23 #include <ooxml/resourceids.hxx>
24 #include "dmapperLoggers.hxx"
26 namespace writerfilter {
27 namespace dmapper {
29 using namespace ::com::sun::star;
30 using namespace ::writerfilter;
32 CellMarginHandler::CellMarginHandler() :
33 LoggedProperties(dmapper_logger, "CellMarginHandler"),
34 m_nValue( 0 ),
35 m_nLeftMargin( 0 ),
36 m_bLeftMarginValid( false ),
37 m_nRightMargin( 0 ),
38 m_bRightMarginValid( false ),
39 m_nTopMargin( 0 ),
40 m_bTopMarginValid( false ),
41 m_nBottomMargin( 0 ),
42 m_bBottomMarginValid( false )
46 CellMarginHandler::~CellMarginHandler()
50 void CellMarginHandler::lcl_attribute(Id rName, Value & rVal)
52 sal_Int32 nIntValue = rVal.getInt();
53 (void)nIntValue;
54 (void)rName;
55 switch( rName )
57 case NS_ooxml::LN_CT_TblWidth_w:
58 m_nValue = ConversionHelper::convertTwipToMM100( nIntValue );
59 break;
60 case NS_ooxml::LN_CT_TblWidth_type:
61 OSL_ENSURE( NS_ooxml::LN_Value_ST_TblWidth_dxa == sal::static_int_cast<Id>(nIntValue), "cell margins work for absolute values, only");
62 break;
63 default:
64 OSL_FAIL( "unknown attribute");
68 void CellMarginHandler::lcl_sprm(Sprm & rSprm)
70 writerfilter::Reference<Properties>::Pointer_t pProperties = rSprm.getProps();
71 if( pProperties.get())
73 pProperties.get()->resolve( *this );
74 bool rtl = false; // TODO
75 switch( rSprm.getId() )
77 case NS_ooxml::LN_CT_TblCellMar_top:
78 case NS_ooxml::LN_CT_TcMar_top:
79 m_nTopMargin = m_nValue;
80 m_bTopMarginValid = true;
81 break;
82 case NS_ooxml::LN_CT_TblCellMar_start:
83 if( rtl )
85 m_nRightMargin = m_nValue;
86 m_bRightMarginValid = true;
88 else
90 m_nLeftMargin = m_nValue;
91 m_bLeftMarginValid = true;
93 break;
94 case NS_ooxml::LN_CT_TblCellMar_left:
95 case NS_ooxml::LN_CT_TcMar_left:
96 m_nLeftMargin = m_nValue;
97 m_bLeftMarginValid = true;
98 break;
99 case NS_ooxml::LN_CT_TblCellMar_bottom:
100 case NS_ooxml::LN_CT_TcMar_bottom:
101 m_nBottomMargin = m_nValue;
102 m_bBottomMarginValid = true;
103 break;
104 case NS_ooxml::LN_CT_TblCellMar_end:
105 if( rtl )
107 m_nLeftMargin = m_nValue;
108 m_bLeftMarginValid = true;
110 else
112 m_nRightMargin = m_nValue;
113 m_bRightMarginValid = true;
115 break;
116 case NS_ooxml::LN_CT_TblCellMar_right:
117 case NS_ooxml::LN_CT_TcMar_right:
118 m_nRightMargin = m_nValue;
119 m_bRightMarginValid = true;
120 break;
121 default:
122 OSL_FAIL( "unknown sprm");
125 m_nValue = 0;
127 } //namespace dmapper
128 } //namespace writerfilter
130 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */