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/kword/latex/export/table.h

108 lines
2.6 KiB

/*
** Header file for inclusion with kword_xml2latex.c
**
** Copyright (C) 2000 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 __KWORD_TABLE_H__
#define __KWORD_TABLE_H__
#include <tqstring.h>
#include <tqptrlist.h>
#include "element.h" /* Child class */
#include "layout.h" /* Cell flow */
/***********************************************************************/
/* Class: Table */
/***********************************************************************/
/**
* This class hold a table. That is a table of frame (text frame, picture
* frame, ...). It use a special latex package.
* The color table of the tables is not yet supported.
*/
class Table: public TQPtrList<Element>, public Element
{
/* MARKUP DATA */
//TQString _name;
//TQString _grpMgr;
/* USEFULL DATA */
int _maxRow, _maxCol; /* Size of the table (nb of cell) */
public:
/**
* Constructors
*
*/
/**
* Creates a new instance of Table.
*/
Table();
/**
* Creates a new instance of Table.
*
* @param grpMng The group manager.
*/
Table(TQString grpMng);
/*
* Destructor
*
* The destructor must remove the list of frames.
*/
virtual ~Table();
/**
* Accessors
*/
//TQString getName () const { return _name; }
//TQString getGrpMgr() const { return _grpMgr; }
int getMaxRow() const { return _maxRow; }
int getMaxCol() const { return _maxCol; }
EEnv getCellFlow (int);
double getCellSize (int);
/**
* Modifiers
*/
void setMaxRow(int r) { _maxRow = r; }
void setMaxCol(int c) { _maxCol = c; }
/**
* Helpfull functions
*/
Element* searchCell(int, int);
void append (Element*);
void generate (TQTextStream&);
private:
void generateCell(TQTextStream&, int, int);
void generateTableHeader(TQTextStream&);
void generateTopLineBorder(TQTextStream&, int);
void generateBottomLineBorder(TQTextStream&, int);
};
#endif /* __KWORD_TABLE_H__ */