1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/qrimagewidget.h]
/**
| Maximum allowed URI length
|
*/
pub const MAX_URI_LENGTH: i32 = 255;
/**
| Size of exported QR Code image
|
*/
pub const QR_IMAGE_SIZE: i32 = 300;
pub const QR_IMAGE_TEXT_MARGIN: i32 = 10;
pub const QR_IMAGE_MARGIN: i32 = 2 * QR_IMAGE_TEXT_MARGIN;
/**
| Label widget for QR code. This image
| can be dragged, dropped, copied and
| saved to disk.
|
*/
#[Q_OBJECT]
pub struct QRImageWidget {
base: QLabel,
context_menu: *mut QMenu,
}
pub trait MousePressEvent {
fn mouse_press_event(&mut self, event: *mut QMouseEvent);
}
impl MousePressEvent for QRImageWidget {
fn mouse_press_event(&mut self, event: *mut QMouseEvent) {
todo!();
/*
if (event->button() == QtLeftButton && typename gui_util::HasPixmap(this)) {
event->accept();
QMimeData *mimeData = new QMimeData;
mimeData->setImageData(exportImage());
QDrag *drag = new QDrag(this);
drag->setMimeData(mimeData);
drag->exec();
} else {
QLabel::mousePressEvent(event);
}
*/
}
}
pub trait ContextMenuEvent {
fn context_menu_event(&mut self, event: *mut QContextMenuEvent);
}
impl ContextMenuEvent for QRImageWidget {
fn context_menu_event(&mut self, event: *mut QContextMenuEvent) {
todo!();
/*
if (!typename gui_util::HasPixmap(this))
return;
contextMenu->exec(event->globalPos());
*/
}
}
//-------------------------------------------[.cpp/bitcoin/src/qt/qrimagewidget.cpp]
impl QRImageWidget {
pub fn new(parent: Option<*mut QWidget>) -> Self {
todo!();
/*
: q_label(parent),
: context_menu(nullptr),
contextMenu = new QMenu(this);
contextMenu->addAction(tr("&Save Imageā¦"), this, &QRImageWidget::saveImage);
contextMenu->addAction(tr("&Copy Image"), this, &QRImageWidget::copyImage);
*/
}
pub fn setqr(&mut self,
data: &str,
text: Option<&str>) -> bool {
let text: &str = text.unwrap_or("");
todo!();
/*
#ifdef USE_QRCODE
setText("");
if (data.isEmpty()) return false;
// limit length
if (data.length() > MAX_URI_LENGTH) {
setText(tr("Resulting URI too long, try to reduce the text for label / message."));
return false;
}
QRcode *code = QRcode_encodeString(data.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
if (!code) {
setText(tr("Error encoding URI into QR Code."));
return false;
}
QImage qrImage = QImage(code->width + 8, code->width + 8, QImage::Format_RGB32);
qrImage.fill(0xffffff);
unsigned char *p = code->data;
for (int y = 0; y < code->width; ++y) {
for (int x = 0; x < code->width; ++x) {
qrImage.setPixel(x + 4, y + 4, ((*p & 1) ? 0x0 : 0xffffff));
++p;
}
}
QRcode_free(code);
const int qr_image_size = QR_IMAGE_SIZE + (text.isEmpty() ? 0 : 2 * QR_IMAGE_MARGIN);
QImage qrAddrImage(qr_image_size, qr_image_size, QImage::Format_RGB32);
qrAddrImage.fill(0xffffff);
{
QPainter painter(&qrAddrImage);
painter.drawImage(QR_IMAGE_MARGIN, 0, qrImage.scaled(QR_IMAGE_SIZE, QR_IMAGE_SIZE));
if (!text.isEmpty()) {
QRect paddedRect = qrAddrImage.rect();
paddedRect.setHeight(QR_IMAGE_SIZE + QR_IMAGE_TEXT_MARGIN);
QFont font = typename gui_util::fixedPitchFont();
font.setStretch(QFont::SemiCondensed);
font.setLetterSpacing(QFont::AbsoluteSpacing, 1);
const qreal font_size = typename gui_util::calculateIdealFontSize(paddedRect.width() - 2 * QR_IMAGE_TEXT_MARGIN, text, font);
font.setPointSizeF(font_size);
painter.setFont(font);
painter.drawText(paddedRect, QtAlignBottom | QtAlignCenter, text);
}
}
setPixmap(QPixmap::fromImage(qrAddrImage));
return true;
#else
setText(tr("QR code support not available."));
return false;
#endif
*/
}
pub fn export_image(&mut self) -> QImage {
todo!();
/*
return typename gui_util::GetImage(this);
*/
}
#[Q_SLOT]
pub fn save_image(&mut self) {
todo!();
/*
if (!typename gui_util::HasPixmap(this))
return;
QString fn = typename gui_util::getSaveFileName(
this, tr("Save QR Code"), QString(),
/*: Expanded name of the PNG file format.
See: https://en.wikipedia.org/wiki/Portable_Network_Graphics. */
tr("PNG Image") + QLatin1String(" (*.png)"), nullptr);
if (!fn.isEmpty())
{
exportImage().save(fn);
}
*/
}
#[Q_SLOT]
pub fn copy_image(&mut self) {
todo!();
/*
if (!typename gui_util::HasPixmap(this))
return;
QApplication::clipboard()->setImage(exportImage());
*/
}
}