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
// 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**
///
/// A size is specified by a width() and a height(). It can be set in
/// the constructor and changed using the setWidth(), setHeight(), or
/// scale() functions, or using arithmetic operators. A size can also
/// be manipulated directly by retrieving references to the width and
/// height using the rwidth() and rheight() functions. Finally, the
/// width and height can be swapped using the transpose() function.
///
/// The isValid() function determines if a size is valid. A valid size
/// has both width and height greater than or equal to zero. The
/// isEmpty() function returns `true` if either of the width and height
/// is *less* than (or equal to) zero, while the isNull() function
/// returns `true` only if both the width and the height is zero.
///
/// Use the expandedTo() function to retrieve a size which holds the
/// maximum height and width of this size and a given
/// size. Similarly, the boundedTo() function returns a size which
/// holds the minimum height and width of this size and a given size.
///
/// The QSizeF class also provides the toSize() function returning a
/// QSize copy of this size, constructed by rounding the width and
/// height to the nearest integers.
///
/// QSizeF objects can be streamed as well as compared.
///
/// **See also:** [`Size`]
/// [`PointF`]
/// [`RectF`]
/// # 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 SizeF<'a> {
    #[doc(hidden)]
    pub data: Rc<Cell<Option<*const RUBase>>>,
    #[doc(hidden)]
    pub all_funcs: *const RUSizeFAllFuncs,
    #[doc(hidden)]
    pub owned: bool,
    #[doc(hidden)]
    pub _marker: PhantomData<::std::cell::Cell<&'a ()>>,
}

impl<'a> SizeF<'a> {
    pub fn new() -> SizeF<'a> {
        let data = Rc::new(Cell::new(None));

        let ffi_data = unsafe {
            ((*rute_ffi_get()).create_size_f)(
                ::std::ptr::null(),
                transmute(rute_object_delete_callback as usize),
                Rc::into_raw(data.clone()) as *const c_void,
            )
        };

        data.set(Some(ffi_data.qt_data));

        SizeF {
            data,
            all_funcs: ffi_data.all_funcs,
            owned: true,
            _marker: PhantomData,
        }
    }
    #[allow(dead_code)]
    pub(crate) fn new_from_rc(ffi_data: RUSizeF) -> SizeF<'a> {
        SizeF {
            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: RUSizeF) -> SizeF<'a> {
        SizeF {
            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: RUSizeF) -> SizeF<'a> {
        SizeF {
            data: Rc::new(Cell::new(Some(ffi_data.qt_data as *const RUBase))),
            all_funcs: ffi_data.all_funcs,
            owned: false,
            _marker: PhantomData,
        }
    }
    ///
    /// Returns `true` if both the width and height are 0.0 (ignoring the sign);
    /// otherwise returns `false.`
    ///
    /// **See also:** [`is_valid()`]
    /// [`is_empty()`]
    pub fn is_null(&self) -> bool {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).is_null)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns `true` if either of the width and height is less than or
    /// equal to 0; otherwise returns `false.`
    ///
    /// **See also:** [`is_null()`]
    /// [`is_valid()`]
    pub fn is_empty(&self) -> bool {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).is_empty)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns `true` if both the width and height is equal to or greater
    /// than 0; otherwise returns `false.`
    ///
    /// **See also:** [`is_null()`]
    /// [`is_empty()`]
    pub fn is_valid(&self) -> bool {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).is_valid)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns the width.
    ///
    /// **See also:** [`height()`]
    /// [`set_width()`]
    pub fn width(&self) -> f32 {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).width)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns the height.
    ///
    /// **See also:** [`width()`]
    /// [`set_height()`]
    pub fn height(&self) -> f32 {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).height)(obj_data);
            ret_val
        }
    }
    ///
    /// Sets the width to the given *width.*
    ///
    /// **See also:** [`width()`]
    /// [`rwidth()`]
    /// [`set_height()`]
    pub fn set_width(&self, w: f32) -> &Self {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            ((*funcs).set_width)(obj_data, w);
        }
        self
    }
    ///
    /// Sets the height to the given *height.*
    ///
    /// **See also:** [`height()`]
    /// [`rheight()`]
    /// [`set_width()`]
    pub fn set_height(&self, h: f32) -> &Self {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            ((*funcs).set_height)(obj_data, h);
        }
        self
    }
    ///
    /// Scales the size to a rectangle with the given *width* and *height,* according to the specified *mode.*
    ///
    /// * If *mode* is Qt::IgnoreAspectRatio, the size is set to ( *width,* *height).*
    /// * If *mode* is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside ( *width,* *height),* preserving the aspect ratio.
    /// * If *mode* is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside ( *width,* *height),* preserving the aspect ratio.
    ///
    /// Example:
    ///
    /// **See also:** [`set_width()`]
    /// [`set_height()`]
    /// [`scaled()`]
    ///
    /// **Overloads**
    /// Scales the size to a rectangle with the given *size,* according to
    /// the specified *mode.*
    ///
    /// Returns a size scaled to a rectangle with the given *width* and
    /// *height,* according to the specified *mode.*
    ///
    /// **See also:** [`scale()`]
    ///
    /// **Overloads**
    /// Returns a size scaled to a rectangle with the given size *s,*
    /// according to the specified *mode.*
    pub fn scale(&self, w: f32, h: f32, mode: AspectRatioMode) -> &Self {
        let enum_mode_3 = mode as u32;

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            ((*funcs).scale)(obj_data, w, h, enum_mode_3);
        }
        self
    }
    ///
    /// Scales the size to a rectangle with the given *width* and *height,* according to the specified *mode.*
    ///
    /// * If *mode* is Qt::IgnoreAspectRatio, the size is set to ( *width,* *height).*
    /// * If *mode* is Qt::KeepAspectRatio, the current size is scaled to a rectangle as large as possible inside ( *width,* *height),* preserving the aspect ratio.
    /// * If *mode* is Qt::KeepAspectRatioByExpanding, the current size is scaled to a rectangle as small as possible outside ( *width,* *height),* preserving the aspect ratio.
    ///
    /// Example:
    ///
    /// **See also:** [`set_width()`]
    /// [`set_height()`]
    /// [`scaled()`]
    ///
    /// **Overloads**
    /// Scales the size to a rectangle with the given *size,* according to
    /// the specified *mode.*
    ///
    /// Returns a size scaled to a rectangle with the given *width* and
    /// *height,* according to the specified *mode.*
    ///
    /// **See also:** [`scale()`]
    ///
    /// **Overloads**
    /// Returns a size scaled to a rectangle with the given size *s,*
    /// according to the specified *mode.*
    pub fn scale_2<S: SizeFTrait<'a>>(&self, s: &S, mode: AspectRatioMode) -> &Self {
        let (obj_s_1, _funcs) = s.get_size_f_obj_funcs();
        let enum_mode_2 = mode as u32;

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            ((*funcs).scale_2)(obj_data, obj_s_1, enum_mode_2);
        }
        self
    }
    ///
    /// Returns a size scaled to a rectangle with the given *width* and
    /// *height,* according to the specified *mode.*
    ///
    /// **See also:** [`scale()`]
    ///
    /// **Overloads**
    /// Returns a size scaled to a rectangle with the given size *s,*
    /// according to the specified *mode.*
    pub fn scaled(&self, w: f32, h: f32, mode: AspectRatioMode) -> SizeF {
        let enum_mode_3 = mode as u32;

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).scaled)(obj_data, w, h, enum_mode_3);
            let t = ret_val;
            let ret_val;
            if t.host_data != ::std::ptr::null() {
                ret_val = SizeF::new_from_rc(t);
            } else {
                ret_val = SizeF::new_from_owned(t);
            }
            ret_val
        }
    }
    ///
    /// Returns a size scaled to a rectangle with the given *width* and
    /// *height,* according to the specified *mode.*
    ///
    /// **See also:** [`scale()`]
    ///
    /// **Overloads**
    /// Returns a size scaled to a rectangle with the given size *s,*
    /// according to the specified *mode.*
    pub fn scaled_2<S: SizeFTrait<'a>>(&self, s: &S, mode: AspectRatioMode) -> SizeF {
        let (obj_s_1, _funcs) = s.get_size_f_obj_funcs();
        let enum_mode_2 = mode as u32;

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).scaled_2)(obj_data, obj_s_1, enum_mode_2);
            let t = ret_val;
            let ret_val;
            if t.host_data != ::std::ptr::null() {
                ret_val = SizeF::new_from_rc(t);
            } else {
                ret_val = SizeF::new_from_owned(t);
            }
            ret_val
        }
    }
    ///
    /// Returns a size holding the maximum width and height of this size
    /// and the given *otherSize.*
    ///
    /// **See also:** [`bounded_to()`]
    /// [`scale()`]
    pub fn expanded_to<S: SizeFTrait<'a>>(&self, arg0: &S) -> SizeF {
        let (obj_arg0_1, _funcs) = arg0.get_size_f_obj_funcs();

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).expanded_to)(obj_data, obj_arg0_1);
            let t = ret_val;
            let ret_val;
            if t.host_data != ::std::ptr::null() {
                ret_val = SizeF::new_from_rc(t);
            } else {
                ret_val = SizeF::new_from_owned(t);
            }
            ret_val
        }
    }
    ///
    /// Returns a size holding the minimum width and height of this size
    /// and the given *otherSize.*
    ///
    /// **See also:** [`expanded_to()`]
    /// [`scale()`]
    pub fn bounded_to<S: SizeFTrait<'a>>(&self, arg0: &S) -> SizeF {
        let (obj_arg0_1, _funcs) = arg0.get_size_f_obj_funcs();

        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).bounded_to)(obj_data, obj_arg0_1);
            let t = ret_val;
            let ret_val;
            if t.host_data != ::std::ptr::null() {
                ret_val = SizeF::new_from_rc(t);
            } else {
                ret_val = SizeF::new_from_owned(t);
            }
            ret_val
        }
    }
    ///
    /// Returns a reference to the width.
    ///
    /// Using a reference makes it possible to manipulate the width
    /// directly. For example:
    ///
    /// **See also:** [`rheight()`]
    /// [`set_width()`]
    pub fn rwidth(&self) -> f32 {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).rwidth)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns a reference to the height.
    ///
    /// Using a reference makes it possible to manipulate the height
    /// directly. For example:
    ///
    /// **See also:** [`rwidth()`]
    /// [`set_height()`]
    pub fn rheight(&self) -> f32 {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).rheight)(obj_data);
            ret_val
        }
    }
    ///
    /// Returns an integer based copy of this size.
    ///
    /// Note that the coordinates in the returned size will be rounded to
    /// the nearest integer.
    ///
    /// **See also:** [`q_size_f()`]
    pub fn to_size(&self) -> Size {
        let (obj_data, funcs) = self.get_size_f_obj_funcs();
        unsafe {
            let ret_val = ((*funcs).to_size)(obj_data);
            let t = ret_val;
            let ret_val;
            if t.host_data != ::std::ptr::null() {
                ret_val = Size::new_from_rc(t);
            } else {
                ret_val = Size::new_from_owned(t);
            }
            ret_val
        }
    }

    pub fn build(&self) -> Self {
        self.clone()
    }
}
pub trait SizeFTrait<'a> {
    #[inline]
    #[doc(hidden)]
    fn get_size_f_obj_funcs(&self) -> (*const RUBase, *const RUSizeFFuncs);
}

impl<'a> SizeFTrait<'a> for SizeF<'a> {
    #[doc(hidden)]
    fn get_size_f_obj_funcs(&self) -> (*const RUBase, *const RUSizeFFuncs) {
        let obj = self.data.get().unwrap();
        unsafe { (obj, (*self.all_funcs).size_f_funcs) }
    }
}