You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
3.3 KiB
119 lines
3.3 KiB
/* This file is part of the KDE project
|
|
|
|
Copyright 2003 Ariya Hidayat <ariya@kde.org>
|
|
Copyright 2002 Norbert Andres <nandres@web.de>
|
|
Copyright 2001-2002 Laurent Montel <montel@kde.org>
|
|
Copyright 2001 David Faure <faure@kde.org>
|
|
Copyright 2000 Werner Trobin <trobin@kde.org>
|
|
Copyright 1998-1999 Torben Weis <weis@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 __kspread_autofill_h__
|
|
#define __kspread_autofill_h__
|
|
|
|
#include <tqdatetime.h>
|
|
#include <tqmemarray.h>
|
|
#include <tqstring.h>
|
|
#include <tqptrlist.h>
|
|
#include <tqstringlist.h>
|
|
|
|
namespace KSpread
|
|
{
|
|
class AutoFillDeltaSequence;
|
|
class AutoFillSequenceItem;
|
|
class AutoFillSequence;
|
|
class Cell;
|
|
|
|
class AutoFillSequenceItem
|
|
{
|
|
public:
|
|
enum Type { INTEGER, FLOAT, STRING, DAY, SHORTDAY,
|
|
MONTH, SHORTMONTH, FORMULA, OTHER, DATE, TIME };
|
|
|
|
AutoFillSequenceItem( int _i );
|
|
AutoFillSequenceItem( double _d );
|
|
AutoFillSequenceItem( const TQString &_str );
|
|
|
|
bool getDelta( AutoFillSequenceItem *_seq, double &delta );
|
|
|
|
TQString getSuccessor( int _no, double _delta );
|
|
TQString getPredecessor( int _no, double _delta );
|
|
|
|
Type getType()const { return m_Type; }
|
|
int getIValue()const { return m_IValue; }
|
|
double getDValue()const { return m_DValue; }
|
|
TQString getString()const { return m_String; }
|
|
int getIOtherEnd()const {return m_OtherEnd; }
|
|
int getIOtherBegin()const {return m_OtherBegin; }
|
|
static TQStringList *other;
|
|
static TQStringList *month;
|
|
static TQStringList *day;
|
|
static TQStringList *shortMonth;
|
|
static TQStringList *shortDay;
|
|
protected:
|
|
int m_IValue;
|
|
double m_DValue;
|
|
int m_OtherBegin;
|
|
int m_OtherEnd;
|
|
|
|
TQString m_String;
|
|
|
|
Type m_Type;
|
|
};
|
|
|
|
class AutoFillSequence
|
|
{
|
|
public:
|
|
AutoFillSequence( Cell *_obj );
|
|
|
|
int count()const { return sequence.count(); }
|
|
|
|
AutoFillSequenceItem* getFirst() { return sequence.first(); }
|
|
AutoFillSequenceItem* getNext() { return sequence.next(); }
|
|
|
|
bool matches( AutoFillSequence* _seq, AutoFillDeltaSequence *_delta );
|
|
|
|
void fillCell( Cell *src, Cell *dest, AutoFillDeltaSequence *delta, int _block, bool down = true );
|
|
|
|
protected:
|
|
TQPtrList<AutoFillSequenceItem> sequence;
|
|
};
|
|
|
|
class AutoFillDeltaSequence
|
|
{
|
|
public:
|
|
AutoFillDeltaSequence( AutoFillSequence *_first, AutoFillSequence *_next );
|
|
~AutoFillDeltaSequence();
|
|
|
|
bool isOk()const { return m_ok; }
|
|
|
|
bool equals( AutoFillDeltaSequence *_delta );
|
|
|
|
TQMemArray<double>* getSequence() { return m_sequence; }
|
|
|
|
double getItemDelta( int _pos );
|
|
|
|
protected:
|
|
bool m_ok;
|
|
TQMemArray<double>* m_sequence;
|
|
};
|
|
|
|
} // namespace KSpread
|
|
|
|
#endif
|