Subversion Repositories svn1-original

Rev

Rev 182 | Blame | Last modification | View Log | RSS feed

#ifndef QMDIALOGSTATUS_H
#define QMDIALOGSTATUS_H

#include <QDialog>
#include <QTableWidgetItem>

class QmDialogStatus : public QDialog
{
    Q_OBJECT

public:
    QmDialogStatus(QWidget *parent = 0);
};



class QmDialogStatusTableItem : public QTableWidgetItem
{
public:
    QmDialogStatusTableItem ( const QString & text, int type = 0 );
    QmDialogStatusTableItem ( int value, int type = 0 );
    bool operator< ( const QTableWidgetItem & other ) const;

};

#endif // QMDIALOGSTATUS_H