summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpparaborderoverride.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpparaborderoverride.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpparaborderoverride.cxx386
1 files changed, 386 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpparaborderoverride.cxx b/lotuswordpro/source/filter/lwpparaborderoverride.cxx
new file mode 100644
index 000000000..dc0a11c8f
--- /dev/null
+++ b/lotuswordpro/source/filter/lwpparaborderoverride.cxx
@@ -0,0 +1,386 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: IBM Corporation
+ *
+ * Copyright: 2008 by IBM Corporation
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+/*************************************************************************
+* @file
+* Border override of Wordpro.
+************************************************************************/
+#include <memory>
+
+#include "clone.hxx"
+#include "lwpparaborderoverride.hxx"
+#include "lwpborderstuff.hxx"
+#include "lwpshadow.hxx"
+#include "lwpmargins.hxx"
+#include <sal/log.hxx>
+
+LwpParaBorderOverride::LwpParaBorderOverride()
+{
+ m_pBorderStuff.reset(new LwpBorderStuff());
+ m_pBetweenStuff.reset(new LwpBorderStuff());
+ m_pShadow.reset(new LwpShadow());
+ m_pMargins.reset(new LwpMargins());
+
+ m_eAboveType = PB_NONE;
+ m_eBelowType = PB_NONE;
+ m_eRightType = PB_NONE;
+ m_eBetweenType = PB_NONE;
+
+ m_nAboveWidth = 0;
+ m_nBelowWidth = 0;
+ m_nBetweenWidth = 0;
+ m_nRightWidth = 0;
+
+ m_nBetweenMargin = 0;
+}
+
+LwpParaBorderOverride::LwpParaBorderOverride(LwpParaBorderOverride const& rOther)
+ : LwpOverride(rOther)
+ , m_eAboveType(rOther.m_eAboveType)
+ , m_eBelowType(rOther.m_eBelowType)
+ , m_eRightType(rOther.m_eRightType)
+ , m_eBetweenType(rOther.m_eBetweenType)
+ , m_nAboveWidth(rOther.m_nAboveWidth)
+ , m_nBelowWidth(rOther.m_nBelowWidth)
+ , m_nBetweenWidth(rOther.m_nBetweenWidth)
+ , m_nRightWidth(rOther.m_nRightWidth)
+ , m_nBetweenMargin(rOther.m_nBetweenMargin)
+{
+ m_pBorderStuff.reset(::clone(rOther.m_pBorderStuff.get()));
+ m_pBetweenStuff.reset(::clone(rOther.m_pBetweenStuff.get()));
+ m_pShadow.reset(::clone(rOther.m_pShadow.get()));
+ m_pMargins.reset(::clone(rOther.m_pMargins.get()));
+}
+
+LwpParaBorderOverride::~LwpParaBorderOverride() {}
+
+LwpParaBorderOverride* LwpParaBorderOverride::clone() const
+{
+ return new LwpParaBorderOverride(*this);
+}
+
+namespace
+{
+LwpParaBorderOverride::BorderWidthType readBorderWidthType(LwpObjectStream* stream)
+{
+ sal_uInt16 n = stream->QuickReaduInt16();
+ if (n > LwpParaBorderOverride::PB_CUSTOMWIDTH)
+ {
+ SAL_WARN("lwp", "bad BorderWidthType " << n);
+ n = LwpParaBorderOverride::PB_NONE;
+ }
+ return static_cast<LwpParaBorderOverride::BorderWidthType>(n);
+}
+}
+
+void LwpParaBorderOverride::Read(LwpObjectStream* pStrm)
+{
+ if (pStrm->QuickReadBool())
+ {
+ ReadCommon(pStrm);
+ //start here:
+ m_pBorderStuff->Read(pStrm);
+ m_pShadow->Read(pStrm);
+ m_pMargins->Read(pStrm);
+
+ m_eAboveType = readBorderWidthType(pStrm);
+ m_eBelowType = readBorderWidthType(pStrm);
+ m_eRightType = readBorderWidthType(pStrm);
+
+ if (pStrm->CheckExtra())
+ {
+ m_pBetweenStuff->Read(pStrm);
+
+ m_eBetweenType = readBorderWidthType(pStrm);
+ m_nBetweenWidth = pStrm->QuickReaduInt32();
+ m_nBetweenMargin = pStrm->QuickReaduInt32();
+
+ if (pStrm->CheckExtra())
+ {
+ m_eRightType = readBorderWidthType(pStrm);
+ m_nRightWidth = pStrm->QuickReaduInt32();
+ }
+ }
+ }
+
+ pStrm->SkipExtra();
+}
+
+void LwpParaBorderOverride::Override(LwpParaBorderOverride* pOther)
+{
+ if (m_nApply & PBO_STUFF)
+ {
+ if (IsBorderStuffOverridden())
+ {
+ pOther->OverrideBorderStuff(m_pBorderStuff.get());
+ }
+ else
+ {
+ pOther->RevertBorderStuff();
+ }
+ }
+
+ if (m_nApply & PBO_BETWEENSTUFF)
+ {
+ if (IsBetweenStuffOverridden())
+ {
+ pOther->OverrideBetweenStuff(m_pBetweenStuff.get());
+ }
+ else
+ {
+ pOther->RevertBetweenStuff();
+ }
+ }
+
+ if (m_nApply & PBO_SHADOW)
+ {
+ if (IsShadowOverridden())
+ {
+ pOther->OverrideShadow(m_pShadow.get());
+ }
+ else
+ {
+ pOther->RevertShadow();
+ }
+ }
+
+ if (m_nApply & PBO_MARGINS)
+ {
+ if (IsMarginsOverridden())
+ {
+ pOther->OverrideMargins(m_pMargins.get());
+ }
+ else
+ {
+ pOther->RevertMargins();
+ }
+ }
+
+ if (m_nApply & PBO_ABOVETYPE)
+ {
+ if (IsAboveTypeOverridden())
+ {
+ pOther->OverrideAboveType(m_eAboveType);
+ }
+ else
+ {
+ pOther->RevertAboveType();
+ }
+ }
+
+ if (m_nApply & PBO_BELOWTYPE)
+ {
+ if (IsBelowTypeOverridden())
+ {
+ pOther->OverrideBelowType(m_eBelowType);
+ }
+ else
+ {
+ pOther->RevertBelowType();
+ }
+ }
+
+ if (m_nApply & PBO_RIGHTTYPE)
+ {
+ if (IsRightTypeOverridden())
+ {
+ pOther->OverrideRightType(m_eRightType);
+ }
+ else
+ {
+ pOther->RevertRightType();
+ }
+ }
+
+ if (m_nApply & PBO_BETWEENTYPE)
+ {
+ if (IsBetweenTypeOverridden())
+ {
+ pOther->OverrideBetweenType(m_eBetweenType);
+ }
+ else
+ {
+ pOther->RevertBetweenType();
+ }
+ }
+
+ if (m_nApply & PBO_ABOVE)
+ {
+ if (IsAboveWidthOverridden())
+ {
+ pOther->OverrideAboveWidth(m_nAboveWidth);
+ }
+ else
+ {
+ pOther->RevertAboveWidth();
+ }
+ }
+
+ if (m_nApply & PBO_BELOW)
+ {
+ if (IsBelowWidthOverridden())
+ {
+ pOther->OverrideBelowWidth(m_nBelowWidth);
+ }
+ else
+ {
+ pOther->RevertBelowWidth();
+ }
+ }
+
+ if (m_nApply & PBO_BETWEEN)
+ {
+ if (IsBetweenWidthOverridden())
+ {
+ pOther->OverrideBetweenWidth(m_nBetweenWidth);
+ }
+ else
+ {
+ pOther->RevertBetweenWidth();
+ }
+ }
+
+ if (m_nApply & PBO_BETWEENMARGIN)
+ {
+ if (IsBetweenMarginOverridden())
+ {
+ pOther->OverrideBetweenMargin(m_nBetweenMargin);
+ }
+ else
+ {
+ pOther->RevertBetweenMargin();
+ }
+ }
+
+ if (m_nApply & PBO_RIGHT)
+ {
+ if (IsRightWidthOverridden())
+ {
+ pOther->OverrideRightWidth(m_nRightWidth);
+ }
+ else
+ {
+ pOther->RevertRightWidth();
+ }
+ }
+}
+
+void LwpParaBorderOverride::OverrideBorderStuff(LwpBorderStuff const* pBorderStuff)
+{
+ *m_pBorderStuff = *pBorderStuff;
+ LwpOverride::Override(PBO_STUFF, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBetweenStuff(LwpBorderStuff const* pBorderStuff)
+{
+ *m_pBetweenStuff = *pBorderStuff;
+ LwpOverride::Override(PBO_BETWEENSTUFF, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideShadow(LwpShadow const* pShadow)
+{
+ *m_pShadow = *pShadow;
+ LwpOverride::Override(PBO_SHADOW, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideMargins(LwpMargins const* pMargins)
+{
+ *m_pMargins = *pMargins;
+ LwpOverride::Override(PBO_MARGINS, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideAboveType(BorderWidthType eNewType)
+{
+ m_eAboveType = eNewType;
+ LwpOverride::Override(PBO_ABOVETYPE, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBelowType(BorderWidthType eNewType)
+{
+ m_eBelowType = eNewType;
+ LwpOverride::Override(PBO_BELOWTYPE, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideRightType(BorderWidthType eNewType)
+{
+ m_eRightType = eNewType;
+ LwpOverride::Override(PBO_RIGHTTYPE, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBetweenType(BorderWidthType eNewType)
+{
+ m_eBetweenType = eNewType;
+ LwpOverride::Override(PBO_BETWEENTYPE, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideAboveWidth(sal_uInt32 nNewWidth)
+{
+ m_nAboveWidth = nNewWidth;
+ LwpOverride::Override(PBO_ABOVE, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBelowWidth(sal_uInt32 nNewWidth)
+{
+ m_nBelowWidth = nNewWidth;
+ LwpOverride::Override(PBO_BELOW, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBetweenWidth(sal_uInt32 nNewWidth)
+{
+ m_nBetweenWidth = nNewWidth;
+ LwpOverride::Override(PBO_BETWEEN, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideRightWidth(sal_uInt32 nNewWidth)
+{
+ m_nRightWidth = nNewWidth;
+ LwpOverride::Override(PBO_RIGHT, STATE_ON);
+}
+void LwpParaBorderOverride::OverrideBetweenMargin(sal_uInt32 nNewMargin)
+{
+ m_nBetweenMargin = nNewMargin;
+ LwpOverride::Override(PBO_BETWEENMARGIN, STATE_ON);
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */