Commit a214fe2d authored by captainwong's avatar captainwong

QrCodeViewer add scale

parent d0505d80
...@@ -575,7 +575,7 @@ template <typename Period> FMT_CONSTEXPR inline const char* get_units() { ...@@ -575,7 +575,7 @@ template <typename Period> FMT_CONSTEXPR inline const char* get_units() {
if (std::is_same<Period, std::femto>::value) return "fs"; if (std::is_same<Period, std::femto>::value) return "fs";
if (std::is_same<Period, std::pico>::value) return "ps"; if (std::is_same<Period, std::pico>::value) return "ps";
if (std::is_same<Period, std::nano>::value) return "ns"; if (std::is_same<Period, std::nano>::value) return "ns";
if (std::is_same<Period, std::micro>::value) return "µs"; if (std::is_same<Period, std::micro>::value) return "?s";
if (std::is_same<Period, std::milli>::value) return "ms"; if (std::is_same<Period, std::milli>::value) return "ms";
if (std::is_same<Period, std::centi>::value) return "cs"; if (std::is_same<Period, std::centi>::value) return "cs";
if (std::is_same<Period, std::deci>::value) return "ds"; if (std::is_same<Period, std::deci>::value) return "ds";
......
...@@ -45,6 +45,20 @@ public: ...@@ -45,6 +45,20 @@ public:
} }
} }
} }
void notify_first_observer(const target& _target) {
lock_guard_type lock(mutex_);
auto iter = observers_.begin();
while (iter != observers_.end()) {
std::shared_ptr<observer_type> obj(iter->lock());
if (obj) {
obj->on_update(_target);
return;
} else {
iter = observers_.erase(iter);
}
}
}
}; };
} // end of namespace dp } // end of namespace dp
......
...@@ -2,9 +2,10 @@ ...@@ -2,9 +2,10 @@
#include <QLabel> #include <QLabel>
#include <QPainter> #include <QPainter>
#include "../Util/qrcode/QrCode.hpp" #include "../Util/qrcode/QrCode.hpp"
#include "../QtDebug.h"
#include "../QtUtils.h"
static void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg) static void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg) {
{
// NOTE: At this point you will use the API to get the encoding and format you want, instead of my hardcoded stuff: // NOTE: At this point you will use the API to get the encoding and format you want, instead of my hardcoded stuff:
qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW); qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW);
const int s = qr.getSize() > 0 ? qr.getSize() : 1; const int s = qr.getSize() > 0 ? qr.getSize() : 1;
...@@ -29,8 +30,7 @@ static void paintQR(QPainter& painter, const QSize sz, const QString& data, QCol ...@@ -29,8 +30,7 @@ static void paintQR(QPainter& painter, const QSize sz, const QString& data, QCol
} }
} }
static QPixmap genQR(const QString& content, const QSize& size) static QPixmap genQR(const QString& content, const QSize& size) {
{
QPixmap pixmap(size); QPixmap pixmap(size);
pixmap.fill(Qt::white); pixmap.fill(Qt::white);
QPainter painter(&pixmap); QPainter painter(&pixmap);
...@@ -38,22 +38,20 @@ static QPixmap genQR(const QString& content, const QSize& size) ...@@ -38,22 +38,20 @@ static QPixmap genQR(const QString& content, const QSize& size)
return pixmap; return pixmap;
} }
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size) QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size, float scale)
: QDialog(parent) : QDialog(parent) {
{ jlib::qt::fill_bg_with_color(this, Qt::white);
create(title, size); create(title, size, scale);
setContent(content); setContent(content);
} }
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size) QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size, float scale)
: QDialog(parent) : QDialog(parent) {
{ create(title, size, scale);
create(title, size);
setPixmap(pixmap); setPixmap(pixmap);
} }
void QrCodeView::create(const QString& title, QSize size) void QrCodeView::create(const QString& title, QSize size, float scale) {
{
setWindowTitle(title); setWindowTitle(title);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
if (!size.isValid()) { if (!size.isValid()) {
...@@ -61,19 +59,28 @@ void QrCodeView::create(const QString& title, QSize size) ...@@ -61,19 +59,28 @@ void QrCodeView::create(const QString& title, QSize size)
} }
setFixedSize(size); setFixedSize(size);
if (scale < 0.1f) {
scale = 0.1f;
}
if (scale >= 0.99) {
scale = 1.0f;
}
QSize lbl_size = size * scale;
MYQDEBUG << "size" << size << "lbl_size" << lbl_size;
label = new QLabel(this); label = new QLabel(this);
label->resize(size); label->setFixedSize(lbl_size);
label->move(0, 0); label->move((size.width() - lbl_size.width()) / 2, (size.height() - lbl_size.height()) / 2);
} }
void QrCodeView::setContent(const QString& content) void QrCodeView::setContent(const QString& content) {
{ setPixmap(genQR(content, label->size()));
setPixmap(genQR(content, size()));
} }
void QrCodeView::setPixmap(const QPixmap& pixmap) void QrCodeView::setPixmap(const QPixmap& pixmap) {
{ auto pix = pixmap.scaled(label->size());
auto pix = pixmap.scaled(size()); MYQDEBUG << "label->size" << label->size() << "pix size" << pix.size();
label->setPixmap(pix); label->setPixmap(pix);
update(); update();
} }
...@@ -9,14 +9,15 @@ class QrCodeView : public QDialog ...@@ -9,14 +9,15 @@ class QrCodeView : public QDialog
{ {
Q_OBJECT Q_OBJECT
public: public:
QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size = QSize(400, 400)); // scale is the qrcode size/widget size ratio, 0.1 ~1
QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size = QSize(400, 400)); QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size = QSize(400, 400), float scale = 1.0f);
QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size = QSize(400, 400), float scale = 1.0f);
void setContent(const QString& content); void setContent(const QString& content);
void setPixmap(const QPixmap& pixmap); void setPixmap(const QPixmap& pixmap);
protected: protected:
void create(const QString& title, QSize size); void create(const QString& title, QSize size, float scale);
private: private:
QLabel* label{}; QLabel* label{};
......
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
...@@ -89,6 +90,7 @@ ...@@ -89,6 +90,7 @@
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>
......
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
...@@ -3,8 +3,12 @@ ...@@ -3,8 +3,12 @@
<PropertyGroup /> <PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild> <QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild> <QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup> </PropertyGroup>
</Project> </Project>
\ No newline at end of file
...@@ -4,4 +4,12 @@ ...@@ -4,4 +4,12 @@
<LocalDebuggerCommandArguments>$(QmlDebug) &gt; p.txt</LocalDebuggerCommandArguments> <LocalDebuggerCommandArguments>$(QmlDebug) &gt; p.txt</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project> </Project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment