Subversion Repositories svn1

Rev

Details | 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
public:
20
    QmDialogStatusTableItem ( const QString & text, int type = 0 );
21
    QmDialogStatusTableItem ( int value, int type = 0 );
22
    bool operator< ( const QTableWidgetItem & other ) const;
23
 
24
};
25
 
163 david 26
#endif // QMDIALOGSTATUS_H