|
|
|
/* 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 <tqpoint.h>
|
|
|
|
#include <tqstringlist.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 TQString & word) { m_areaNamed.append( word ); }
|
|
|
|
bool findWordInAreaList(const TQString & word) const { return (m_areaNamed.find( word ) != m_areaNamed.end());}
|
|
|
|
void appendValidation( const TQString &name, const TQDomElement &element){ m_validationList.insert( name, element);}
|
|
|
|
TQDomElement validation( const TQString &name) { return m_validationList[name];}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the cursor positions
|
|
|
|
*/
|
|
|
|
const TQMap<Sheet*, TQPoint>& cursorPositions() const { return m_cursorPositions; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stores the cursor position @p point for @p sheet .
|
|
|
|
*/
|
|
|
|
void setCursorPosition( Sheet* sheet, const TQPoint& point ) { m_cursorPositions.insert( sheet, point );}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return scrolling offsets
|
|
|
|
*/
|
|
|
|
const TQMap<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:
|
|
|
|
TQStringList m_areaNamed;
|
|
|
|
TQMap<TQString,TQDomElement> m_validationList;
|
|
|
|
TQMap<Sheet*, TQPoint> m_cursorPositions;
|
|
|
|
TQMap<Sheet*, KoPoint> m_scrollingOffsets;
|
|
|
|
bool m_loadTemplate;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace KSpread
|
|
|
|
|
|
|
|
#endif /* KPRLOADINGINFO_H */
|
|
|
|
|