bump product version to 4.1.6.2
[LibreOffice.git] / sw / source / filter / ww1 / w1par.cxx
blobdab32cff12911a8ea0893a8a0c4424d0fe5fa1ca
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 <pam.hxx> // fuer SwPam
21 #include <doc.hxx>
22 #include <ndtxt.hxx> // class SwTxtNode
23 #include <fltini.hxx> // Ww1Reader
24 #include <w1par.hxx>
25 #include <swfltopt.hxx>
26 #include <mdiexp.hxx> // StatLine...()
27 #include <swerror.h> // ERR_WW1_...
28 #include <statstr.hrc> // ResId fuer Statusleiste
30 //----------------------------------------
31 // Initialisieren der Feld-FilterFlags
32 //----------------------------------------
34 static sal_uLong WW1_Read_FieldIniFlags()
36 // sal_uInt16 i;
37 static const sal_Char* aNames[ 1 ] = { "WinWord/WW1F" };
38 sal_uInt32 aVal[ 1 ];
39 SwFilterOptions aOpt( 1, aNames, aVal );
40 sal_uLong nFieldFlags = aVal[ 0 ];
42 if ( SwFltGetFlag( nFieldFlags, SwFltControlStack::HYPO ) )
44 SwFltSetFlag( nFieldFlags, SwFltControlStack::BOOK_TO_VAR_REF );
45 SwFltSetFlag( nFieldFlags, SwFltControlStack::TAGS_DO_ID );
46 SwFltSetFlag( nFieldFlags, SwFltControlStack::TAGS_IN_TEXT );
47 SwFltSetFlag( nFieldFlags, SwFltControlStack::ALLOW_FLD_CR );
49 return nFieldFlags;
52 ////////////////////////////////////////////////// StarWriter-Interface
54 // Eine Methode liefern die call-Schnittstelle fuer den Writer.
55 // Read() liest eine Datei. hierzu werden zwei Objekte erzeugt, die Shell,
56 // die die Informationen aufnimmt und der Manager der sie aus der Datei liest.
57 // Diese werden dann einfach per Pipe 'uebertragen'.
60 sal_uLong WW1Reader::Read(SwDoc& rDoc, const String& rBaseURL, SwPaM& rPam, const String& /*cName*/)
62 sal_uLong nRet = ERR_SWG_READ_ERROR;
63 OSL_ENSURE(pStrm!=NULL, "W1-Read ohne Stream");
64 if (pStrm != NULL)
66 sal_Bool bNew = !bInsertMode; // Neues Doc ( kein Einfuegen )
68 // erstmal eine shell konstruieren: die ist schnittstelle
69 // zum writer-dokument
70 sal_uLong nFieldFlags = WW1_Read_FieldIniFlags();
71 Ww1Shell* pRdr = new Ww1Shell( rDoc, rPam, rBaseURL, bNew, nFieldFlags );
72 if( pRdr )
74 // dann den manager, der liest die struktur des word-streams
75 Ww1Manager* pMan = new Ww1Manager( *pStrm, nFieldFlags );
76 if( pMan )
78 if( !pMan->GetError() )
80 ::StartProgress( STR_STATSTR_W4WREAD, 0, 100,
81 rDoc.GetDocShell() );
82 ::SetProgressState( 0, rDoc.GetDocShell() );
83 // jetzt nur noch alles rueberschieben
84 *pRdr << *pMan;
85 if( !pMan->GetError() )
86 // und nur hier, wenn kein fehler auftrat
87 // fehlerfreiheit melden
88 nRet = 0; // besser waere: WARN_SWG_FEATURES_LOST;
89 ::EndProgress( rDoc.GetDocShell() );
91 else
93 if( pMan->GetFib().GetFIB().fComplexGet() )
94 //!!! ACHTUNG: hier muss eigentlich ein Error
95 // wegen Fastsave kommen, das der PMW-Filter
96 // das nicht unterstuetzt. Stattdessen temporaer
97 // nur eine Warnung, bis die entsprechende
98 // Meldung und Behandlung weiter oben eingebaut ist.
99 // nRet = WARN_WW6_FASTSAVE_ERR;
100 // Zum Einchecken mit neuem String:
101 nRet = ERR_WW6_FASTSAVE_ERR;
104 delete pMan;
106 delete pRdr;
108 Ww1Sprm::DeinitTab();
109 return nRet;
112 ///////////////////////////////////////////////////////////////// Shell
114 // Die Shell ist die Schnittstelle vom Filter zum Writer. Sie ist
115 // abgeleitet von der mit ww-filter gemeinsam benutzten Shell
116 // SwFltShell und enthaelt alle fuer ww1 noetigen Erweiterungen. Wie
117 // in einen Stream werden alle Informationen, die aus der Datei
118 // gelesen werden, in die shell ge'piped'.
120 Ww1Shell::Ww1Shell( SwDoc& rD, SwPaM& rPam, const String& rBaseURL, sal_Bool bNew, sal_uLong nFieldFlags)
121 : SwFltShell(&rD, rPam, rBaseURL, bNew, nFieldFlags)
126 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */