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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/qt/notificator.h]
/**
| Cross-platform desktop notification
| client.
|
*/
#[Q_OBJECT]
pub struct Notificator {
base: QObject,
parent: *mut QWidget,
program_name: String,
mode: NotificatorMode,
tray_icon: *mut QSystemTrayIcon,
#[cfg(USE_DBUS)]
interface: *mut QDBusInterface,
}
/**
| Message class
|
*/
pub enum NotificatorClass
{
/**
| Informational message
|
*/
Information,
/**
| Notify user of potential problem
|
*/
Warning,
/**
| An error occurred
|
*/
Critical,
}
pub enum NotificatorMode {
/**
| Ignore informational notifications,
| and show a modal pop-up dialog for Critical
| notifications.
|
*/
None,
/**
| Use DBus org.freedesktop.Notifications
|
*/
Freedesktop,
/**
| Use QSystemTrayIcon::showMessage()
|
*/
QSystemTray,
/**
| Use the 10.8+ User Notification Center
| (Mac only)
|
*/
UserNotificationCenter,
}
impl Notificator {
/**
| Create a new notificator.
|
| -----------
| @note
|
| Ownership of trayIcon is not transferred
| to this object.
|
*/
pub fn new(
program_name: &String,
tray_icon: *mut QSystemTrayIcon,
parent: *mut QWidget) -> Self {
todo!();
/*
:
QObject(_parent),
parent(_parent),
programName(_programName),
mode(None),
trayIcon(_trayIcon)
#ifdef USE_DBUS
,interface(nullptr)
#endif
if(_trayIcon && _trayIcon->supportsMessages())
{
mode = QSystemTray;
}
#ifdef USE_DBUS
interface = new QDBusInterface("org.freedesktop.Notifications",
"/org/freedesktop/Notifications", "org.freedesktop.Notifications");
if(interface->isValid())
{
mode = Freedesktop;
}
#endif
#ifdef Q_OS_MAC
// check if users OS has support for NSUserNotification
if( MacNotificationHandler::instance()->hasUserNotificationCenterSupport()) {
mode = UserNotificationCenter;
}
#endif
*/
}
#[cfg(USE_DBUS)]
pub fn notify_dbus(&mut self,
cls: NotificatorClass,
title: &String,
text: &String,
icon: &QIcon,
millis_timeout: i32) {
todo!();
/*
// https://developer.gnome.org/notification-spec/
// Arguments for DBus "Notify" call:
QList<QVariant> args;
// Program Name:
args.append(programName);
// Replaces ID; A value of 0 means that this notification won't replace any existing notifications:
args.append(0U);
// Application Icon, empty string
args.append(QString());
// Summary
args.append(title);
// Body
args.append(text);
// Actions (none, actions are deprecated)
QStringList actions;
args.append(actions);
// Hints
QVariantMap hints;
// If no icon specified, set icon based on class
QIcon tmpicon;
if(icon.isNull())
{
QStyle::StandardPixmap sicon = QStyle::SP_MessageBoxQuestion;
switch(cls)
{
case Information: sicon = QStyle::SP_MessageBoxInformation; break;
case Warning: sicon = QStyle::SP_MessageBoxWarning; break;
case Critical: sicon = QStyle::SP_MessageBoxCritical; break;
default: break;
}
tmpicon = QApplication::style()->standardIcon(sicon);
}
else
{
tmpicon = icon;
}
hints["icon_data"] = FreedesktopImage::toVariant(tmpicon.pixmap(FREEDESKTOP_NOTIFICATION_ICON_SIZE).toImage());
args.append(hints);
// Timeout (in msec)
args.append(millisTimeout);
// "Fire and forget"
interface->callWithArgumentList(QDBus::NoBlock, "Notify", args);
*/
}
pub fn notify_systray(&mut self,
cls: NotificatorClass,
title: &String,
text: &String,
millis_timeout: i32) {
todo!();
/*
QSystemTrayIcon::MessageIcon sicon = QSystemTrayIcon::NoIcon;
switch(cls) // Set icon based on class
{
case Information: sicon = QSystemTrayIcon::Information; break;
case Warning: sicon = QSystemTrayIcon::Warning; break;
case Critical: sicon = QSystemTrayIcon::Critical; break;
}
trayIcon->showMessage(title, text, sicon, millisTimeout);
*/
}
#[cfg(Q_OS_MAC)]
pub fn notify_mac_user_notification_center(&mut self,
title: &String,
text: &String) {
todo!();
/*
// icon is not supported by the user notification center yet. OSX will use the app icon.
MacNotificationHandler::instance()->showNotification(title, text);
*/
}
/**
| Show notification message.
|
| -----------
| @note
|
| Platform implementations are free
| to ignore any of the provided fields
| except for \a text.
|
| -----------
| @param[in] cls
|
| general message class
| ----------
| @param[in] title
|
| title shown with message
| ----------
| @param[in] text
|
| message content
| ----------
| @param[in] icon
|
| optional icon to show with message
| ----------
| @param[in] millisTimeout
|
| notification timeout in milliseconds
| (defaults to 10 seconds)
|
*/
#[Q_SLOT]
pub fn notify(&mut self,
cls: NotificatorClass,
title: &String,
text: &String,
icon: Option<&QIcon>,
millis_timeout: Option<i32>) {
let icon: &QIcon = unsafe { icon.unwrap_or(&QIcon::new()) };
let millis_timeout: i32 = millis_timeout.unwrap_or(10000);
todo!();
/*
switch(mode)
{
#ifdef USE_DBUS
case Freedesktop:
notifyDBus(cls, title, text, icon, millisTimeout);
break;
#endif
case QSystemTray:
notifySystray(cls, title, text, millisTimeout);
break;
#ifdef Q_OS_MAC
case UserNotificationCenter:
notifyMacUserNotificationCenter(title, text);
break;
#endif
default:
if(cls == Critical)
{
// Fall back to old fashioned pop-up dialog if critical and no other notification available
QMessageBox::critical(parent, title, text, QMessageBox::Ok, QMessageBox::Ok);
}
break;
}
*/
}
}
//-------------------------------------------[.cpp/bitcoin/src/qt/notificator.cpp]
/**
| https://wiki.ubuntu.com/NotificationDevelopmentGuidelines
| recommends at least 128
|
*/
#[cfg(USE_DBUS)]
pub const FREEDESKTOP_NOTIFICATION_ICON_SIZE: i32 = 128;
impl Drop for Notificator {
fn drop(&mut self) {
todo!();
/*
#ifdef USE_DBUS
delete interface;
#endif
*/
}
}
/**
| Loosely based on
| https://www.qtcentre.org/archive/index.php/t-25879.html
|
*/
#[cfg(USE_DBUS)]
#[derive(Default)]
pub struct FreedesktopImage {
width: i32,
height: i32,
stride: i32,
has_alpha: bool,
channels: i32,
bits_per_sample: i32,
image: QByteArray,
}
#[cfg(USE_DBUS)]
impl FreedesktopImage {
#[cfg(USE_DBUS)]
pub fn new(img: &QImage) -> Self {
todo!();
/*
:
width(img.width()),
height(img.height()),
stride(img.width() * BYTES_PER_PIXEL),
hasAlpha(true),
channels(CHANNELS),
bitsPerSample(BITS_PER_SAMPLE)
// Convert 00xAARRGGBB to RGBA bytewise (endian-independent) format
QImage tmp = img.convertToFormat(QImage::Format_ARGB32);
const uint32_t *data = reinterpret_cast<const uint32_t*>(tmp.bits());
unsigned int num_pixels = width * height;
image.resize(num_pixels * BYTES_PER_PIXEL);
for(unsigned int ptr = 0; ptr < num_pixels; ++ptr)
{
image[ptr*BYTES_PER_PIXEL+0] = data[ptr] >> 16; // R
image[ptr*BYTES_PER_PIXEL+1] = data[ptr] >> 8; // G
image[ptr*BYTES_PER_PIXEL+2] = data[ptr]; // B
image[ptr*BYTES_PER_PIXEL+3] = data[ptr] >> 24; // A
}
*/
}
#[cfg(USE_DBUS)]
pub fn meta_type(&mut self) -> i32 {
todo!();
/*
return qDBusRegisterMetaType<FreedesktopImage>();
*/
}
/**
| Image to variant that can be marshalled
| over DBus
|
*/
#[cfg(USE_DBUS)]
pub fn to_variant(&mut self, img: &QImage) -> QVariant {
todo!();
/*
FreedesktopImage fimg(img);
return QVariant(FreedesktopImage::metaType(), &fimg);
*/
}
}
#[cfg(USE_DBUS)]
q_declare_metatype!{ FreedesktopImage }
/**
| Image configuration settings
|
*/
#[cfg(USE_DBUS)] pub const CHANNELS: i32 = 4;
#[cfg(USE_DBUS)] pub const BYTES_PER_PIXEL: i32 = 4;
#[cfg(USE_DBUS)] pub const BITS_PER_SAMPLE: i32 = 8;
#[cfg(USE_DBUS)]
impl Shl<&FreedesktopImage> for &mut QDBusArgument {
type Output = QDBusArgument;
#[inline] fn shl(self, rhs: &FreedesktopImage) -> Self::Output {
todo!();
/*
a.beginStructure();
a << i.width << i.height << i.stride << i.hasAlpha << i.bitsPerSample << i.channels << i.image;
a.endStructure();
return a;
*/
}
}
#[cfg(USE_DBUS)]
impl Shr<&mut FreedesktopImage> for &QDBusArgument {
type Output = QDBusArgument;
#[inline] fn shr(self, rhs: &mut FreedesktopImage) -> Self::Output {
todo!();
/*
a.beginStructure();
a >> i.width >> i.height >> i.stride >> i.hasAlpha >> i.bitsPerSample >> i.channels >> i.image;
a.endStructure();
return a;
*/
}
}