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{};
};
};
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration> <Configuration>Debug</Configuration>
<Platform>Win32</Platform> <Platform>Win32</Platform>
</ProjectConfiguration> </ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32"> <ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration> <Configuration>Release</Configuration>
<Platform>Win32</Platform> <Platform>Win32</Platform>
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>{B12702AD-ABFB-343A-A199-8E24837244A3}</ProjectGuid> <ProjectGuid>{B12702AD-ABFB-343A-A199-8E24837244A3}</ProjectGuid>
<Keyword>QtVS_v304</Keyword> <Keyword>QtVS_v304</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<QtMsBuild Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild> <QtMsBuild Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType> <ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset> <PlatformToolset>v142</PlatformToolset>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType> <ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset> <PlatformToolset>v142</PlatformToolset>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')"> <Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')">
<Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." /> <Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." />
</Target> </Target>
<ImportGroup Label="ExtensionSettings" /> <ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" /> <ImportGroup Label="Shared" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup> </ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup> </ImportGroup>
<PropertyGroup Label="UserMacros" /> <PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')"> <ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" /> <Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup> </ImportGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName> <TargetName>jlibqt</TargetName>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName> <TargetName>jlibqt</TargetName>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall> <QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules> <QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall> <QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules> <QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup> </PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')"> <ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" /> <Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup> </ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile> <ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization> <Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<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>
</ClCompile> <AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
<Link> </ClCompile>
<SubSystem>Windows</SubSystem> <Link>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile> <SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation> <OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
</Link> <GenerateDebugInformation>true</GenerateDebugInformation>
<Lib> </Link>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies> <Lib>
</Lib> <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</ItemDefinitionGroup> </Lib>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> </ItemDefinitionGroup>
<ClCompile> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<MultiProcessorCompilation>true</MultiProcessorCompilation> <ClCompile>
<DebugInformationFormat /> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> <DebugInformationFormat />
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions> <TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MultiProcessorCompilation>true</MultiProcessorCompilation> <AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile> <MultiProcessorCompilation>true</MultiProcessorCompilation>
<Link> <AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
<SubSystem>Windows</SubSystem> </ClCompile>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile> <Link>
<GenerateDebugInformation>false</GenerateDebugInformation> <SubSystem>Windows</SubSystem>
</Link> <OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
</ItemDefinitionGroup> <GenerateDebugInformation>false</GenerateDebugInformation>
<ItemGroup> </Link>
<ClCompile Include="ErrorCode.cpp" /> </ItemDefinitionGroup>
<ClCompile Include="Model\HttpDlgErrorCode.cpp" /> <ItemGroup>
<ClCompile Include="qt.cpp" /> <ClCompile Include="ErrorCode.cpp" />
<ClCompile Include="Util\qrcode\BitBuffer.cpp" /> <ClCompile Include="Model\HttpDlgErrorCode.cpp" />
<ClCompile Include="Util\qrcode\QrCode.cpp" /> <ClCompile Include="qt.cpp" />
<ClCompile Include="Util\qrcode\QrSegment.cpp" /> <ClCompile Include="Util\qrcode\BitBuffer.cpp" />
<ClCompile Include="Util\QRunGuard.cpp" /> <ClCompile Include="Util\qrcode\QrCode.cpp" />
<ClCompile Include="View\BaseScrollView.cpp" /> <ClCompile Include="Util\qrcode\QrSegment.cpp" />
<ClCompile Include="View\BgColorBtn.cpp" /> <ClCompile Include="Util\QRunGuard.cpp" />
<ClCompile Include="View\CheckBtn.cpp" /> <ClCompile Include="View\BaseScrollView.cpp" />
<ClCompile Include="View\HttpDlg.cpp" /> <ClCompile Include="View\BgColorBtn.cpp" />
<ClCompile Include="View\IconBtn.cpp" /> <ClCompile Include="View\CheckBtn.cpp" />
<ClCompile Include="View\ImageTxtBtn.cpp" /> <ClCompile Include="View\HttpDlg.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" /> <ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\QrCodeView.cpp" /> <ClCompile Include="View\ImageTxtBtn.cpp" />
<ClCompile Include="View\TextMenu.cpp" /> <ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\TitleBar.cpp" /> <ClCompile Include="View\QrCodeView.cpp" />
<ClCompile Include="View\PageView.cpp" /> <ClCompile Include="View\TextMenu.cpp" />
<ClCompile Include="View\RndButton.cpp" /> <ClCompile Include="View\TitleBar.cpp" />
</ItemGroup> <ClCompile Include="View\PageView.cpp" />
<ItemGroup> <ClCompile Include="View\RndButton.cpp" />
<ClInclude Include="Model\HttpDlgErrorCode.h" /> </ItemGroup>
<ClInclude Include="resource.h" /> <ItemGroup>
<ClInclude Include="SqlHelper.h" /> <ClInclude Include="Model\HttpDlgErrorCode.h" />
<ClInclude Include="Util\qrcode\BitBuffer.hpp" /> <ClInclude Include="resource.h" />
<ClInclude Include="Util\qrcode\QrCode.hpp" /> <ClInclude Include="SqlHelper.h" />
<ClInclude Include="Util\qrcode\QrSegment.hpp" /> <ClInclude Include="Util\qrcode\BitBuffer.hpp" />
<ClInclude Include="Util\QRunGuard.h" /> <ClInclude Include="Util\qrcode\QrCode.hpp" />
<QtMoc Include="View\ImageTxtBtn.h" /> <ClInclude Include="Util\qrcode\QrSegment.hpp" />
<QtMoc Include="View\QrCodeView.h" /> <ClInclude Include="Util\QRunGuard.h" />
<QtMoc Include="View\HttpDlg.h" /> <QtMoc Include="View\ImageTxtBtn.h" />
<QtMoc Include="View\ProgressDialog.h" /> <QtMoc Include="View\QrCodeView.h" />
<QtMoc Include="View\TextMenu.h" /> <QtMoc Include="View\HttpDlg.h" />
<QtMoc Include="View\PageView.h" /> <QtMoc Include="View\ProgressDialog.h" />
<QtMoc Include="View\CheckBtn.h" /> <QtMoc Include="View\TextMenu.h" />
<QtMoc Include="View\BaseScrollView.h" /> <QtMoc Include="View\PageView.h" />
<QtMoc Include="View\RndButton.h" /> <QtMoc Include="View\CheckBtn.h" />
<QtMoc Include="View\TitleBar.h" /> <QtMoc Include="View\BaseScrollView.h" />
<QtMoc Include="View\IconBtn.h" /> <QtMoc Include="View\RndButton.h" />
<QtMoc Include="View\BgColorBtn.h" /> <QtMoc Include="View\TitleBar.h" />
<ClInclude Include="ErrorCode.h" /> <QtMoc Include="View\IconBtn.h" />
<ClInclude Include="monitor.h" /> <QtMoc Include="View\BgColorBtn.h" />
<ClInclude Include="qt.h" /> <ClInclude Include="ErrorCode.h" />
<ClInclude Include="QtDebug.h" /> <ClInclude Include="monitor.h" />
<ClInclude Include="QtDebugOutput.h" /> <ClInclude Include="qt.h" />
<ClInclude Include="QtPathHelper.h" /> <ClInclude Include="QtDebug.h" />
<ClInclude Include="QtStylesheet.h" /> <ClInclude Include="QtDebugOutput.h" />
<ClInclude Include="QtUtils.h" /> <ClInclude Include="QtPathHelper.h" />
<ClInclude Include="qt_global.h" /> <ClInclude Include="QtStylesheet.h" />
<ClInclude Include="signal_slot.h" /> <ClInclude Include="QtUtils.h" />
</ItemGroup> <ClInclude Include="qt_global.h" />
<ItemGroup> <ClInclude Include="signal_slot.h" />
<QtUic Include="View\ProgressDialog.ui" /> </ItemGroup>
</ItemGroup> <ItemGroup>
<ItemGroup> <QtUic Include="View\ProgressDialog.ui" />
<QtRcc Include="jlibqt.qrc" /> </ItemGroup>
</ItemGroup> <ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <QtRcc Include="jlibqt.qrc" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')"> </ItemGroup>
<Import Project="$(QtMsBuild)\qt.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</ImportGroup> <ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<ImportGroup Label="ExtensionTargets"> <Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup> </ImportGroup>
<ProjectExtensions> <ImportGroup Label="ExtensionTargets">
<VisualStudio> </ImportGroup>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" /> <ProjectExtensions>
</VisualStudio> <VisualStudio>
</ProjectExtensions> <UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</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'">
<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