diff options
Diffstat (limited to 'src/plugins/General/rgscan/rgscaner.h')
| -rw-r--r-- | src/plugins/General/rgscan/rgscaner.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/plugins/General/rgscan/rgscaner.h b/src/plugins/General/rgscan/rgscaner.h index 899b55961..c9014ddd1 100644 --- a/src/plugins/General/rgscan/rgscaner.h +++ b/src/plugins/General/rgscan/rgscaner.h @@ -39,12 +39,14 @@ public: ~RGScaner(); bool prepare(const QString &url); + void stop(); + bool isRunning(); + double gain(); - void stop(); signals: void progress(int percent); - void finished(); + void finished(const QString &url); //void desriptionChanged(QString text); //void error(QString text); @@ -54,6 +56,9 @@ private: Decoder *m_decoder; QMutex m_mutex; bool m_user_stop; + bool m_is_running; + QString m_url; + double m_gain; }; |
