summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/core/attr/sw_cellatr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sw/source/core/attr/sw_cellatr.cxx')
-rw-r--r--binfilter/bf_sw/source/core/attr/sw_cellatr.cxx170
1 files changed, 170 insertions, 0 deletions
diff --git a/binfilter/bf_sw/source/core/attr/sw_cellatr.cxx b/binfilter/bf_sw/source/core/attr/sw_cellatr.cxx
new file mode 100644
index 000000000000..4ddff805549c
--- /dev/null
+++ b/binfilter/bf_sw/source/core/attr/sw_cellatr.cxx
@@ -0,0 +1,170 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+
+#ifdef _MSC_VER
+#pragma hdrstop
+#endif
+
+#include <float.h>
+
+#include <cellatr.hxx>
+
+#include <horiornt.hxx>
+
+#include <doc.hxx>
+#include <swtable.hxx>
+
+#include <errhdl.hxx>
+
+#include <node.hxx>
+#include <hints.hxx>
+namespace binfilter {
+
+
+
+//TYPEINIT1( SwFmt, SwClient ); //rtti fuer SwFmt
+
+/*************************************************************************
+|*
+*************************************************************************/
+
+
+/*N*/ SwTblBoxNumFormat::SwTblBoxNumFormat( UINT32 nFormat, BOOL bFlag )
+/*N*/ : SfxUInt32Item( RES_BOXATR_FORMAT, nFormat ), bAuto( bFlag )
+/*N*/ {
+/*N*/ }
+
+
+/*N*/ int SwTblBoxNumFormat::operator==( const SfxPoolItem& rAttr ) const
+/*N*/ {
+/*N*/ ASSERT( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
+/*N*/ return GetValue() == ((SwTblBoxNumFormat&)rAttr).GetValue() &&
+/*N*/ bAuto == ((SwTblBoxNumFormat&)rAttr).bAuto;
+/*N*/ }
+
+
+/*N*/ SfxPoolItem* SwTblBoxNumFormat::Clone( SfxItemPool* ) const
+/*N*/ {
+/*N*/ return new SwTblBoxNumFormat( GetValue(), bAuto );
+/*N*/ }
+
+
+/*************************************************************************
+|*
+*************************************************************************/
+
+
+
+/*N*/ SwTblBoxFormula::SwTblBoxFormula( const String& rFormula )
+/*N*/ : SfxPoolItem( RES_BOXATR_FORMULA ),
+/*N*/ SwTableFormula( rFormula ),
+/*N*/ pDefinedIn( 0 )
+/*N*/ {
+/*N*/ }
+
+
+/*N*/ int SwTblBoxFormula::operator==( const SfxPoolItem& rAttr ) const
+/*N*/ {
+/*?*/ ASSERT( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
+ /*?*/ return GetFormula() == ((SwTblBoxFormula&)rAttr).GetFormula() &&
+ /*?*/ pDefinedIn == ((SwTblBoxFormula&)rAttr).pDefinedIn;
+/*N*/ }
+
+
+/*N*/ SfxPoolItem* SwTblBoxFormula::Clone( SfxItemPool* ) const
+/*N*/ {
+/*?*/ // auf externe Darstellung umschalten!!
+ SwTblBoxFormula* pNew = new SwTblBoxFormula( GetFormula() );
+ pNew->SwTableFormula::operator=( *this );
+ return pNew;
+/*N*/ }
+
+
+
+ // suche den Node, in dem die Formel steht:
+ // TextFeld -> TextNode,
+ // BoxAttribut -> BoxStartNode
+ // !!! MUSS VON JEDER ABLEITUNG UEBERLADEN WERDEN !!!
+/*N*/ const SwNode* SwTblBoxFormula::GetNodeOfFormula() const
+/*N*/ {
+/*?*/ const SwNode* pRet = 0;
+ if( pDefinedIn )
+ {
+ SwClient* pBox = SwClientIter( *pDefinedIn ).First( TYPE( SwTableBox ));
+ if( pBox )
+ pRet = ((SwTableBox*)pBox)->GetSttNd();
+ }
+ return pRet;
+/*N*/ }
+
+
+SwTableBox* SwTblBoxFormula::GetTableBox()
+{
+ SwTableBox* pBox = 0;
+ if( pDefinedIn )
+ pBox = (SwTableBox*)SwClientIter( *pDefinedIn ).
+ First( TYPE( SwTableBox ));
+ return pBox;
+}
+
+/*************************************************************************
+|*
+*************************************************************************/
+
+
+/*N*/ SwTblBoxValue::SwTblBoxValue()
+/*N*/ : SfxPoolItem( RES_BOXATR_VALUE ), nValue( 0 )
+/*N*/ {
+/*N*/ }
+
+
+/*N*/ SwTblBoxValue::SwTblBoxValue( const double nVal )
+/*N*/ : SfxPoolItem( RES_BOXATR_VALUE ), nValue( nVal )
+/*N*/ {
+/*N*/ }
+
+
+/*N*/ int SwTblBoxValue::operator==( const SfxPoolItem& rAttr ) const
+/*N*/ {
+/*N*/ ASSERT( SfxPoolItem::operator==( rAttr ), "keine gleichen Attribute" );
+/*N*/ return nValue == ((SwTblBoxValue&)rAttr).nValue;
+/*N*/ }
+
+
+/*N*/ SfxPoolItem* SwTblBoxValue::Clone( SfxItemPool* ) const
+/*N*/ {
+/*N*/ return new SwTblBoxValue( nValue );
+/*N*/ }
+
+
+
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */