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.
koffice/kword/KWVariable.h

184 lines
5.9 KiB

/* This file is part of the KDE project
Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@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 variable_h
#define variable_h
#include <tqstring.h>
#include <tqdatetime.h>
#include <tqasciidict.h>
#include "defs.h"
#include <KoVariable.h>
#include <KoParagCounter.h>
class KWDocument;
class KWTextFrameSet;
class KWFootNoteFrameSet;
class KoVariable;
class KoPageVariable;
class KoMailMergeVariable;
class TQDomElement;
class KoTextFormat;
class KWVariableSettings : public KoVariableSettings
{
public:
KWVariableSettings();
virtual ~KWVariableSettings() {}
virtual void save( TQDomElement &parentElem );
virtual void load( TQDomElement &elem );
void saveNoteConfiguration( KoXmlWriter& writer ) const;
void loadNoteConfiguration( const TQDomElement& parent );
void changeFootNoteCounter( KoParagCounter _c );
void changeEndNoteCounter( KoParagCounter _c );
KoParagCounter endNoteCounter() const { return m_endNoteCounter;}
KoParagCounter footNoteCounter() const { return m_footNoteCounter;}
private:
KoParagCounter m_footNoteCounter;
KoParagCounter m_endNoteCounter;
};
class KWVariableCollection : public KoVariableCollection
{
public:
KWVariableCollection(KWVariableSettings *_settings, KoVariableFormatCollection* coll);
virtual KoVariable *createVariable( int type, short int subtype, KoVariableFormatCollection * coll, KoVariableFormat *varFormat,KoTextDocument *textdoc, KoDocument * doc, int _correct, bool _forceDefaultFormat=false, bool loadFootNote= true );
virtual KoVariable* loadOasisField( KoTextDocument* textdoc, const TQDomElement& tag, KoOasisContext& context );
private:
KWDocument *m_doc;
};
/**
* "current page number" and "number of pages" variables
*/
class KWPgNumVariable : public KoPageVariable
{
public:
KWPgNumVariable( KoTextDocument *textdoc, int subtype, KoVariableFormat *varFormat ,KoVariableCollection *_varColl, KWDocument *doc );
virtual void recalc();
virtual TQString text(bool realValue=false);
private:
KWDocument *m_doc;
};
/**
* Mail Merge variable
*/
class KWMailMergeVariable : public KoMailMergeVariable
{
public:
KWMailMergeVariable( KoTextDocument *textdoc, const TQString &name, KoVariableFormat *varFormat,KoVariableCollection *_varColl, KWDocument *doc );
virtual TQString text(bool realValue=false);
virtual TQString value() const;
virtual void recalc();
private:
KWDocument *m_doc;
};
/**
* The variable showing the footnote number in superscript, in the text.
*/
class KWFootNoteVariable : public KoVariable
{
public:
KWFootNoteVariable( KoTextDocument *textdoc, KoVariableFormat *varFormat, KoVariableCollection *varColl, KWDocument *doc );
virtual VariableType type() const
{ return VT_FOOTNOTE; }
enum Numbering {Auto, Manual};
void setNoteType( NoteType _noteType ) { m_noteType = _noteType;}
NoteType noteType() const {return m_noteType; }
void setNumberingType( Numbering _type );
Numbering numberingType() const { return m_numberingType;}
void setManualString( const TQString & _str ) { m_varValue=TQVariant(_str);}
TQString manualString() const { return m_varValue.toString();}
virtual void resize();
virtual void drawCustomItem( TQPainter* p, int x, int y, int wpix, int hpix, int ascentpix, int /*cx*/, int /*cy*/, int /*cw*/, int /*ch*/, const TQColorGroup& cg, bool selected, int offset, bool drawingShadow );
/** The frameset that contains the text for this footnote */
KWFootNoteFrameSet * frameSet() const { return m_frameset; }
void setFrameSet( KWFootNoteFrameSet* fs ) { Q_ASSERT( !m_frameset ); m_frameset = fs; }
virtual void saveVariable( TQDomElement &parentElem );
virtual void load( TQDomElement &elem );
virtual void loadOasis( const TQDomElement &footNoteTag, KoOasisContext& context );
virtual void saveOasis( KoXmlWriter& writer, KoSavingContext& context ) const;
virtual TQString text(bool realValue=false);
// Nothing to do here. Numbering done by KWTextFrameSet::renumberFootNotes
virtual void recalc() { }
// This is a sequence number, to order footnotes. It is always set, and different for all footnotes.
void setNum( int _num ) { m_num = _num; }
int num() const { return m_num; }
// The number being displayed - for auto-numbered footnotes only.
void setNumDisplay( int val );
int numDisplay() const { return m_numDisplay; }
virtual void finalize();
// The page this var is on
int pageNum() const;
// The current Y position of the var (in doc pt)
double varY() const;
virtual void setDeleted( bool del );
void formatedNote();
virtual TQString fieldCode();
protected:
TQString applyStyle();
private:
KWDocument *m_doc;
NoteType m_noteType;
KWFootNoteFrameSet* m_frameset;
Numbering m_numberingType;
int m_num;
int m_numDisplay;
};
class KWStatisticVariable : public KoStatisticVariable
{
public:
KWStatisticVariable( KoTextDocument *textdoc, int subtype, KoVariableFormat *varFormat,KoVariableCollection *_varColl, KWDocument *doc );
virtual void recalc();
virtual TQString text(bool realValue=false);
protected:
KWDocument *m_doc;
};
#endif