00001
00002
00003 #ifndef LTABLEITEM_H
00004 #define LTABLEITEM_H
00005
00006 #include <qtable.h>
00007
00008 class LTableItem : public QTableItem {
00009
00010 public:
00011 LTableItem( QTable *table , EditType type, const QString & text);
00012 void paint ( QPainter * , const QColorGroup & , const QRect &, bool );
00013 int alignment() const;
00014 bool Masked() { return masked; }
00015 void setMasked(bool e=true) { masked=e; }
00016 private:
00017 bool masked;
00018 };
00019
00020 #endif // LTABLEITEM_H