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";
......
#pragma once #pragma once
#include <memory> #include <memory>
#include <list> #include <list>
#include <mutex> #include <mutex>
#include "../base/noncopyable.h" #include "../base/noncopyable.h"
namespace jlib { namespace jlib {
namespace dp { namespace dp {
template <typename target> template <typename target>
class observer : public std::enable_shared_from_this<observer<target>> class observer : public std::enable_shared_from_this<observer<target>>
{ {
public: public:
virtual void on_update(const target&) = 0; virtual void on_update(const target&) = 0;
}; };
template <typename target> template <typename target>
class observable : public noncopyable class observable : public noncopyable
{ {
public: public:
typedef observer<target> observer_type; typedef observer<target> observer_type;
typedef std::weak_ptr<observer_type> observer_ptr; typedef std::weak_ptr<observer_type> observer_ptr;
typedef std::lock_guard<std::mutex> lock_guard_type; typedef std::lock_guard<std::mutex> lock_guard_type;
protected: protected:
mutable std::mutex mutex_; mutable std::mutex mutex_;
std::list<observer_ptr> observers_; std::list<observer_ptr> observers_;
public: public:
void register_observer(const observer_ptr& obj) { void register_observer(const observer_ptr& obj) {
lock_guard_type lock(mutex_); lock_guard_type lock(mutex_);
observers_.push_back(obj); observers_.push_back(obj);
} }
void notify_observers(const target& _target) { void notify_observers(const target& _target) {
lock_guard_type lock(mutex_); lock_guard_type lock(mutex_);
auto iter = observers_.begin(); auto iter = observers_.begin();
while (iter != observers_.end()) { while (iter != observers_.end()) {
std::shared_ptr<observer_type> obj(iter->lock()); std::shared_ptr<observer_type> obj(iter->lock());
if (obj) { if (obj) {
obj->on_update(_target); obj->on_update(_target);
++iter; ++iter;
} else { } else {
iter = observers_.erase(iter); iter = observers_.erase(iter);
} }
} }
} }
};
void notify_first_observer(const target& _target) {
} // end of namespace dp lock_guard_type lock(mutex_);
} // end of namespace jlib 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 jlib
#include "QrCodeView.h" #include "QrCodeView.h"
#include <QLabel> #include <QLabel>
#include <QPainter> #include <QPainter>
#include "../Util/qrcode/QrCode.hpp" #include "../Util/qrcode/QrCode.hpp"
#include "../QtDebug.h"
static void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg) #include "../QtUtils.h"
{
// NOTE: At this point you will use the API to get the encoding and format you want, instead of my hardcoded stuff: static void paintQR(QPainter& painter, const QSize sz, const QString& data, QColor fg) {
qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW); // NOTE: At this point you will use the API to get the encoding and format you want, instead of my hardcoded stuff:
const int s = qr.getSize() > 0 ? qr.getSize() : 1; qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW);
const double w = sz.width(); const int s = qr.getSize() > 0 ? qr.getSize() : 1;
const double h = sz.height(); const double w = sz.width();
const double aspect = w / h; const double h = sz.height();
const double size = ((aspect > 1.0) ? h : w); const double aspect = w / h;
const double scale = size / (s + 2); const double size = ((aspect > 1.0) ? h : w);
// NOTE: For performance reasons my implementation only draws the foreground parts in supplied color. const double scale = size / (s + 2);
// It expects background to be prepared already (in white or whatever is preferred). // NOTE: For performance reasons my implementation only draws the foreground parts in supplied color.
painter.setPen(Qt::NoPen); // It expects background to be prepared already (in white or whatever is preferred).
painter.setBrush(fg); painter.setPen(Qt::NoPen);
for (int y = 0; y < s; y++) { painter.setBrush(fg);
for (int x = 0; x < s; x++) { for (int y = 0; y < s; y++) {
const int color = qr.getModule(x, y); // 0 for white, 1 for black for (int x = 0; x < s; x++) {
if (0 != color) { const int color = qr.getModule(x, y); // 0 for white, 1 for black
const double rx1 = (x + 1) * scale, ry1 = (y + 1) * scale; if (0 != color) {
QRectF r(rx1, ry1, scale, scale); const double rx1 = (x + 1) * scale, ry1 = (y + 1) * scale;
painter.drawRects(&r, 1); QRectF r(rx1, ry1, scale, scale);
} painter.drawRects(&r, 1);
} }
} }
} }
}
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);
paintQR(painter, size, content, Qt::black); paintQR(painter, size, content, Qt::black);
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, float scale) {
void QrCodeView::create(const QString& title, QSize size) setWindowTitle(title);
{ setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
setWindowTitle(title); if (!size.isValid()) {
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); size = { 400,400 };
if (!size.isValid()) { }
size = { 400,400 }; setFixedSize(size);
}
setFixedSize(size); if (scale < 0.1f) {
scale = 0.1f;
label = new QLabel(this); }
label->resize(size); if (scale >= 0.99) {
label->move(0, 0); scale = 1.0f;
} }
void QrCodeView::setContent(const QString& content) QSize lbl_size = size * scale;
{ MYQDEBUG << "size" << size << "lbl_size" << lbl_size;
setPixmap(genQR(content, size()));
} label = new QLabel(this);
label->setFixedSize(lbl_size);
void QrCodeView::setPixmap(const QPixmap& pixmap) label->move((size.width() - lbl_size.width()) / 2, (size.height() - lbl_size.height()) / 2);
{ }
auto pix = pixmap.scaled(size());
label->setPixmap(pix); void QrCodeView::setContent(const QString& content) {
update(); setPixmap(genQR(content, label->size()));
} }
void QrCodeView::setPixmap(const QPixmap& pixmap) {
auto pix = pixmap.scaled(label->size());
MYQDEBUG << "label->size" << label->size() << "pix size" << pix.size();
label->setPixmap(pix);
update();
}
#pragma once #pragma once
#include <QDialog> #include <QDialog>
#include <QPixmap> #include <QPixmap>
class QLabel; class QLabel;
class QrCodeView : public QDialog 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 setPixmap(const QPixmap& pixmap); void setContent(const QString& content);
void setPixmap(const QPixmap& pixmap);
protected:
void create(const QString& title, QSize size); protected:
void create(const QString& title, QSize size, float scale);
private:
QLabel* label{}; private:
QLabel* label{};
};
};
This diff is collapsed.
<?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
<?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'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild> <QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild>
</PropertyGroup> <QtTouchProperty>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> </QtTouchProperty>
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild> </PropertyGroup>
</PropertyGroup> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild>
<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 Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<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