Ctrl-W and -Q support for GPS, divelogs.de, divecomputer and CVS import

Getting closer to consistent behavior.

See #489

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-04-25 10:44:23 -07:00
parent 461872b7ea
commit 155eac11d2
4 changed files with 20 additions and 1 deletions

View file

@ -12,6 +12,7 @@
#include <QTimer>
#include <QFileDialog>
#include <QMessageBox>
#include <QShortcut>
struct product {
const char *product;
@ -80,6 +81,10 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget *parent, Qt::WindowFlags f) :
connect(timer, SIGNAL(timeout()), this, SLOT(updateProgressBar()));
updateState(INITIAL);
memset(&data, 0, sizeof(data));
QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this);
connect(close, SIGNAL(activated()), this, SLOT(close()));
QShortcut *quit = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this);
connect(quit, SIGNAL(activated()), parent, SLOT(close()));
}
void DownloadFromDCWidget::updateProgressBar()