nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / globdoc / globdoc.cxx
blob283b5a016a45b41bc6bf7cb82c4c96091809004d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <comphelper/fileformat.h>
21 #include <comphelper/classids.hxx>
22 #include <osl/diagnose.h>
23 #include <tools/globname.hxx>
25 #include <swtypes.hxx>
26 #include <globdoc.hxx>
27 #include <strings.hrc>
29 // Description: Register all filters
32 SFX_IMPL_OBJECTFACTORY( SwGlobalDocShell, SvGlobalName(SO3_SWGLOB_CLASSID), "swriter/GlobalDocument" )
34 SwGlobalDocShell::SwGlobalDocShell(SfxObjectCreateMode eMode ) :
35 SwDocShell(eMode)
39 SwGlobalDocShell::~SwGlobalDocShell()
43 void SwGlobalDocShell::FillClass( SvGlobalName * pClassName,
44 SotClipboardFormatId * pClipFormat,
45 OUString * pLongUserName,
46 sal_Int32 nVersion,
47 bool bTemplate /* = false */) const
49 if (nVersion == SOFFICE_FILEFORMAT_60)
51 *pClassName = SvGlobalName( SO3_SWGLOB_CLASSID_60 );
52 *pClipFormat = SotClipboardFormatId::STARWRITERGLOB_60;
53 *pLongUserName = SwResId(STR_WRITER_GLOBALDOC_FULLTYPE);
54 OSL_ENSURE( !bTemplate, "No template for Writer Global" );
56 else if (nVersion == SOFFICE_FILEFORMAT_8)
58 *pClassName = SvGlobalName( SO3_SWGLOB_CLASSID_60 );
59 *pClipFormat = bTemplate ? SotClipboardFormatId::STARWRITERGLOB_8_TEMPLATE : SotClipboardFormatId::STARWRITERGLOB_8;
60 *pLongUserName = SwResId(STR_WRITER_GLOBALDOC_FULLTYPE);
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */