Source: /app/hbasic/hbasic/hbdata/hbdatatable.h
|
|
|
|
#ifndef HBDATATABLE_H
#define HBDATATABLE_H
class QVariant;
#include
#include "hbobject.h"
#include "hbcommand.h"
class HBDataTable : public QObject, public HBObject
{
Q_OBJECT
public:
HBDataTable( char *name, int xstart, int ystart, int xend, int yend );
~HBDataTable( void );
void setValue( int column, int row, QVariant *value );
QVariant *getValue( int column, int row );
int table_xstart;
int table_ystart;
int table_xend;
int table_yend;
int table_rows;
int table_columns;
/* start of array where each cell holds a QVariant pointer */
long *data_table;
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |