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
|
static OF_INLINE of_dimension_t
toOF(const QSize &qSize)
{
return of_dimension(qSize.width(), qSize.height());
}
static OF_INLINE QSize
toQt(const of_dimension_t &dimension)
{
return QSize(dimension.width, dimension.height);
}
static OF_INLINE of_rectangle_t
toOF(const QRect &qRect)
{
return of_rectangle(qRect.x(), qRect.y(),
qRect.width(), qRect.height());
}
static OF_INLINE QRect
toQt(const of_rectangle_t &rectangle)
{
return QRect(rectangle.origin.x, rectangle.origin.y,
rectangle.size.width, rectangle.size.height);
}
}
|
>
>
>
>
>
>
|
|
>
>
>
>
>
>
>
|
|
|
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
|
static OF_INLINE of_dimension_t
toOF(const QSize &qSize)
{
return of_dimension(qSize.width(), qSize.height());
}
static OF_INLINE of_dimension_t
toOF(const QSizeF &qSizeF)
{
return of_dimension(qSizeF.width(), qSizeF.height());
}
static OF_INLINE QSizeF
toQt(const of_dimension_t &dimension)
{
return QSizeF(dimension.width, dimension.height);
}
static OF_INLINE of_rectangle_t
toOF(const QRect &qRect)
{
return of_rectangle(qRect.x(), qRect.y(),
qRect.width(), qRect.height());
}
static OF_INLINE of_rectangle_t
toOF(const QRectF &qRectF)
{
return of_rectangle(qRectF.x(), qRectF.y(),
qRectF.width(), qRectF.height());
}
static OF_INLINE QRectF
toQt(const of_rectangle_t &rectangle)
{
return QRectF(rectangle.origin.x, rectangle.origin.y,
rectangle.size.width, rectangle.size.height);
}
}
|