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/filters/kspread/latex/export/cell.h

108 lines
2.5 KiB

/*
**
** Copyright (C) 2002 Robert JACOLIN
**
** 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.
**
** To receive a copy of the GNU Library General Public License, write to the
** Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**
*/
#ifndef __KSPREAD_LATEX_CELL_H__
#define __KSPREAD_LATEX_CELL_H__
#include <tqstring.h>
#include "config.h"
#include "format.h"
#include "xmlparser.h"
/***********************************************************************/
/* Class: Cell */
/***********************************************************************/
class Table;
class Column;
/**
* This class hold a cell.
*/
class Cell: public Format
{
/* USEFULL DATA */
long _row;
long _col;
TQString _text;
TQString _textDataType;
TQString _result;
TQString _resultDataType;
public:
/**
* Constructors
*
*/
/**
* Creates a new instance of Cell.
*/
Cell();
Cell(long row, long col)
{
_row = row;
_col = col;
}
/*
* Destructor
*
* The destructor must remove the list of frames.
*/
virtual ~Cell();
/* ==== getters ==== */
long getRow() const { return _row; }
long getCol() const { return _col; }
TQString getText() const { return _text; }
TQString getTextDataType() const { return _textDataType; }
TQString getResult() const { return _result; }
TQString getResultDataType() const { return _resultDataType; }
/* ==== setters ==== */
void setRow(int r) { _row = r; }
void setCol(int c) { _col = c; }
void setText(TQString text) { _text = text; }
void setTextDataType(TQString dt) { _textDataType = dt; }
void setResult(TQString result) { _result = result; }
void setResultDataType(TQString dt) { _resultDataType = dt; }
/**
* Helpfull functions
*/
void analyse (const TQDomNode);
void analyseText (const TQDomNode);
void analyseResult (const TQDomNode);
void generate (TQTextStream&, Table*);
private:
};
#endif /* __KSPREAD_LATEX_CELL_H__ */