/* This file is part of the KDE project Copyright (C) 2004 Laurent Montel 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 KSPLOADINGINFO_H #define KSPLOADINGINFO_H #include #include #include namespace KSpread { class Sheet; /// Temporary information used only during loading class KSPLoadingInfo { public: KSPLoadingInfo() { m_loadTemplate = false;} ~KSPLoadingInfo() {} void addWordInAreaList( const QString & word) { m_areaNamed.append( word ); } bool findWordInAreaList(const QString & word) const { return (m_areaNamed.find( word ) != m_areaNamed.end());} void appendValidation( const QString &name, const QDomElement &element){ m_validationList.insert( name, element);} QDomElement validation( const QString &name) { return m_validationList[name];} /** * @return the cursor positions */ const QMap& cursorPositions() const { return m_cursorPositions; } /** * Stores the cursor position @p point for @p sheet . */ void setCursorPosition( Sheet* sheet, const QPoint& point ) { m_cursorPositions.insert( sheet, point );} /** * @return scrolling offsets */ const QMap& scrollingOffsets() const { return m_scrollingOffsets; } /** * Stores the scrolling offset @p point for @p sheet . */ void setScrollingOffset( Sheet* sheet, const KoPoint& point ) { m_scrollingOffsets.insert( sheet, point );} void setLoadTemplate( bool _b ) { m_loadTemplate = _b; } bool loadTemplate() const { return m_loadTemplate; } private: QStringList m_areaNamed; QMap m_validationList; QMap m_cursorPositions; QMap m_scrollingOffsets; bool m_loadTemplate; }; } // namespace KSpread #endif /* KPRLOADINGINFO_H */