summaryrefslogtreecommitdiff
path: root/binfilter/bf_sc/source/ui/app/sc_scdll.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sc/source/ui/app/sc_scdll.cxx')
-rw-r--r--binfilter/bf_sc/source/ui/app/sc_scdll.cxx136
1 files changed, 136 insertions, 0 deletions
diff --git a/binfilter/bf_sc/source/ui/app/sc_scdll.cxx b/binfilter/bf_sc/source/ui/app/sc_scdll.cxx
new file mode 100644
index 000000000000..8e02bef1b2ff
--- /dev/null
+++ b/binfilter/bf_sc/source/ui/app/sc_scdll.cxx
@@ -0,0 +1,136 @@
+/* -*- 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/eeitem.hxx>
+#define ITEMID_FIELD EE_FEATURE_FIELD
+
+#include "scitems.hxx" // fuer tbxctrls etc.
+#include "scmod.hxx"
+#include "scresid.hxx"
+#include "bf_sc.hrc"
+#include "cfgids.hxx"
+
+//! die Registrierung wird wegen CLOOKs in ein eigenes File wandern muessen...
+
+// Interface-Registrierung
+#include "docsh.hxx"
+#include "docpool.hxx"
+#include "appoptio.hxx"
+
+#include <bf_svx/itemdata.hxx>
+
+
+#include <bf_svtools/imgdef.hxx>
+
+#include <bf_svx/svdfield.hxx> // SdrRegisterFieldClasses
+#include <rtl/logfile.hxx>
+
+namespace binfilter {
+
+//------------------------------------------------------------------
+
+/*N*/ ScResId::ScResId( USHORT nId ) :
+/*N*/ ResId( nId, *SC_MOD()->GetResMgr() )
+/*N*/ {
+/*N*/ }
+
+//------------------------------------------------------------------
+
+/*N*/ void ScDLL::Init()
+/*N*/ {
+/*N*/ RTL_LOGFILE_CONTEXT_AUTHOR ( aLog, "sc", "nn93723", "ScDLL::Init" );
+/*N*/
+/*N*/ // called directly after loading the DLL
+/*N*/ // do whatever you want, you may use Sxx-DLL too
+/*N*/
+/*N*/ ScDocumentPool::InitVersionMaps(); // wird im ScModule ctor gebraucht
+/*N*/
+/*N*/ // the ScModule must be created
+/*N*/ ScModuleDummy **ppShlPtr = (ScModuleDummy**) GetAppData(BF_SHL_CALC);
+/*N*/ SvFactory *pFact = (SvFactory*)(*ppShlPtr)->pScDocShellFactory;
+/*N*/ delete (*ppShlPtr);
+/*N*/ ScModule* pMod = new ScModule((SfxObjectFactory*)pFact);
+/*N*/ (*ppShlPtr) = pMod;
+/*N*/ (*ppShlPtr)->pScDocShellFactory = pFact;
+/*N*/
+/*N*/ ScGlobal::Init(); // erst wenn der ResManager initialisiert ist
+/*N*/ // erst nach ScGlobal::Init duerfen die App-Optionen
+/*N*/ // initialisiert werden
+/*N*/
+/*N*/ // Edit-Engine-Felder, soweit nicht schon in OfficeApplication::Init
+/*N*/
+/*N*/ SvClassManager& rClassManager = SvxFieldItem::GetClassManager();
+/*N*/ // rClassManager.SV_CLASS_REGISTER( SvxURLField );
+/*N*/ // rClassManager.SV_CLASS_REGISTER( SvxDateField );
+/*N*/ // rClassManager.SV_CLASS_REGISTER( SvxPageField );
+/*N*/ rClassManager.SV_CLASS_REGISTER( SvxPagesField );
+/*N*/ // rClassManager.SV_CLASS_REGISTER( SvxTimeField );
+/*N*/ rClassManager.SV_CLASS_REGISTER( SvxFileField );
+/*N*/ // rClassManager.SV_CLASS_REGISTER( SvxExtFileField );
+/*N*/ rClassManager.SV_CLASS_REGISTER( SvxTableField );
+/*N*/
+/*N*/ SdrRegisterFieldClasses(); // SvDraw-Felder registrieren
+/*N*/
+/*N*/ pMod->PutItem( SfxUInt16Item( SID_ATTR_METRIC, pMod->GetAppOptions().GetAppMetric() ) );
+/*N*/
+/*N*/ // StarOne Services are now handled in the registry
+/*N*/ }
+
+/*N*/ void ScDLL::Exit()
+/*N*/ {
+/*N*/ // called directly befor unloading the DLL
+/*N*/ // do whatever you want, Sxx-DLL is accessible
+/*N*/
+/*N*/ // the SxxModule must be destroyed
+/*N*/ ScModuleDummy **ppShlPtr = (ScModuleDummy**) GetAppData(BF_SHL_CALC);
+/*N*/ delete (*ppShlPtr);
+/*N*/ (*ppShlPtr) = NULL;
+/*N*/
+/*N*/ // auf keinen Fall ein neues ScModuleDummy anlegen, weil dessen vtable sonst
+/*N*/ // in der DLL waere und das Loeschen im LibExit schiefgehen wuerde
+/*N*/
+/*N*/ // ScGlobal::Clear ist schon im Module-dtor
+/*N*/ }
+
+//------------------------------------------------------------------
+// Statusbar
+//------------------------------------------------------------------
+
+#define TEXT_WIDTH(s) rStatusBar.GetTextWidth((s))
+
+
+#undef TEXT_WIDTH
+
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */