OSDN Git Service

ドラッグ検出のピクセル閾値を変更
[gefu/Gefu.git] / abstractworker.h
index 0e9cfa0..8ae01d3 100644 (file)
@@ -11,20 +11,18 @@ class AbstractWorker : public QObject
 public:\r
     explicit AbstractWorker(QObject *parent = 0);\r
 \r
-    void setProgressText(QLabel *label);\r
     void requestStop();\r
 \r
 protected:\r
-    QLabel *m_progressText;\r
-\r
     bool isStopRequested();\r
 \r
 signals:\r
     void canceled();\r
+    void error(const QString &msg);\r
     void finished();\r
+    void information(const QString &msg);\r
     void operation(const QString &msg);\r
     void success(const QString &msg);\r
-    void error(const QString &msg);\r
 \r
 public slots:\r
     virtual void operate() = 0;\r