2013-11-26 13:44:00 +07:00
|
|
|
#ifndef RESULTDIALOG_H
|
|
|
|
#define RESULTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "ProcessingItem.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ResultDialog;
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:41:08 +07:00
|
|
|
class ResultDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
2013-11-26 13:44:00 +07:00
|
|
|
|
|
|
|
public:
|
2015-09-23 01:41:08 +07:00
|
|
|
explicit ResultDialog (QWidget *parent = 0);
|
|
|
|
~ResultDialog ();
|
2013-11-26 13:44:00 +07:00
|
|
|
|
|
|
|
public:
|
|
|
|
bool eventFilter (QObject *object, QEvent *event);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void showResult (ProcessingItem item);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::ResultDialog *ui;
|
|
|
|
bool isShowAtCapturePos_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RESULTDIALOG_H
|