Bitcoin ABC
0.31.1
P2P Digital Currency
Toggle main menu visibility
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
f
g
h
i
k
m
n
o
p
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
h
i
l
m
n
p
q
r
s
t
u
v
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
!
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
!
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
m
n
o
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Properties
Related Functions
:
a
b
c
d
e
f
g
i
o
p
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
b
c
d
e
h
i
k
l
m
n
p
r
s
t
u
v
Enumerations
b
c
d
e
f
g
h
i
j
m
n
o
p
r
s
t
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
x
y
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
qt
qrimagewidget.h
Go to the documentation of this file.
1
// Copyright (c) 2011-2018 The Bitcoin Core developers
2
// Distributed under the MIT software license, see the accompanying
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#ifndef BITCOIN_QT_QRIMAGEWIDGET_H
6
#define BITCOIN_QT_QRIMAGEWIDGET_H
7
8
#include <QImage>
9
#include <QLabel>
10
11
/* Maximum allowed URI length */
12
static
const
int
MAX_URI_LENGTH
= 255;
13
14
/* Size of exported QR Code image */
15
static
const
int
QR_IMAGE_SIZE
= 350;
16
17
QT_BEGIN_NAMESPACE
18
class
QMenu;
19
QT_END_NAMESPACE
20
25
class
QRImageWidget
:
public
QLabel {
26
Q_OBJECT
27
28
public
:
29
explicit
QRImageWidget
(QWidget *parent =
nullptr
);
30
bool
hasPixmap
()
const
;
31
bool
setQR
(
const
QString &qrData,
const
QString &text =
""
);
32
QImage
exportImage
();
33
34
public
Q_SLOTS:
35
void
saveImage
();
36
void
copyImage
();
37
38
protected
:
39
virtual
void
mousePressEvent
(QMouseEvent *event)
override
;
40
virtual
void
contextMenuEvent
(QContextMenuEvent *event)
override
;
41
42
private
:
43
QMenu *
contextMenu
;
44
};
45
46
#endif
// BITCOIN_QT_QRIMAGEWIDGET_H
QRImageWidget
Label widget for QR code.
Definition:
qrimagewidget.h:25
QRImageWidget::setQR
bool setQR(const QString &qrData, const QString &text="")
Definition:
qrimagewidget.cpp:46
QRImageWidget::copyImage
void copyImage()
Definition:
qrimagewidget.cpp:144
QRImageWidget::contextMenu
QMenu * contextMenu
Definition:
qrimagewidget.h:43
QRImageWidget::hasPixmap
bool hasPixmap() const
Definition:
qrimagewidget.cpp:38
QRImageWidget::exportImage
QImage exportImage()
Definition:
qrimagewidget.cpp:111
QRImageWidget::contextMenuEvent
virtual void contextMenuEvent(QContextMenuEvent *event) override
Definition:
qrimagewidget.cpp:151
QRImageWidget::mousePressEvent
virtual void mousePressEvent(QMouseEvent *event) override
Definition:
qrimagewidget.cpp:119
QRImageWidget::saveImage
void saveImage()
Definition:
qrimagewidget.cpp:133
QRImageWidget::QRImageWidget
QRImageWidget(QWidget *parent=nullptr)
Definition:
qrimagewidget.cpp:25
QR_IMAGE_SIZE
static const int QR_IMAGE_SIZE
Definition:
qrimagewidget.h:15
MAX_URI_LENGTH
static const int MAX_URI_LENGTH
Definition:
qrimagewidget.h:12
Generated on Fri Apr 11 2025 15:32:29 for Bitcoin ABC by
1.9.4