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 /kspread/ksploadinginfo.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 'kspread/ksploadinginfo.h')
-rw-r--r-- | kspread/ksploadinginfo.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/kspread/ksploadinginfo.h b/kspread/ksploadinginfo.h new file mode 100644 index 00000000..72b64d7c --- /dev/null +++ b/kspread/ksploadinginfo.h @@ -0,0 +1,81 @@ +/* This file is part of the KDE project + Copyright (C) 2004 Laurent Montel <montel@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 KSPLOADINGINFO_H +#define KSPLOADINGINFO_H + +#include <qpoint.h> +#include <qstringlist.h> + +#include <KoPoint.h> + +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<Sheet*, QPoint>& 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<Sheet*, KoPoint>& 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<QString,QDomElement> m_validationList; + QMap<Sheet*, QPoint> m_cursorPositions; + QMap<Sheet*, KoPoint> m_scrollingOffsets; + bool m_loadTemplate; +}; + +} // namespace KSpread + +#endif /* KPRLOADINGINFO_H */ + |