summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx')
-rw-r--r--binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx254
1 files changed, 254 insertions, 0 deletions
diff --git a/binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx b/binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx
new file mode 100644
index 000000000000..5c7ed0203c21
--- /dev/null
+++ b/binfilter/bf_sw/source/core/unocore/sw_unoredlines.cxx
@@ -0,0 +1,254 @@
+/* -*- 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 <osl/mutex.hxx>
+#include <vcl/svapp.hxx>
+
+#include "calbck.hxx"
+
+#include <unoredlines.hxx>
+
+#include <errhdl.hxx>
+
+#include <unoredline.hxx>
+#include <tools/debug.hxx>
+#include <pagedesc.hxx>
+#include "poolfmt.hxx"
+
+#include <horiornt.hxx>
+
+#include <doc.hxx>
+#include <docary.hxx>
+#include <redline.hxx>
+#include <com/sun/star/beans/XPropertySet.hpp>
+namespace binfilter {
+
+using namespace ::com::sun::star;
+using namespace ::com::sun::star::lang;
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::text;
+using namespace ::com::sun::star::container;
+using namespace ::com::sun::star::beans;
+
+using rtl::OUString;
+
+/*-- 11.01.01 15:28:54---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+SwXRedlines::SwXRedlines(SwDoc* pDoc) :
+ SwUnoCollection(pDoc)
+{
+}
+/*-- 11.01.01 15:28:55---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+SwXRedlines::~SwXRedlines()
+{
+}
+/*-- 11.01.01 15:28:55---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+sal_Int32 SwXRedlines::getCount( ) throw(RuntimeException)
+{
+ SolarMutexGuard aGuard;
+ if(!IsValid())
+ throw uno::RuntimeException();
+ const SwRedlineTbl& rRedTbl = GetDoc()->GetRedlineTbl();
+ return rRedTbl.Count();
+}
+/*-- 11.01.01 15:28:55---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Any SwXRedlines::getByIndex(sal_Int32 nIndex)
+ throw( IndexOutOfBoundsException, WrappedTargetException, RuntimeException )
+{
+ SolarMutexGuard aGuard;
+ if(!IsValid())
+ throw uno::RuntimeException();
+ const SwRedlineTbl& rRedTbl = GetDoc()->GetRedlineTbl();
+ Any aRet;
+ if(rRedTbl.Count() > nIndex && nIndex >= 0)
+ {
+ Reference <XPropertySet> xRet = SwXRedlines::GetObject( *rRedTbl.GetObject((USHORT)nIndex), *GetDoc() );
+ aRet <<= xRet;
+ }
+ else
+ throw IndexOutOfBoundsException();
+ return aRet;
+}
+/*-- 11.01.01 15:28:55---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Reference< XEnumeration > SwXRedlines::createEnumeration(void)
+ throw( RuntimeException )
+{
+ SolarMutexGuard aGuard;
+ if(!IsValid())
+ throw uno::RuntimeException();
+ const SwRedlineTbl& rRedTbl = GetDoc()->GetRedlineTbl();
+ return Reference< XEnumeration >(new SwXRedlineEnumeration(*GetDoc()));
+}
+/*-- 11.01.01 15:28:55---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Type SwXRedlines::getElementType( ) throw(RuntimeException)
+{
+ return ::getCppuType((Reference<XPropertySet>*)0);
+}
+/*-- 11.01.01 15:28:56---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+sal_Bool SwXRedlines::hasElements( ) throw(RuntimeException)
+{
+ SolarMutexGuard aGuard;
+ if(!IsValid())
+ throw uno::RuntimeException();
+ const SwRedlineTbl& rRedTbl = GetDoc()->GetRedlineTbl();
+ return rRedTbl.Count() > 0;
+}
+/*-- 11.01.01 15:28:56---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+OUString SwXRedlines::getImplementationName(void) throw( RuntimeException )
+{
+ return C2U("SwXRedlines");
+}
+/*-- 11.01.01 15:28:56---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+BOOL SwXRedlines::supportsService(const ::rtl::OUString& ServiceName)
+ throw( RuntimeException )
+{
+ DBG_ERROR("not implemented");
+ return FALSE;
+}
+/*-- 11.01.01 15:28:57---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Sequence< OUString > SwXRedlines::getSupportedServiceNames(void)
+ throw( RuntimeException )
+{
+ DBG_ERROR("not implemented");
+ return Sequence< OUString >();
+}
+/*-- 11.01.01 15:28:57---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+XPropertySet* SwXRedlines::GetObject( SwRedline& rRedline, SwDoc& rDoc )
+{
+ SwPageDesc* pStdDesc = rDoc.GetPageDescFromPool(RES_POOLPAGE_STANDARD);
+ SwClientIter aIter(*pStdDesc);
+ SwXRedline* pxRedline = (SwXRedline*)aIter.First( TYPE( SwXRedline ));
+ while(pxRedline)
+ {
+ if(pxRedline->GetRedline() == &rRedline)
+ break;
+ pxRedline = (SwXRedline*)aIter.Next();
+ }
+ if( !pxRedline )
+ pxRedline = new SwXRedline(rRedline, rDoc);
+ return pxRedline;
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+SwXRedlineEnumeration::SwXRedlineEnumeration(SwDoc& rDoc) :
+ pDoc(&rDoc),
+ nCurrentIndex(0)
+{
+ pDoc->GetPageDescFromPool(RES_POOLPAGE_STANDARD)->Add(this);
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+SwXRedlineEnumeration::~SwXRedlineEnumeration()
+{
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+BOOL SwXRedlineEnumeration::hasMoreElements(void) throw( RuntimeException )
+{
+ if(!pDoc)
+ throw RuntimeException();
+ return pDoc->GetRedlineTbl().Count() > nCurrentIndex;
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Any SwXRedlineEnumeration::nextElement(void)
+ throw( NoSuchElementException, WrappedTargetException, RuntimeException )
+{
+ if(!pDoc)
+ throw RuntimeException();
+ const SwRedlineTbl& rRedTbl = pDoc->GetRedlineTbl();
+ if(!(rRedTbl.Count() > nCurrentIndex))
+ throw NoSuchElementException();
+ Reference <XPropertySet> xRet = SwXRedlines::GetObject( *rRedTbl.GetObject(nCurrentIndex++), *pDoc );
+ Any aRet;
+ aRet <<= xRet;
+ return aRet;
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+rtl::OUString SwXRedlineEnumeration::getImplementationName(void) throw( RuntimeException )
+{
+ return C2U("SwXRedlineEnumeration");
+}
+/*-- 12.01.01 15:06:10---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+BOOL SwXRedlineEnumeration::supportsService(const ::rtl::OUString& ServiceName) throw( RuntimeException )
+{
+ return FALSE;
+}
+/*-- 12.01.01 15:06:11---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+Sequence< OUString > SwXRedlineEnumeration::getSupportedServiceNames(void) throw( RuntimeException )
+{
+ return Sequence< OUString >();
+}
+/*-- 12.01.01 15:06:11---------------------------------------------------
+
+ -----------------------------------------------------------------------*/
+void SwXRedlineEnumeration::Modify( SfxPoolItem *pOld, SfxPoolItem *pNew)
+{
+ ClientModify(this, pOld, pNew);
+ if(!GetRegisteredIn())
+ pDoc = 0;
+}
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */