Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
a214fe2d
Commit
a214fe2d
authored
May 08, 2024
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QrCodeViewer add scale
parent
d0505d80
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
439 additions
and
355 deletions
+439
-355
chrono.h
jlib/3rdparty/spdlog/fmt/bundled/chrono.h
+1
-1
observer.h
jlib/dp/observer.h
+65
-51
QrCodeView.cpp
jlib/qt/View/QrCodeView.cpp
+86
-79
QrCodeView.h
jlib/qt/View/QrCodeView.h
+25
-24
qt.vcxproj
jlib/qt/qt.vcxproj
+169
-167
qt.vcxproj.user
jlib/qt/qt.vcxproj.user
+11
-3
qt_test.vcxproj.user
test/qt_test/qt_test.vcxproj.user
+11
-3
testPathHelperDataSeperatedQt.vcxproj.user
...ataSeperatedQt/testPathHelperDataSeperatedQt.vcxproj.user
+11
-3
testPathHelperDataSeperatedWithoutBinQt.vcxproj.user
...inQt/testPathHelperDataSeperatedWithoutBinQt.vcxproj.user
+11
-3
testPathHelperLocal.vcxproj.user
test/testPathHelperLocal/testPathHelperLocal.vcxproj.user
+11
-3
testPathHelperLocalWithoutBin.vcxproj.user
...ocalWithoutBin/testPathHelperLocalWithoutBin.vcxproj.user
+11
-3
testSqlHelperQt.vcxproj.user
test/testSqlHelperQt/testSqlHelperQt.vcxproj.user
+13
-9
test_process_qt.vcxproj.user
test/test_process_qt/test_process_qt.vcxproj.user
+14
-6
No files found.
jlib/3rdparty/spdlog/fmt/bundled/chrono.h
View file @
a214fe2d
...
@@ -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"
;
...
...
jlib/dp/observer.h
View file @
a214fe2d
...
@@ -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
...
...
jlib/qt/View/QrCodeView.cpp
View file @
a214fe2d
...
@@ -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.1
f
)
{
scale
=
0.1
f
;
}
if
(
scale
>=
0.99
)
{
scale
=
1.0
f
;
}
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
();
}
}
jlib/qt/View/QrCodeView.h
View file @
a214fe2d
...
@@ -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
.
0
f
);
QrCodeView
(
QWidget
*
parent
,
const
QString
&
title
,
const
QPixmap
&
pixmap
,
const
QSize
size
=
QSize
(
400
,
400
),
float
scale
=
1
.
0
f
);
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
{};
...
...
jlib/qt/qt.vcxproj
View file @
a214fe2d
...
@@ -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>
...
...
jlib/qt/qt.vcxproj.user
View file @
a214fe2d
<?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
test/qt_test/qt_test.vcxproj.user
View file @
a214fe2d
<?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
test/testPathHelperDataSeperatedQt/testPathHelperDataSeperatedQt.vcxproj.user
View file @
a214fe2d
<?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
test/testPathHelperDataSeperatedWithoutBinQt/testPathHelperDataSeperatedWithoutBinQt.vcxproj.user
View file @
a214fe2d
<?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
test/testPathHelperLocal/testPathHelperLocal.vcxproj.user
View file @
a214fe2d
<?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
test/testPathHelperLocalWithoutBin/testPathHelperLocalWithoutBin.vcxproj.user
View file @
a214fe2d
<?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
test/testSqlHelperQt/testSqlHelperQt.vcxproj.user
View file @
a214fe2d
...
@@ -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
test/test_process_qt/test_process_qt.vcxproj.user
View file @
a214fe2d
...
@@ -4,4 +4,12 @@
...
@@ -4,4 +4,12 @@
<LocalDebuggerCommandArguments>
$(QmlDebug)
>
p.txt
</LocalDebuggerCommandArguments>
<LocalDebuggerCommandArguments>
$(QmlDebug)
>
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment