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() {
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::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::centi>::value) return "cs";
if (std::is_same<Period, std::deci>::value) return "ds";
......
#pragma once
#include <memory>
#include <list>
#include <mutex>
#include "../base/noncopyable.h"
namespace jlib {
namespace dp {
template <typename target>
class observer : public std::enable_shared_from_this<observer<target>>
{
public:
virtual void on_update(const target&) = 0;
};
template <typename target>
class observable : public noncopyable
{
public:
typedef observer<target> observer_type;
typedef std::weak_ptr<observer_type> observer_ptr;
typedef std::lock_guard<std::mutex> lock_guard_type;
protected:
mutable std::mutex mutex_;
std::list<observer_ptr> observers_;
public:
void register_observer(const observer_ptr& obj) {
lock_guard_type lock(mutex_);
observers_.push_back(obj);
}
void notify_observers(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);
++iter;
} else {
iter = observers_.erase(iter);
}
}
}
};
} // end of namespace dp
} // end of namespace jlib
#pragma once
#include <memory>
#include <list>
#include <mutex>
#include "../base/noncopyable.h"
namespace jlib {
namespace dp {
template <typename target>
class observer : public std::enable_shared_from_this<observer<target>>
{
public:
virtual void on_update(const target&) = 0;
};
template <typename target>
class observable : public noncopyable
{
public:
typedef observer<target> observer_type;
typedef std::weak_ptr<observer_type> observer_ptr;
typedef std::lock_guard<std::mutex> lock_guard_type;
protected:
mutable std::mutex mutex_;
std::list<observer_ptr> observers_;
public:
void register_observer(const observer_ptr& obj) {
lock_guard_type lock(mutex_);
observers_.push_back(obj);
}
void notify_observers(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);
++iter;
} else {
iter = observers_.erase(iter);
}
}
}
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 jlib
#include "QrCodeView.h"
#include <QLabel>
#include <QPainter>
#include "../Util/qrcode/QrCode.hpp"
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:
qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW);
const int s = qr.getSize() > 0 ? qr.getSize() : 1;
const double w = sz.width();
const double h = sz.height();
const double aspect = w / h;
const double size = ((aspect > 1.0) ? h : w);
const double scale = size / (s + 2);
// NOTE: For performance reasons my implementation only draws the foreground parts in supplied color.
// It expects background to be prepared already (in white or whatever is preferred).
painter.setPen(Qt::NoPen);
painter.setBrush(fg);
for (int y = 0; y < s; y++) {
for (int x = 0; x < s; x++) {
const int color = qr.getModule(x, y); // 0 for white, 1 for black
if (0 != color) {
const double rx1 = (x + 1) * scale, ry1 = (y + 1) * scale;
QRectF r(rx1, ry1, scale, scale);
painter.drawRects(&r, 1);
}
}
}
}
static QPixmap genQR(const QString& content, const QSize& size)
{
QPixmap pixmap(size);
pixmap.fill(Qt::white);
QPainter painter(&pixmap);
paintQR(painter, size, content, Qt::black);
return pixmap;
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size)
: QDialog(parent)
{
create(title, size);
setContent(content);
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size)
: QDialog(parent)
{
create(title, size);
setPixmap(pixmap);
}
void QrCodeView::create(const QString& title, QSize size)
{
setWindowTitle(title);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
if (!size.isValid()) {
size = { 400,400 };
}
setFixedSize(size);
label = new QLabel(this);
label->resize(size);
label->move(0, 0);
}
void QrCodeView::setContent(const QString& content)
{
setPixmap(genQR(content, size()));
}
void QrCodeView::setPixmap(const QPixmap& pixmap)
{
auto pix = pixmap.scaled(size());
label->setPixmap(pix);
update();
}
#include "QrCodeView.h"
#include <QLabel>
#include <QPainter>
#include "../Util/qrcode/QrCode.hpp"
#include "../QtDebug.h"
#include "../QtUtils.h"
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:
qrcodegen::QrCode qr = qrcodegen::QrCode::encodeText(data.toUtf8().constData(), qrcodegen::QrCode::Ecc::LOW);
const int s = qr.getSize() > 0 ? qr.getSize() : 1;
const double w = sz.width();
const double h = sz.height();
const double aspect = w / h;
const double size = ((aspect > 1.0) ? h : w);
const double scale = size / (s + 2);
// NOTE: For performance reasons my implementation only draws the foreground parts in supplied color.
// It expects background to be prepared already (in white or whatever is preferred).
painter.setPen(Qt::NoPen);
painter.setBrush(fg);
for (int y = 0; y < s; y++) {
for (int x = 0; x < s; x++) {
const int color = qr.getModule(x, y); // 0 for white, 1 for black
if (0 != color) {
const double rx1 = (x + 1) * scale, ry1 = (y + 1) * scale;
QRectF r(rx1, ry1, scale, scale);
painter.drawRects(&r, 1);
}
}
}
}
static QPixmap genQR(const QString& content, const QSize& size) {
QPixmap pixmap(size);
pixmap.fill(Qt::white);
QPainter painter(&pixmap);
paintQR(painter, size, content, Qt::black);
return pixmap;
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size, float scale)
: QDialog(parent) {
jlib::qt::fill_bg_with_color(this, Qt::white);
create(title, size, scale);
setContent(content);
}
QrCodeView::QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size, float scale)
: QDialog(parent) {
create(title, size, scale);
setPixmap(pixmap);
}
void QrCodeView::create(const QString& title, QSize size, float scale) {
setWindowTitle(title);
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
if (!size.isValid()) {
size = { 400,400 };
}
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->setFixedSize(lbl_size);
label->move((size.width() - lbl_size.width()) / 2, (size.height() - lbl_size.height()) / 2);
}
void QrCodeView::setContent(const QString& content) {
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
#include <QDialog>
#include <QPixmap>
class QLabel;
class QrCodeView : public QDialog
{
Q_OBJECT
public:
QrCodeView(QWidget* parent, const QString& title, const QString& content, const QSize size = QSize(400, 400));
QrCodeView(QWidget* parent, const QString& title, const QPixmap& pixmap, const QSize size = QSize(400, 400));
void setContent(const QString& content);
void setPixmap(const QPixmap& pixmap);
protected:
void create(const QString& title, QSize size);
private:
QLabel* label{};
};
#pragma once
#include <QDialog>
#include <QPixmap>
class QLabel;
class QrCodeView : public QDialog
{
Q_OBJECT
public:
// scale is the qrcode size/widget size ratio, 0.1 ~1
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);
protected:
void create(const QString& title, QSize size, float scale);
private:
QLabel* label{};
};
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{B12702AD-ABFB-343A-A199-8E24837244A3}</ProjectGuid>
<Keyword>QtVS_v304</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<QtMsBuild Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.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." />
</Target>
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" />
<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" />
</ImportGroup>
<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" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="ErrorCode.cpp" />
<ClCompile Include="Model\HttpDlgErrorCode.cpp" />
<ClCompile Include="qt.cpp" />
<ClCompile Include="Util\qrcode\BitBuffer.cpp" />
<ClCompile Include="Util\qrcode\QrCode.cpp" />
<ClCompile Include="Util\qrcode\QrSegment.cpp" />
<ClCompile Include="Util\QRunGuard.cpp" />
<ClCompile Include="View\BaseScrollView.cpp" />
<ClCompile Include="View\BgColorBtn.cpp" />
<ClCompile Include="View\CheckBtn.cpp" />
<ClCompile Include="View\HttpDlg.cpp" />
<ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\ImageTxtBtn.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\QrCodeView.cpp" />
<ClCompile Include="View\TextMenu.cpp" />
<ClCompile Include="View\TitleBar.cpp" />
<ClCompile Include="View\PageView.cpp" />
<ClCompile Include="View\RndButton.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="Model\HttpDlgErrorCode.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="SqlHelper.h" />
<ClInclude Include="Util\qrcode\BitBuffer.hpp" />
<ClInclude Include="Util\qrcode\QrCode.hpp" />
<ClInclude Include="Util\qrcode\QrSegment.hpp" />
<ClInclude Include="Util\QRunGuard.h" />
<QtMoc Include="View\ImageTxtBtn.h" />
<QtMoc Include="View\QrCodeView.h" />
<QtMoc Include="View\HttpDlg.h" />
<QtMoc Include="View\ProgressDialog.h" />
<QtMoc Include="View\TextMenu.h" />
<QtMoc Include="View\PageView.h" />
<QtMoc Include="View\CheckBtn.h" />
<QtMoc Include="View\BaseScrollView.h" />
<QtMoc Include="View\RndButton.h" />
<QtMoc Include="View\TitleBar.h" />
<QtMoc Include="View\IconBtn.h" />
<QtMoc Include="View\BgColorBtn.h" />
<ClInclude Include="ErrorCode.h" />
<ClInclude Include="monitor.h" />
<ClInclude Include="qt.h" />
<ClInclude Include="QtDebug.h" />
<ClInclude Include="QtDebugOutput.h" />
<ClInclude Include="QtPathHelper.h" />
<ClInclude Include="QtStylesheet.h" />
<ClInclude Include="QtUtils.h" />
<ClInclude Include="qt_global.h" />
<ClInclude Include="signal_slot.h" />
</ItemGroup>
<ItemGroup>
<QtUic Include="View\ProgressDialog.ui" />
</ItemGroup>
<ItemGroup>
<QtRcc Include="jlibqt.qrc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{B12702AD-ABFB-343A-A199-8E24837244A3}</ProjectGuid>
<Keyword>QtVS_v304</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<QtMsBuild Condition="'$(QtMsBuild)'=='' or !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.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." />
</Target>
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" />
<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" />
</ImportGroup>
<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" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetName>jlibqt</TargetName>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtInstall>5.9.8</QtInstall>
<QtModules>core;gui;network;widgets</QtModules>
</PropertyGroup>
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.props')">
<Import Project="$(QtMsBuild)\qt.props" />
</ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>Disabled</Optimization>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<Lib>
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat />
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<PreprocessorDefinitions>QT_LIB;BUILD_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.\GeneratedFiles\$(ConfigurationName);.\GeneratedFiles;.\View;$(DEVLIBS)\json\jsoncpp-1.9.4-install\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/source-charset:utf-8 %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<OutputFile>$(OutDir)\$(ProjectName).lib</OutputFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="ErrorCode.cpp" />
<ClCompile Include="Model\HttpDlgErrorCode.cpp" />
<ClCompile Include="qt.cpp" />
<ClCompile Include="Util\qrcode\BitBuffer.cpp" />
<ClCompile Include="Util\qrcode\QrCode.cpp" />
<ClCompile Include="Util\qrcode\QrSegment.cpp" />
<ClCompile Include="Util\QRunGuard.cpp" />
<ClCompile Include="View\BaseScrollView.cpp" />
<ClCompile Include="View\BgColorBtn.cpp" />
<ClCompile Include="View\CheckBtn.cpp" />
<ClCompile Include="View\HttpDlg.cpp" />
<ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\ImageTxtBtn.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\QrCodeView.cpp" />
<ClCompile Include="View\TextMenu.cpp" />
<ClCompile Include="View\TitleBar.cpp" />
<ClCompile Include="View\PageView.cpp" />
<ClCompile Include="View\RndButton.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="Model\HttpDlgErrorCode.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="SqlHelper.h" />
<ClInclude Include="Util\qrcode\BitBuffer.hpp" />
<ClInclude Include="Util\qrcode\QrCode.hpp" />
<ClInclude Include="Util\qrcode\QrSegment.hpp" />
<ClInclude Include="Util\QRunGuard.h" />
<QtMoc Include="View\ImageTxtBtn.h" />
<QtMoc Include="View\QrCodeView.h" />
<QtMoc Include="View\HttpDlg.h" />
<QtMoc Include="View\ProgressDialog.h" />
<QtMoc Include="View\TextMenu.h" />
<QtMoc Include="View\PageView.h" />
<QtMoc Include="View\CheckBtn.h" />
<QtMoc Include="View\BaseScrollView.h" />
<QtMoc Include="View\RndButton.h" />
<QtMoc Include="View\TitleBar.h" />
<QtMoc Include="View\IconBtn.h" />
<QtMoc Include="View\BgColorBtn.h" />
<ClInclude Include="ErrorCode.h" />
<ClInclude Include="monitor.h" />
<ClInclude Include="qt.h" />
<ClInclude Include="QtDebug.h" />
<ClInclude Include="QtDebugOutput.h" />
<ClInclude Include="QtPathHelper.h" />
<ClInclude Include="QtStylesheet.h" />
<ClInclude Include="QtUtils.h" />
<ClInclude Include="qt_global.h" />
<ClInclude Include="signal_slot.h" />
</ItemGroup>
<ItemGroup>
<QtUic Include="View\ProgressDialog.ui" />
</ItemGroup>
<ItemGroup>
<QtRcc Include="jlibqt.qrc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties MocDir=".\GeneratedFiles\$(ConfigurationName)" UicDir=".\GeneratedFiles" RccDir=".\GeneratedFiles" lupdateOptions="" lupdateOnBuild="0" lreleaseOptions="" MocOptions="" />
</VisualStudio>
</ProjectExtensions>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild>
</PropertyGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild>
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerCommandArguments>$(QmlDebug) &gt; p.txt</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerCommandArguments>$(QmlDebug) &gt; p.txt</LocalDebuggerCommandArguments>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtTouchProperty>
</QtTouchProperty>
</PropertyGroup>
</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