38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
#include "AboutDialog.h"
|
|
#include "UpdateChecker.h"
|
|
#include "ui_AboutDialog.h"
|
|
#include <StringUtil.h>
|
|
#include <QDesktopServices>
|
|
#include <QUrl>
|
|
|
|
AboutDialog::AboutDialog(UpdateChecker* updateChecker, QWidget* parent) :
|
|
mUpdateChecker(updateChecker),
|
|
QDialog(parent),
|
|
ui(new Ui::AboutDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
//set window flags
|
|
setModal(true);
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint | Qt::MSWindowsFixedSizeDialogHint);
|
|
|
|
ui->lblVersion->setText(ToDateString(GetCompileDate()) + ", " __TIME__);
|
|
ui->lblQrImage->installEventFilter(this);
|
|
}
|
|
|
|
AboutDialog::~AboutDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
bool AboutDialog::eventFilter(QObject* obj, QEvent* event)
|
|
{
|
|
if(obj == ui->lblQrImage && event->type() == QEvent::MouseButtonPress)
|
|
QDesktopServices::openUrl(QUrl("https://blockchain.info/address/1GuXgtCrLk4aYgivAT7xAi8zVHWk5CkEoY"));
|
|
return false;
|
|
}
|
|
|
|
void AboutDialog::on_btnCheckUpdates_clicked()
|
|
{
|
|
mUpdateChecker->checkForUpdates();
|
|
}
|