summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx')
-rw-r--r--binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx108
1 files changed, 108 insertions, 0 deletions
diff --git a/binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx b/binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx
new file mode 100644
index 000000000000..3d394139246b
--- /dev/null
+++ b/binfilter/bf_sw/source/ui/globdoc/sw_globdoc.cxx
@@ -0,0 +1,108 @@
+/* -*- 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 <comphelper/classids.hxx>
+
+#include "swtypes.hxx"
+
+
+#include "shellio.hxx"
+#include "globdoc.hxx"
+#include "globdoc.hrc"
+namespace binfilter {
+
+/*--------------------------------------------------------------------
+ Beschreibung: Alle Filter registrieren
+ --------------------------------------------------------------------*/
+
+// 4.0: {340AC970-E30D-11d0-A53F-00A0249D57B1}
+// 4.0: 0x340ac970, 0xe30d, 0x11d0, 0xa5, 0x3f, 0x0, 0xa0, 0x24, 0x9d, 0x57, 0xb1
+// 5.0: 0xc20cf9d3, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, 0x60, 0x97, 0xda, 0x56, 0x1a
+/*N*/ SFX_IMPL_OBJECTFACTORY_LOD(SwGlobalDocShell, SFXOBJECTSHELL_STD_NORMAL|SFXOBJECTSHELL_HASMENU, /*swriter4/GlobalDocument,*/ \
+/*N*/ SvGlobalName(BF_SO3_SWGLOB_CLASSID) , Sw)
+
+/*N*/ TYPEINIT1(SwGlobalDocShell, SwDocShell);
+
+/*N*/ SwGlobalDocShell::SwGlobalDocShell(SfxObjectCreateMode eMode ) :
+/*N*/ SwDocShell(eMode)
+/*N*/ {
+/*N*/ }
+
+/*N*/ SwGlobalDocShell::~SwGlobalDocShell()
+/*N*/ {
+/*N*/ }
+
+/*N*/ void SwGlobalDocShell::FillClass( SvGlobalName * pClassName,
+/*N*/ ULONG * pClipFormat,
+/*N*/ String * pAppName,
+/*N*/ String * pLongUserName,
+/*N*/ String * pUserName,
+/*N*/ long nVersion ) const
+/*N*/ {
+/*N*/ SfxInPlaceObject::FillClass(pClassName, pClipFormat, pAppName, pLongUserName,
+/*N*/ pUserName, nVersion);
+/*N*/
+/*N*/ if (nVersion == SOFFICE_FILEFORMAT_40)
+/*N*/ {
+/*?*/ *pClassName = SvGlobalName( BF_SO3_SWGLOB_CLASSID_40 );
+/*?*/ *pClipFormat = SOT_FORMATSTR_ID_STARWRITERGLOB_40;
+/*?*/ *pAppName = String::CreateFromAscii("StarWriter 4.0/GlobalDocument");
+/*?*/
+/*?*/ *pLongUserName = SW_RESSTR(STR_WRITER_GLOBALDOC_FULLTYPE_40);
+/*N*/ }
+/*N*/ else if (nVersion == SOFFICE_FILEFORMAT_50)
+/*N*/ {
+/*N*/ *pClassName = SvGlobalName( BF_SO3_SWGLOB_CLASSID_50 );
+/*N*/ *pClipFormat = SOT_FORMATSTR_ID_STARWRITERGLOB_50;
+/*N*/ *pLongUserName = SW_RESSTR(STR_WRITER_GLOBALDOC_FULLTYPE_50);
+/*N*/ }
+/*N*/ else if (nVersion == SOFFICE_FILEFORMAT_60)
+/*N*/ {
+/*N*/ *pLongUserName = SW_RESSTR(STR_WRITER_GLOBALDOC_FULLTYPE);
+
+ // for binfilter, we need the FormatIDs to be set. Not setting them
+ // has always been an error (!)
+ *pClassName = SvGlobalName( BF_SO3_SWGLOB_CLASSID_60 );
+ *pClipFormat = SOT_FORMATSTR_ID_STARWRITERGLOB_60;
+
+/*N*/ }
+/*N*/
+/*N*/ *pUserName = SW_RESSTR(STR_HUMAN_SWGLOBDOC_NAME);
+/*N*/ }
+
+
+
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */