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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
// This file is auto-generated by rute_gen. DO NOT EDIT.
use std::cell::Cell;
use std::rc::Rc;
#[allow(unused_imports)]
use std::marker::PhantomData;
#[allow(unused_imports)]
use std::os::raw::c_void;
#[allow(unused_imports)]
use std::mem::transmute;
#[allow(unused_imports)]
use std::ffi::{CStr, CString};
use rute_ffi_base::*;
#[allow(unused_imports)]
use auto::*;
/// **Notice these docs are heavy WIP and not very relevent yet**
///
/// The clipboard offers a simple mechanism to copy and paste data
/// between applications.
///
/// QClipboard supports the same data types that QDrag does, and uses
/// similar mechanisms. For advanced clipboard usage read [Drag and
/// Drop](Drag%20and%0A%20%20%20%20Drop)
///
///
/// There is a single QClipboard object in an application, accessible
/// as QGuiApplication::clipboard().
///
/// Example:
///
/// QClipboard features some convenience functions to access common
/// data types: setText() allows the exchange of Unicode text and
/// setPixmap() and setImage() allows the exchange of QPixmaps and
/// QImages between applications. The setMimeData() function is the
/// ultimate in flexibility: it allows you to add any QMimeData into
/// the clipboard. There are corresponding getters for each of these,
/// e.g. text(), image() and pixmap(). You can clear the clipboard by
/// calling clear().
///
/// A typical example of the use of these functions follows:
///
/// # Notes for X11 Users
///
/// * The X11 Window System has the concept of a separate selection and clipboard. When text is selected, it is immediately available as the global mouse selection. The global mouse selection may later be copied to the clipboard. By convention, the middle mouse button is used to paste the global mouse selection.
/// * X11 also has the concept of ownership; if you change the selection within a window, X11 will only notify the owner and the previous owner of the change, i.e. it will not notify all applications that the selection or clipboard data changed.
/// * Lastly, the X11 clipboard is event driven, i.e. the clipboard will not function properly if the event loop is not running. Similarly, it is recommended that the contents of the clipboard are stored or retrieved in direct response to user-input events, e.g. mouse button or key presses and releases. You should not store or retrieve the clipboard contents in response to timer or non-user-input events.
/// * Since there is no standard way to copy and paste files between applications on X11, various MIME types and conventions are currently in use. For instance, Nautilus expects files to be supplied with a `x-special/gnome-copied-files` MIME type with data beginning with the cut/copy action, a newline character, and the URL of the file.
///
/// # Notes for \macos Users
///
/// MacOS supports a separate find buffer that holds the current
/// search string in Find operations. This find clipboard can be accessed
/// by specifying the FindBuffer mode.
///
/// # Notes for Windows and \macos Users
///
/// * Windows and MacOS do not support the global mouse selection; they only supports the global clipboard, i.e. they only add text to the clipboard when an explicit copy or cut is made.
/// * Windows and MacOS does not have the concept of ownership; the clipboard is a fully global resource so all applications are notified of changes.
///
/// # Notes for Universal Windows Platform Users
///
/// * The Universal Windows Platform only allows to query the clipboard in case the application is active and an application window has focus. Accessing the clipboard data when in background will fail due to access denial.
///
/// **See also:** [`GuiApplication`]
/// # Licence
///
/// The documentation is an adoption of the original [Qt Documentation](http://doc.qt.io/) and provided herein is licensed under the terms of the [GNU Free Documentation License version 1.3](http://www.gnu.org/licenses/fdl.html) as published by the Free Software Foundation.
#[derive(Clone)]
pub struct Clipboard<'a> {
#[doc(hidden)]
pub data: Rc<Cell<Option<*const RUBase>>>,
#[doc(hidden)]
pub all_funcs: *const RUClipboardAllFuncs,
#[doc(hidden)]
pub owned: bool,
#[doc(hidden)]
pub _marker: PhantomData<::std::cell::Cell<&'a ()>>,
}
impl<'a> Clipboard<'a> {
#[allow(dead_code)]
pub(crate) fn new_from_rc(ffi_data: RUClipboard) -> Clipboard<'a> {
Clipboard {
data: unsafe { Rc::from_raw(ffi_data.host_data as *const Cell<Option<*const RUBase>>) },
all_funcs: ffi_data.all_funcs,
owned: false,
_marker: PhantomData,
}
}
#[allow(dead_code)]
pub(crate) fn new_from_owned(ffi_data: RUClipboard) -> Clipboard<'a> {
Clipboard {
data: Rc::new(Cell::new(Some(ffi_data.qt_data as *const RUBase))),
all_funcs: ffi_data.all_funcs,
owned: true,
_marker: PhantomData,
}
}
#[allow(dead_code)]
pub(crate) fn new_from_temporary(ffi_data: RUClipboard) -> Clipboard<'a> {
Clipboard {
data: Rc::new(Cell::new(Some(ffi_data.qt_data as *const RUBase))),
all_funcs: ffi_data.all_funcs,
owned: false,
_marker: PhantomData,
}
}
///
/// Clear the clipboard contents.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, this
/// function clears the global clipboard contents. If *mode* is
/// QClipboard::Selection, this function clears the global mouse
/// selection contents. If *mode* is QClipboard::FindBuffer, this
/// function clears the search string buffer.
///
/// **See also:** [`Clipboard::mode()`]
/// [`supports_selection()`]
pub fn clear(&self, mode: Mode) -> &Self {
let enum_mode_1 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
((*funcs).clear)(obj_data, enum_mode_1);
}
self
}
///
/// Returns `true` if the clipboard supports mouse selection; otherwise
/// returns `false.`
pub fn supports_selection(&self) -> bool {
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).supports_selection)(obj_data);
ret_val
}
}
///
/// Returns `true` if the clipboard supports a separate search buffer; otherwise
/// returns `false.`
pub fn supports_find_buffer(&self) -> bool {
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).supports_find_buffer)(obj_data);
ret_val
}
}
///
/// Returns `true` if this clipboard object owns the mouse selection
/// data; otherwise returns `false.`
pub fn owns_selection(&self) -> bool {
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).owns_selection)(obj_data);
ret_val
}
}
///
/// Returns `true` if this clipboard object owns the clipboard data;
/// otherwise returns `false.`
pub fn owns_clipboard(&self) -> bool {
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).owns_clipboard)(obj_data);
ret_val
}
}
///
/// Returns `true` if this clipboard object owns the find buffer data;
/// otherwise returns `false.`
pub fn owns_find_buffer(&self) -> bool {
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).owns_find_buffer)(obj_data);
ret_val
}
}
///
/// **Overloads**
/// Returns the clipboard text in subtype *subtype,* or an empty string
/// if the clipboard does not contain any text. If *subtype* is null,
/// any subtype is acceptable, and *subtype* is set to the chosen
/// subtype.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// text is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the text is retrieved from the global
/// mouse selection.
///
/// Common values for *subtype* are and .
///
/// Note that calling this function repeatedly, for instance from a
/// key event handler, may be slow. In such cases, you should use the
/// `dataChanged()` signal instead.
///
/// **See also:** [`set_text()`]
/// [`mime_data()`]
///
/// Returns the clipboard text as plain text, or an empty string if the
/// clipboard does not contain any text.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// text is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the text is retrieved from the global
/// mouse selection. If *mode* is QClipboard::FindBuffer, the
/// text is retrieved from the search string buffer.
///
/// **See also:** [`set_text()`]
/// [`mime_data()`]
pub fn text(&self, mode: Mode) -> String {
let enum_mode_1 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).text)(obj_data, enum_mode_1);
let ret_val = CStr::from_ptr(ret_val).to_string_lossy().into_owned();
ret_val
}
}
///
/// **Overloads**
/// Returns the clipboard text in subtype *subtype,* or an empty string
/// if the clipboard does not contain any text. If *subtype* is null,
/// any subtype is acceptable, and *subtype* is set to the chosen
/// subtype.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// text is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the text is retrieved from the global
/// mouse selection.
///
/// Common values for *subtype* are and .
///
/// Note that calling this function repeatedly, for instance from a
/// key event handler, may be slow. In such cases, you should use the
/// `dataChanged()` signal instead.
///
/// **See also:** [`set_text()`]
/// [`mime_data()`]
///
/// Returns the clipboard text as plain text, or an empty string if the
/// clipboard does not contain any text.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// text is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the text is retrieved from the global
/// mouse selection. If *mode* is QClipboard::FindBuffer, the
/// text is retrieved from the search string buffer.
///
/// **See also:** [`set_text()`]
/// [`mime_data()`]
///
/// Copies *text* into the clipboard as plain text.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// text is stored in the global clipboard. If *mode* is
/// QClipboard::Selection, the text is stored in the global
/// mouse selection. If *mode* is QClipboard::FindBuffer, the
/// text is stored in the search string buffer.
///
/// **See also:** [`text()`]
/// [`set_mime_data()`]
pub fn set_text(&self, arg0: &str, mode: Mode) -> &Self {
let str_in_arg0_1 = CString::new(arg0).unwrap();
let enum_mode_2 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
((*funcs).set_text)(obj_data, str_in_arg0_1.as_ptr(), enum_mode_2);
}
self
}
///
/// Returns a pointer to a QMimeData representation of the current
/// clipboard data (can be NULL if the given *mode* is not
/// supported by the platform).
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// data is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the data is retrieved from the global
/// mouse selection. If *mode* is QClipboard::FindBuffer, the
/// data is retrieved from the search string buffer.
///
/// The text(), image(), and pixmap() functions are simpler
/// wrappers for retrieving text, image, and pixmap data.
///
/// **Note**: The pointer returned might become invalidated when the contents
/// of the clipboard changes; either by calling one of the setter functions
/// or externally by the system clipboard changing.
///
/// **See also:** [`set_mime_data()`]
pub fn mime_data(&self, mode: Mode) -> Option<MimeData> {
let enum_mode_1 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).mime_data)(obj_data, enum_mode_1);
if ret_val.qt_data == ::std::ptr::null() {
return None;
}
let t = ret_val;
let ret_val;
if t.host_data != ::std::ptr::null() {
ret_val = MimeData::new_from_rc(t);
} else {
ret_val = MimeData::new_from_owned(t);
}
Some(ret_val)
}
}
///
/// Sets the clipboard data to *src.* Ownership of the data is
/// transferred to the clipboard. If you want to remove the data
/// either call clear() or call setMimeData() again with new data.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// data is stored in the global clipboard. If *mode* is
/// QClipboard::Selection, the data is stored in the global
/// mouse selection. If *mode* is QClipboard::FindBuffer, the
/// data is stored in the search string buffer.
///
/// The setText(), setImage() and setPixmap() functions are simpler
/// wrappers for setting text, image and pixmap data respectively.
///
/// **See also:** [`mime_data()`]
pub fn set_mime_data<M: MimeDataTrait<'a>>(&self, data: &M, mode: Mode) -> &Self {
let (obj_data_1, _funcs) = data.get_mime_data_obj_funcs();
let enum_mode_2 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
((*funcs).set_mime_data)(obj_data, obj_data_1, enum_mode_2);
}
self
}
///
/// Returns the clipboard image, or returns a null image if the
/// clipboard does not contain an image or if it contains an image in
/// an unsupported image format.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// image is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the image is retrieved from the global
/// mouse selection.
///
/// **See also:** [`set_image()`]
/// [`pixmap()`]
/// [`mime_data()`]
/// [`Image::is_null`]
pub fn image(&self, mode: Mode) -> Image {
let enum_mode_1 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).image)(obj_data, enum_mode_1);
let t = ret_val;
let ret_val;
if t.host_data != ::std::ptr::null() {
ret_val = Image::new_from_rc(t);
} else {
ret_val = Image::new_from_owned(t);
}
ret_val
}
}
///
/// Returns the clipboard pixmap, or null if the clipboard does not
/// contain a pixmap. Note that this can lose information. For
/// example, if the image is 24-bit and the display is 8-bit, the
/// result is converted to 8 bits, and if the image has an alpha
/// channel, the result just has a mask.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// pixmap is retrieved from the global clipboard. If *mode* is
/// QClipboard::Selection, the pixmap is retrieved from the global
/// mouse selection.
///
/// **See also:** [`set_pixmap()`]
/// [`image()`]
/// [`mime_data()`]
/// [`Pixmap::convert_from_image`]
pub fn pixmap(&self, mode: Mode) -> Pixmap {
let enum_mode_1 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
let ret_val = ((*funcs).pixmap)(obj_data, enum_mode_1);
let t = ret_val;
let ret_val;
if t.host_data != ::std::ptr::null() {
ret_val = Pixmap::new_from_rc(t);
} else {
ret_val = Pixmap::new_from_owned(t);
}
ret_val
}
}
///
/// Copies the *image* into the clipboard.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// image is stored in the global clipboard. If *mode* is
/// QClipboard::Selection, the data is stored in the global
/// mouse selection.
///
/// This is shorthand for:
///
/// **See also:** [`image()`]
/// [`set_pixmap()`]
/// [`set_mime_data()`]
pub fn set_image<I: ImageTrait<'a>>(&self, arg0: &I, mode: Mode) -> &Self {
let (obj_arg0_1, _funcs) = arg0.get_image_obj_funcs();
let enum_mode_2 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
((*funcs).set_image)(obj_data, obj_arg0_1, enum_mode_2);
}
self
}
///
/// Copies *pixmap* into the clipboard. Note that this is slower
/// than setImage() because it needs to convert the QPixmap to a
/// QImage first.
///
/// The *mode* argument is used to control which part of the system
/// clipboard is used. If *mode* is QClipboard::Clipboard, the
/// pixmap is stored in the global clipboard. If *mode* is
/// QClipboard::Selection, the pixmap is stored in the global
/// mouse selection.
///
/// **See also:** [`pixmap()`]
/// [`set_image()`]
/// [`set_mime_data()`]
pub fn set_pixmap<P: PixmapTrait<'a>>(&self, arg0: &P, mode: Mode) -> &Self {
let (obj_arg0_1, _funcs) = arg0.get_pixmap_obj_funcs();
let enum_mode_2 = mode as u32;
let (obj_data, funcs) = self.get_clipboard_obj_funcs();
unsafe {
((*funcs).set_pixmap)(obj_data, obj_arg0_1, enum_mode_2);
}
self
}
#[doc(hidden)]
pub fn object_name(&self) -> String {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).object_name)(obj_data);
let ret_val = CStr::from_ptr(ret_val).to_string_lossy().into_owned();
ret_val
}
}
#[doc(hidden)]
pub fn set_object_name(&self, name: &str) -> &Self {
let str_in_name_1 = CString::new(name).unwrap();
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).set_object_name)(obj_data, str_in_name_1.as_ptr());
}
self
}
#[doc(hidden)]
pub fn is_widget_type(&self) -> bool {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).is_widget_type)(obj_data);
ret_val
}
}
#[doc(hidden)]
pub fn is_window_type(&self) -> bool {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).is_window_type)(obj_data);
ret_val
}
}
#[doc(hidden)]
pub fn signals_blocked(&self) -> bool {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).signals_blocked)(obj_data);
ret_val
}
}
#[doc(hidden)]
pub fn block_signals(&self, b: bool) -> bool {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).block_signals)(obj_data, b);
ret_val
}
}
#[doc(hidden)]
pub fn start_timer(&self, interval: i32, timer_type: TimerType) -> i32 {
let enum_timer_type_2 = timer_type as u32;
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).start_timer)(obj_data, interval, enum_timer_type_2);
ret_val
}
}
#[doc(hidden)]
pub fn start_timer_2(&self, time: u32, timer_type: TimerType) -> i32 {
let enum_timer_type_2 = timer_type as u32;
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).start_timer_2)(obj_data, time, enum_timer_type_2);
ret_val
}
}
#[doc(hidden)]
pub fn kill_timer(&self, id: i32) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).kill_timer)(obj_data, id);
}
self
}
#[doc(hidden)]
pub fn set_parent<O: ObjectTrait<'a>>(&self, parent: &O) -> &Self {
let (obj_parent_1, _funcs) = parent.get_object_obj_funcs();
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).set_parent)(obj_data, obj_parent_1);
}
self
}
#[doc(hidden)]
pub fn install_event_filter<O: ObjectTrait<'a>>(&self, filter_obj: &O) -> &Self {
let (obj_filter_obj_1, _funcs) = filter_obj.get_object_obj_funcs();
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).install_event_filter)(obj_data, obj_filter_obj_1);
}
self
}
#[doc(hidden)]
pub fn dump_object_tree(&self) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).dump_object_tree)(obj_data);
}
self
}
#[doc(hidden)]
pub fn dump_object_info(&self) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).dump_object_info)(obj_data);
}
self
}
#[doc(hidden)]
pub fn dump_object_tree_2(&self) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).dump_object_tree_2)(obj_data);
}
self
}
#[doc(hidden)]
pub fn dump_object_info_2(&self) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).dump_object_info_2)(obj_data);
}
self
}
#[doc(hidden)]
pub fn parent(&self) -> Option<Object> {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
let ret_val = ((*funcs).parent)(obj_data);
if ret_val.qt_data == ::std::ptr::null() {
return None;
}
let t = ret_val;
let ret_val;
if t.host_data != ::std::ptr::null() {
ret_val = Object::new_from_rc(t);
} else {
ret_val = Object::new_from_owned(t);
}
Some(ret_val)
}
}
#[doc(hidden)]
pub fn delete_later(&self) -> &Self {
let (obj_data, funcs) = self.get_object_obj_funcs();
unsafe {
((*funcs).delete_later)(obj_data);
}
self
}
#[doc(hidden)]
pub fn set_custom_event_ud<F, T>(&self, data: &'a T, func: F) -> &Self
where
F: Fn(&T, &Event) + 'a,
T: 'a,
{
let (obj_data, funcs) = self.get_object_obj_funcs();
let f: Box<Box<Fn(&T, &Event) + 'a>> = Box::new(Box::new(func));
let user_data = data as *const _ as *const c_void;
unsafe {
((*funcs).set_custom_event)(
obj_data,
user_data,
Box::into_raw(f) as *const _,
transmute(object_custom_trampoline_ud::<T> as usize),
);
}
self
}
pub fn set_custom_event<F>(&self, func: F) -> &Self
where
F: Fn(&Event) + 'a,
{
let (obj_data, funcs) = self.get_object_obj_funcs();
let f: Box<Box<Fn(&Event) + 'a>> = Box::new(Box::new(func));
unsafe {
((*funcs).set_custom_event)(
obj_data,
::std::ptr::null(),
Box::into_raw(f) as *const _,
transmute(object_custom_trampoline as usize),
);
}
self
}
pub fn build(&self) -> Self {
self.clone()
}
}
pub trait ClipboardTrait<'a> {
#[inline]
#[doc(hidden)]
fn get_clipboard_obj_funcs(&self) -> (*const RUBase, *const RUClipboardFuncs);
}
impl<'a> ObjectTrait<'a> for Clipboard<'a> {
#[doc(hidden)]
fn get_object_obj_funcs(&self) -> (*const RUBase, *const RUObjectFuncs) {
let obj = self.data.get().unwrap();
unsafe { (obj, (*self.all_funcs).object_funcs) }
}
}
impl<'a> ClipboardTrait<'a> for Clipboard<'a> {
#[doc(hidden)]
fn get_clipboard_obj_funcs(&self) -> (*const RUBase, *const RUClipboardFuncs) {
let obj = self.data.get().unwrap();
unsafe { (obj, (*self.all_funcs).clipboard_funcs) }
}
}
#[repr(u32)]
pub enum Mode {
Clipboard = 0,
Selection = 1,
FindBuffer = 2,
}