[11] | 1 | ' Classes/System/Drawing/RectangleF.ab
|
---|
| 2 |
|
---|
| 3 | #ifndef __SYSTEM_DRAWING_RECTANGLEF_AB__
|
---|
| 4 | #define __SYSTEM_DRAWING_RECTANGLEF_AB__
|
---|
| 5 |
|
---|
[241] | 6 | #require <Classes/System/Math.ab>
|
---|
| 7 | #require <Classes/System/Drawing/PointF.ab>
|
---|
| 8 | #require <Classes/System/Drawing/SizeF.ab>
|
---|
[11] | 9 |
|
---|
[241] | 10 | Namespace System
|
---|
| 11 | Namespace Drawing
|
---|
| 12 |
|
---|
[11] | 13 | Class RectangleF
|
---|
| 14 | Public
|
---|
| 15 | Sub RectangleF()
|
---|
| 16 | x = 0
|
---|
| 17 | y = 0
|
---|
| 18 | width = 0
|
---|
| 19 | height = 0
|
---|
| 20 | End Sub
|
---|
| 21 |
|
---|
| 22 | Sub RectangleF(x As Single, y As Single, width As Single, height As Single)
|
---|
| 23 | x = x
|
---|
| 24 | y = y
|
---|
| 25 | width = width
|
---|
| 26 | height = height
|
---|
| 27 | End Sub
|
---|
| 28 |
|
---|
| 29 | Sub RectangleF(location As PointF, size As SizeF)
|
---|
| 30 | x = location.X
|
---|
[32] | 31 | y = location.Y
|
---|
[11] | 32 | width = size.Height
|
---|
[32] | 33 | height = size.Height
|
---|
[11] | 34 | End Sub
|
---|
| 35 |
|
---|
[212] | 36 | Sub RectangleF(rc As RectangleF)
|
---|
[11] | 37 | x = rc.x
|
---|
| 38 | y = rc.y
|
---|
[32] | 39 | width = rc.width
|
---|
[11] | 40 | height = rc.height
|
---|
| 41 | End Sub
|
---|
| 42 |
|
---|
| 43 | Function Location() As PointF
|
---|
| 44 | Dim pt As PointF(x, y)
|
---|
| 45 | Return pt
|
---|
| 46 | End Function
|
---|
| 47 |
|
---|
[212] | 48 | Sub Location(point As PointF)
|
---|
[11] | 49 | x = point.X
|
---|
| 50 | y = point.Y
|
---|
| 51 | End Sub
|
---|
| 52 |
|
---|
| 53 | Function Size() As SizeF
|
---|
| 54 | Dim size As SizeF(width, height)
|
---|
| 55 | End Function
|
---|
| 56 |
|
---|
[212] | 57 | Sub Size(size As SizeF)
|
---|
[11] | 58 | width = size.Width
|
---|
| 59 | height = size.Height
|
---|
| 60 | End Sub
|
---|
| 61 |
|
---|
| 62 | Function X() As Single
|
---|
| 63 | Return x
|
---|
| 64 | End Function
|
---|
| 65 |
|
---|
| 66 | Sub X(value As Single)
|
---|
| 67 | x = value
|
---|
| 68 | End Sub
|
---|
| 69 |
|
---|
| 70 | Function Y() As Single
|
---|
| 71 | Return y
|
---|
| 72 | End Function
|
---|
| 73 |
|
---|
| 74 | Sub Y(value As Single)
|
---|
| 75 | y = value
|
---|
| 76 | End Sub
|
---|
| 77 |
|
---|
| 78 | Function Width() As Single
|
---|
| 79 | Return width
|
---|
| 80 | End Function
|
---|
| 81 |
|
---|
| 82 | Sub Width(value As Single)
|
---|
| 83 | width = value
|
---|
| 84 | End Sub
|
---|
| 85 |
|
---|
| 86 | Function Height() As Single
|
---|
| 87 | Return height
|
---|
| 88 | End Function
|
---|
| 89 |
|
---|
| 90 | Sub Height(value As Single)
|
---|
| 91 | height = value
|
---|
| 92 | End Sub
|
---|
| 93 |
|
---|
| 94 | Function Left() As Single
|
---|
| 95 | Return X
|
---|
| 96 | End Function
|
---|
| 97 |
|
---|
| 98 | Function Top() As Single
|
---|
| 99 | Return Y
|
---|
| 100 | End Function
|
---|
| 101 |
|
---|
| 102 | Function Right() As Single
|
---|
| 103 | Return X + Width
|
---|
| 104 | End Function
|
---|
| 105 |
|
---|
| 106 | Function Bottom() As Single
|
---|
| 107 | Return Y + Height
|
---|
| 108 | End Function
|
---|
| 109 |
|
---|
[104] | 110 | Function IsEmpty() As Boolean
|
---|
[32] | 111 | If Width <= 0 Or Height <= 0 Then
|
---|
| 112 | IsEmpty = _System_TRUE
|
---|
[11] | 113 | Else
|
---|
[32] | 114 | IsEmpty = _System_FALSE
|
---|
[11] | 115 | End If
|
---|
| 116 | End Function
|
---|
[241] | 117 |
|
---|
[212] | 118 | Function Operator ==(rc As RectangleF)
|
---|
[11] | 119 | Return Equals(rc)
|
---|
| 120 | End Function
|
---|
| 121 |
|
---|
[212] | 122 | Function Operator <>(rc As RectangleF)
|
---|
[11] | 123 | Return Not Equals(rc)
|
---|
| 124 | End Function
|
---|
| 125 |
|
---|
[212] | 126 | Function Equals(rc As RectangleF) As Boolean
|
---|
[11] | 127 | If X = rc.X And Y = rc.Y And Width = rc.Width And Height = rc.Height Then
|
---|
[212] | 128 | Return True
|
---|
[11] | 129 | Else
|
---|
[212] | 130 | Return False
|
---|
[11] | 131 | End If
|
---|
| 132 | End Function
|
---|
| 133 |
|
---|
[166] | 134 | Override Function GetHashCode() As Long
|
---|
| 135 | Return GetDWord(VarPtr(x)) Xor _System_BSwap(GetDWord(VarPtr(y))) Xor GetDWord(VarPtr(width)) Xor _System_BSwap(GetDWord(VarPtr(height)))
|
---|
| 136 | End Function
|
---|
| 137 |
|
---|
[11] | 138 | Static Function FromLTRB(l As Single, t As Single, r As Single, b As Single) As RectangleF
|
---|
[212] | 139 | return New RectangleF(l, t, r - l, b - t)
|
---|
[11] | 140 | End Function
|
---|
| 141 |
|
---|
[104] | 142 | Function Contains(x As Single, y As Single) As Boolean
|
---|
[11] | 143 | If x >= X And x < X + Width And y >= Y And y < Y + Height Then
|
---|
| 144 | Contains = _System_TRUE
|
---|
| 145 | Else
|
---|
| 146 | Contains = _System_FALSE
|
---|
| 147 | End If
|
---|
| 148 | End Function
|
---|
| 149 |
|
---|
[212] | 150 | Function Contains(pt As PointF) As Boolean
|
---|
| 151 | Return Contains(pt.X, pt.Y)
|
---|
[11] | 152 | End Function
|
---|
| 153 |
|
---|
[212] | 154 | Function Contains(rc As RectangleF) As Boolean
|
---|
[32] | 155 | If X <= rc.X And rc.Right <= Right And Y <= rc.Y And rc.Bottom <= Bottom Then
|
---|
[212] | 156 | Return True
|
---|
[11] | 157 | Else
|
---|
[212] | 158 | Return False
|
---|
[11] | 159 | End If
|
---|
| 160 | End Function
|
---|
| 161 |
|
---|
| 162 | Sub Inflate(dx As Single, dy As Single)
|
---|
| 163 | X -= dx
|
---|
| 164 | Y -= dy
|
---|
[32] | 165 | Width += dx + dx
|
---|
| 166 | Height += dy + dy
|
---|
[11] | 167 | End Sub
|
---|
| 168 |
|
---|
| 169 | Sub Inflate(sz As SizeF)
|
---|
| 170 | Inflate(sz.Width, sz.Height)
|
---|
| 171 | End Sub
|
---|
| 172 |
|
---|
[212] | 173 | Static Function Inflate(rc As RectangleF, x As Single, y As Single) As RectangleF
|
---|
| 174 | Inflate = New Rectangle(rc)
|
---|
[11] | 175 | Inflate.Inflate(x, y)
|
---|
| 176 | End Function
|
---|
| 177 |
|
---|
[212] | 178 | Sub Intersect(rect As RectangleF)
|
---|
[32] | 179 | This = RectangleF.Intersect(This, rect)
|
---|
| 180 | End Sub
|
---|
[241] | 181 |
|
---|
[212] | 182 | Static Function Intersect(a As RectangleF, b As RectangleF) As RectangleF
|
---|
[11] | 183 | Dim right As Single, bottom As Single, left As Single, top As Single
|
---|
| 184 | right = Math.Min(a.Right, b.Right)
|
---|
| 185 | bottom = Math.Min(a.Bottom, b.Bottom)
|
---|
| 186 | left = Math.Min(a.Left, b.Left)
|
---|
| 187 | top = Math.Min(a.Top, b.Top)
|
---|
| 188 | Return FromLTRB(left, top, right, bottom)
|
---|
| 189 | End Function
|
---|
| 190 |
|
---|
[212] | 191 | Function IntersectsWith(rc As RectangleF) As Boolean
|
---|
[11] | 192 | If Left < rc.Right And _
|
---|
| 193 | Top < rc.Bottom And _
|
---|
| 194 | Right > rc.Left And _
|
---|
| 195 | Bottom > rc.Top Then
|
---|
| 196 | IntersectsWith = _System_TRUE
|
---|
| 197 | Else
|
---|
| 198 | IntersectsWith = _System_FALSE
|
---|
| 199 | End If
|
---|
| 200 | End Function
|
---|
| 201 |
|
---|
[212] | 202 | Static Function Union(a As RectangleF, b As RectangleF) As RectangleF
|
---|
[11] | 203 | Dim right As Single, bottom As Single, left As Single, top As Single
|
---|
[32] | 204 | right = Math.Max(a.Right(), b.Right())
|
---|
| 205 | bottom = Math.Max(a.Bottom(), b.Bottom())
|
---|
| 206 | left = Math.Max(a.Left(), b.Left())
|
---|
| 207 | top = Math.Max(a.Top(), b.Top())
|
---|
[11] | 208 | Return FromLTRB(left, top, right, bottom)
|
---|
| 209 | End Function
|
---|
| 210 |
|
---|
| 211 | Sub Offset(pt As PointF)
|
---|
| 212 | Offset(pt.X, pt.Y)
|
---|
| 213 | End Sub
|
---|
| 214 |
|
---|
| 215 | Sub Offset(dx As Single, dy As Single)
|
---|
| 216 | X += dx
|
---|
| 217 | Y += dy
|
---|
| 218 | End Sub
|
---|
| 219 |
|
---|
| 220 | Public
|
---|
| 221 | x As Single
|
---|
| 222 | y As Single
|
---|
| 223 | width As Single
|
---|
| 224 | height As Single
|
---|
| 225 | End Class
|
---|
| 226 |
|
---|
[241] | 227 | End Namespace 'Drawing
|
---|
| 228 | End Namespace 'System
|
---|
| 229 |
|
---|
[11] | 230 | #endif '__SYSTEM_DRAWING_RECTFANGLE_AB__
|
---|