summaryrefslogtreecommitdiffstats
path: root/bf_sch/source/ui/app/sch_schdll.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bf_sch/source/ui/app/sch_schdll.cxx')
-rw-r--r--bf_sch/source/ui/app/sch_schdll.cxx151
1 files changed, 151 insertions, 0 deletions
diff --git a/bf_sch/source/ui/app/sch_schdll.cxx b/bf_sch/source/ui/app/sch_schdll.cxx
new file mode 100644
index 000000000..a064eab32
--- /dev/null
+++ b/bf_sch/source/ui/app/sch_schdll.cxx
@@ -0,0 +1,151 @@
+/* -*- 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 <bf_svx/svxids.hrc>
+
+#include "docshell.hxx"
+#include "schmod.hxx"
+#include "app.hrc"
+#include "schresid.hxx"
+#include "memchrt.hxx"
+#include "res_bmp.hrc" // contains define for RID_MENU, RID_ACCEL
+
+#include "globopt.hxx"
+namespace binfilter {
+
+/*************************************************************************
+|*
+|* Initialisierung aus SfxApplicaton::Init()
+|*
+\************************************************************************/
+
+/*N*/ void SchDLL::Init()
+/*N*/ {
+/*N*/ // called directly after loading the DLL
+/*N*/ // do whatever you want, you may use Sd-DLL too
+/*N*/
+/*N*/ // the SchModule must be created (may loaded by doc-fac or direct)
+/*N*/ SchModuleDummy** ppShlPtr = (SchModuleDummy**) GetAppData(BF_SHL_SCH);
+/*N*/ if ( (*ppShlPtr)->IsLoaded() ) return;
+/*N*/
+/*N*/ SvFactory* pFact = PTR_CAST(SvFactory,(*ppShlPtr)->pSchChartDocShellFactory);
+/*N*/
+/*N*/ delete (*ppShlPtr);
+/*N*/ (*ppShlPtr) = new SchModule(pFact);
+/*N*/
+/*N*/ SfxModule* pMod = SCH_MOD();
+/*N*/
+/*N*/ pMod->PutItem( SfxUInt16Item( SID_ATTR_METRIC, ::binfilter::sch::util::GetMeasureUnit() ));
+/*N*/ }
+
+/*************************************************************************
+|*
+|* Deinitialisierung
+|*
+\************************************************************************/
+
+/*N*/ void SchDLL::Exit()
+/*N*/ {
+/*N*/ // the SchModule must be destroyed
+/*N*/ SchModuleDummy** ppShlPtr = (SchModuleDummy**) GetAppData(BF_SHL_SCH);
+/*N*/ delete (*ppShlPtr);
+/*N*/ (*ppShlPtr) = NULL;
+/*N*/ }
+
+/*N*/ extern_c void __LOADONCALLAPI SchUpdate( SvInPlaceObjectRef aIPObj,
+/*N*/ SchMemChart* pData, OutputDevice* /*pOut*/ )
+/*N*/ {
+/*N*/ SchChartDocShellRef aSchChartDocShellRef = &aIPObj;
+/*N*/
+/*N*/ if( aSchChartDocShellRef.Is() )
+/*N*/ {
+/*N*/ #ifdef DBG_UTIL
+/*N*/ if( !pData )
+/*N*/ OSL_TRACE( "SchUpdate was called without MemChart" );
+/*N*/ #endif
+/*N*/ ChartModel& rDoc = aSchChartDocShellRef->GetDoc();
+/*N*/
+/*N*/ if( pData )
+/*N*/ {
+/*N*/ rDoc.SetChartDataBuffered( *pData, FALSE ); // don't update titles. This can't be done via SchUpdate
+/*N*/ rDoc.CheckForNewAxisNumFormat();
+/*N*/ rDoc.SetChanged(); // #72576#
+/*N*/
+/*N*/ ::com::sun::star::chart::ChartDataChangeEvent aEvent;
+/*N*/ aEvent.Type = ::com::sun::star::chart::ChartDataChangeType_ALL;
+/*N*/ aEvent.StartColumn = 0;
+/*N*/ aEvent.EndColumn = 0;
+/*N*/ aEvent.StartRow = 0;
+/*N*/ aEvent.EndRow = 0;
+/*N*/
+/*N*/ aSchChartDocShellRef->DataModified( aEvent );
+/*N*/ }
+/*N*/ else
+/*N*/ {
+/*N*/ rDoc.BuildChart( FALSE );
+/*N*/ }
+/*N*/ }
+/*N*/
+/*N*/ aIPObj->SendViewChanged();
+/*N*/ }
+
+/*N*/ extern_c SchMemChart* __LOADONCALLAPI SchGetChartData (SvInPlaceObjectRef aIPObj)
+/*N*/ {
+/*N*/ SchChartDocShellRef aSchChartDocShellRef = &aIPObj;
+/*N*/
+/*N*/ if (aSchChartDocShellRef.Is())
+/*N*/ {
+/*N*/ ChartModel& rDoc = aSchChartDocShellRef->GetDoc();
+/*N*/ SchMemChart* pMemChart = rDoc.GetChartData ();
+/*N*/
+/*N*/ if (pMemChart)
+/*N*/ {
+/*N*/ pMemChart->SetMainTitle(rDoc.MainTitle());
+/*N*/ pMemChart->SetSubTitle(rDoc.SubTitle());
+/*N*/ pMemChart->SetXAxisTitle(rDoc.XAxisTitle());
+/*N*/ pMemChart->SetYAxisTitle(rDoc.YAxisTitle());
+/*N*/ pMemChart->SetZAxisTitle(rDoc.ZAxisTitle());
+/*N*/ }
+/*N*/
+/*N*/ return pMemChart;
+/*N*/ }
+/*N*/ else return 0;
+/*N*/ }
+
+/*N*/ extern_c SchMemChart* __LOADONCALLAPI SchNewMemChartXY (short nCols, short nRows)
+/*N*/ {
+/*N*/ return new SchMemChart (nCols, nRows);
+/*N*/ }
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */