mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
a542b25bde
I think it's self explanatory - When user clicks on 'Cancel', the interface will wait for the trhead to quit then will close itself. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
46 lines
No EOL
873 B
C++
46 lines
No EOL
873 B
C++
#ifndef DOWNLOADFROMDIVECOMPUTER_H
|
|
#define DOWNLOADFROMDIVECOMPUTER_H
|
|
#include <QDialog>
|
|
#include <QThread>
|
|
|
|
namespace Ui{
|
|
class DownloadFromDiveComputer;
|
|
}
|
|
struct device_data_t;
|
|
|
|
class DownloadThread : public QThread{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DownloadThread(device_data_t* data);
|
|
virtual void run();
|
|
private:
|
|
device_data_t *data;
|
|
};
|
|
|
|
class InterfaceThread : public QThread{
|
|
Q_OBJECT
|
|
public:
|
|
InterfaceThread(QObject *parent, device_data_t *data) ;
|
|
virtual void run();
|
|
|
|
Q_SIGNALS:
|
|
void updateInterface(int value);
|
|
private:
|
|
device_data_t *data;
|
|
};
|
|
|
|
class DownloadFromDCWidget : public QDialog{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DownloadFromDCWidget(QWidget* parent = 0, Qt::WindowFlags f = 0);
|
|
|
|
public slots:
|
|
void on_ok_clicked();
|
|
void on_cancel_clicked();
|
|
private:
|
|
Ui::DownloadFromDiveComputer *ui;
|
|
InterfaceThread *thread;
|
|
bool downloading;
|
|
};
|
|
|
|
#endif |