[go: up one dir, main page]

Menu

[d56ae5]: / ebetable.h  Maximize  Restore  History

Download this file

29 lines (23 with data), 502 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef EBETABLE_H
#define EBETABLE_H
#include "types.h"
#include "settings.h"
#include <QBrush>
#include <QColor>
#include <QDebug>
#include <QTableWidget>
#include <QTableWidgetItem>
class EbeTable: public QTableWidget
{
Q_OBJECT
public:
EbeTable(QWidget *parent = 0);
void setText ( int r, int c, QString t, bool highlight=false );
};
class EbeTableItem: public QTableWidgetItem
{
public:
EbeTableItem(QString t);
void updateText(QString t, bool highlight=false);
};
#endif