mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Read current version from H&W web page
This is only partial. It prints the current version string (to be processed by a regex) via qDebug(). Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1e04aec7fd
commit
230ba7ace8
2 changed files with 19 additions and 0 deletions
|
@ -9,6 +9,10 @@
|
|||
#include <QFileDialog>
|
||||
#include <QMessageBox>
|
||||
#include <QSettings>
|
||||
#include <QWebElement>
|
||||
#include <QWebFrame>
|
||||
#include <QWebPage>
|
||||
|
||||
struct product {
|
||||
const char *product;
|
||||
dc_descriptor_t *descriptor;
|
||||
|
@ -183,6 +187,16 @@ ConfigureDiveComputerDialog::ConfigureDiveComputerDialog(QWidget *parent) :
|
|||
}
|
||||
settings.endGroup();
|
||||
settings.endGroup();
|
||||
|
||||
hwVersionPage.mainFrame()->load(QUrl("http://www.heinrichsweikamp.com/?id=162"));
|
||||
connect(&hwVersionPage, SIGNAL(loadFinished(bool)), this, SLOT(findVersion()));
|
||||
}
|
||||
|
||||
void ConfigureDiveComputerDialog::findVersion()
|
||||
{
|
||||
QWebElement parse = hwVersionPage.mainFrame()->documentElement();
|
||||
QWebElement result = parse.findFirst("div[id=content_firmware_headline_typ0]");
|
||||
qDebug() << "Version" << result.toPlainText();
|
||||
}
|
||||
|
||||
ConfigureDiveComputerDialog::~ConfigureDiveComputerDialog()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue