comparison cpp/qt_core/QRectF_shell.cpp @ 8:c0c94c0066fa

missing files
author eldar
date Thu, 14 May 2009 11:02:22 +0000
parents
children 9784459f0750
comparison
equal deleted inserted replaced
7:b8a79f9fba5a 8:c0c94c0066fa
1 #include <qdatastream.h>
2 #include <qrect.h>
3
4 #include "qtd_core.h"
5
6
7 // QRectF::contains(const QPointF & p) const
8 extern "C" DLL_PUBLIC bool qtd_QRectF_contains_QPointF
9 (void* __this_nativeId,
10 void* p0)
11 {
12 QRectF *__qt_this = (QRectF *) __this_nativeId;
13 const QPointF& __qt_p0 = (const QPointF& ) *(QPointF *)p0;
14
15 bool __qt_return_value = __qt_this->contains((const QPointF& )__qt_p0);
16
17 bool __d_return_value = __qt_return_value;
18
19 return __d_return_value;
20 }
21
22 // QRectF::contains(const QRectF & r) const
23 extern "C" DLL_PUBLIC bool qtd_QRectF_contains_QRectF
24 (void* __this_nativeId,
25 void* r0)
26 {
27 const QRectF& __qt_r0 = (const QRectF& ) *(QRectF *)r0;
28 QRectF *__qt_this = (QRectF *) __this_nativeId;
29 bool __qt_return_value = __qt_this->contains((const QRectF& )__qt_r0);
30
31 bool __d_return_value = __qt_return_value;
32
33 return __d_return_value;
34 }
35
36 // QRectF::intersects(const QRectF & r) const
37 extern "C" DLL_PUBLIC bool qtd_QRectF_intersects_QRectF
38 (void* __this_nativeId,
39 void* r0)
40 {
41 const QRectF& __qt_r0 = (const QRectF& ) *(QRectF *)r0;
42 QRectF *__qt_this = (QRectF *) __this_nativeId;
43 bool __qt_return_value = __qt_this->intersects((const QRectF& )__qt_r0);
44
45 bool __d_return_value = __qt_return_value;
46
47 return __d_return_value;
48 }
49
50 // QRectF::normalized() const
51 extern "C" DLL_PUBLIC QRectF qtd_QRectF_normalized
52 (void* __this_nativeId)
53 {
54 QRectF *__qt_this = (QRectF *) __this_nativeId;
55 return __qt_this->normalized();
56 }
57
58 // QRectF::operator&(const QRectF & r) const
59 extern "C" DLL_PUBLIC QRectF qtd_QRectF_operator_and_QRectF
60 (void* __this_nativeId,
61 void* r0)
62 {
63 const QRectF& __qt_r0 = (const QRectF& ) *(QRectF *)r0;
64 QRectF *__qt_this = (QRectF *) __this_nativeId;
65 return __qt_this->operator&((const QRectF& )__qt_r0);
66 }
67
68 // QRectF::operator<<(QDataStream & arg__1)
69 extern "C" DLL_PUBLIC void qtd_QRectF_writeTo_QDataStream
70 (void* __this_nativeId,
71 void* arg__1)
72 {
73 QDataStream& __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
74 QRectF *__qt_this = (QRectF *) __this_nativeId;
75 if (__qt_this != 0) ::operator<<((QDataStream& )__qt_arg__1, *__qt_this);
76
77 }
78
79 // QRectF::operator>>(QDataStream & arg__1)
80 extern "C" DLL_PUBLIC void qtd_QRectF_readFrom_QDataStream
81 (void* __this_nativeId,
82 void* arg__1)
83 {
84 QDataStream& __qt_arg__1 = (QDataStream& ) * (QDataStream *) arg__1;
85 QRectF *__qt_this = (QRectF *) __this_nativeId;
86 if (__qt_this != 0) ::operator>>((QDataStream& )__qt_arg__1, *__qt_this);
87
88 }
89
90 // QRectF::operator|(const QRectF & r) const
91 extern "C" DLL_PUBLIC QRectF qtd_QRectF_operator_or_QRectF
92 (void* __this_nativeId,
93 void* r0)
94 {
95 const QRectF& __qt_r0 = (const QRectF& ) *(QRectF *)r0;
96 QRectF *__qt_this = (QRectF *) __this_nativeId;
97 return __qt_this->operator|((const QRectF& )__qt_r0);
98 }
99
100 // QRectF::toAlignedRect() const
101 extern "C" DLL_PUBLIC QRect qtd_QRectF_toAlignedRect
102 (void* __this_nativeId)
103 {
104 QRectF *__qt_this = (QRectF *) __this_nativeId;
105 return __qt_this->toAlignedRect();
106 }