Subversion Repositories svn1

Rev

Rev 163 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
163 david 1
#ifndef QMDIALOGSTATUS_H
2
#define QMDIALOGSTATUS_H
3
 
4
#include <QDialog>
164 david 5
#include <QTableWidgetItem>
163 david 6
 
7
class QmDialogStatus : public QDialog
8
{
9
    Q_OBJECT
10
 
11
public:
12
    QmDialogStatus(QWidget *parent = 0);
13
};
14
 
164 david 15
 
16
 
17
class QmDialogStatusTableItem : public QTableWidgetItem
18
{
19
    //Q_OBJECT
20
 
21
public:
22
    QmDialogStatusTableItem ( const QString & text, int type = 0 );
23
    QmDialogStatusTableItem ( int value, int type = 0 );
24
    bool operator< ( const QTableWidgetItem & other ) const;
25
 
26
};
27
 
163 david 28
#endif // QMDIALOGSTATUS_H