diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWLoadingInfo.h | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWLoadingInfo.h')
-rw-r--r-- | kword/KWLoadingInfo.h | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/kword/KWLoadingInfo.h b/kword/KWLoadingInfo.h new file mode 100644 index 00000000..fd0645a8 --- /dev/null +++ b/kword/KWLoadingInfo.h @@ -0,0 +1,94 @@ +/* This file is part of the KDE project + Copyright (C) 2004 David Faure <faure@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. +*/ + +#ifndef KWLOADINGINFO_H +#define KWLOADINGINFO_H + +#include <qstring.h> +#include <qvaluelist.h> +#include <qdict.h> +#include <KoPageLayout.h> + +class KoTextParag; +class KWTextDocument; +class KWFrame; + +/// Temporary information used only during loading +class KWLoadingInfo +{ +public: + KWLoadingInfo(); + ~KWLoadingInfo() {} + + /// Current master-page name (OASIS loading) + QString m_currentMasterPage; + + /// Bookmarks (kword-1.3 XML: they need all framesets to be loaded first) + struct BookMark + { + QString bookname; + int paragStartIndex; + int paragEndIndex; + QString frameSetName; + int cursorStartIndex; + int cursorEndIndex; + }; + + typedef QValueList<BookMark> BookMarkList; + BookMarkList bookMarkList; + + /// Bookmarks (OASIS XML). Only need to store bookmark starts, until hitting bookmark ends + struct BookmarkStart { + BookmarkStart() {} // for stupid QValueList + BookmarkStart( KWTextDocument* _doc, KoTextParag* par, int ind ) + : doc( _doc ), parag( par ), pos( ind ) {} + KWTextDocument* doc; + KoTextParag* parag; + int pos; + }; + typedef QMap<QString, BookmarkStart> BookmarkStartsMap; + BookmarkStartsMap m_bookmarkStarts; + + // Text frame chains; see KWTextFrameSet::loadOasisText + + void storeNextFrame( KWFrame* thisFrame, const QString& chainNextName ) { + m_nextFrameDict.insert( chainNextName, thisFrame ); + } + KWFrame* chainPrevFrame( const QString& frameName ) const { + return m_nextFrameDict[frameName]; // returns 0 if not found + } + + void storeFrameName( KWFrame* frame, const QString& name ) { + m_frameNameDict.insert( name, frame ); + } + KWFrame* frameByName( const QString& name ) const { + return m_frameNameDict[name]; // returns 0 if not found + } + + KoColumns columns; + KoKWHeaderFooter hf; + +private: + // Ignore warnings about operator delete from those dicts; we don't use it here... + QDict<KWFrame> m_nextFrameDict; + QDict<KWFrame> m_frameNameDict; +}; + +#endif /* KWLOADINGINFO_H */ + |