-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
MPointSizeRect.hpp
617 lines (485 loc) · 18.3 KB
/
MPointSizeRect.hpp
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
// MPointSizeRect.hpp -- Win32API point, size and rectangle -*- C++ -*-
// This file is part of MZC4. See file "ReadMe.txt" and "License.txt".
////////////////////////////////////////////////////////////////////////////
#ifndef MZC4_MPOINTSIZERECT_HPP_
#define MZC4_MPOINTSIZERECT_HPP_ 5 /* Version 5 */
class MPoint;
class MSize;
class MRect;
//VOID NormalizeRectDx(LPRECT prc);
////////////////////////////////////////////////////////////////////////////
#ifndef _INC_WINDOWS
#include <windows.h> // Win32API
#endif
#ifndef _INC_WINDOWSX
#include <windowsx.h> // macro API
#endif
#include <cassert> // assert
////////////////////////////////////////////////////////////////////////////
inline VOID GetScreenRectDx(LPRECT prc) noexcept
{
#ifndef SM_XVIRTUALSCREEN
#define SM_XVIRTUALSCREEN 76
#define SM_YVIRTUALSCREEN 77
#define SM_CXVIRTUALSCREEN 78
#define SM_CYVIRTUALSCREEN 79
#endif
const int x = GetSystemMetrics(SM_XVIRTUALSCREEN);
const int y = GetSystemMetrics(SM_YVIRTUALSCREEN);
int cx = GetSystemMetrics(SM_CXVIRTUALSCREEN);
int cy = GetSystemMetrics(SM_CYVIRTUALSCREEN);
if (cx)
{
SetRect(prc, x, y, x + cx, y + cy);
}
else
{
cx = GetSystemMetrics(SM_CXSCREEN);
cy = GetSystemMetrics(SM_CYSCREEN);
SetRect(prc, 0, 0, cx, cy);
}
}
////////////////////////////////////////////////////////////////////////////
class MPoint : public POINT
{
public:
MPoint() noexcept;
MPoint(int x_, int y_) noexcept;
MPoint(POINT pt) noexcept;
MPoint(SIZE siz) noexcept;
MPoint(DWORD dwPoint) noexcept;
VOID Offset(int dx, int dy) noexcept;
VOID Offset(POINT pt) noexcept;
VOID Offset(SIZE siz) noexcept;
operator LPPOINT() noexcept;
operator const POINT *() const noexcept;
BOOL operator==(POINT pt) const noexcept;
BOOL operator!=(POINT pt) const noexcept;
VOID operator+=(SIZE siz) noexcept;
VOID operator-=(SIZE siz) noexcept;
VOID operator+=(POINT pt) noexcept;
VOID operator-=(POINT pt) noexcept;
VOID SetPoint(int x_, int y_) noexcept;
MPoint operator+(SIZE siz) const noexcept;
MPoint operator-(SIZE siz) const noexcept;
MPoint operator-() const noexcept;
MPoint operator+(POINT pt) const noexcept;
MSize operator-(POINT pt) const noexcept;
MRect operator+(LPCRECT prc) const noexcept;
MRect operator-(LPCRECT prc) const noexcept;
};
////////////////////////////////////////////////////////////////////////////
class MSize : public SIZE
{
public:
MSize() noexcept;
MSize(int cx_, int cy_) noexcept;
MSize(SIZE siz) noexcept;
MSize(POINT pt) noexcept;
MSize(DWORD dwSize) noexcept;
operator LPSIZE() noexcept;
operator const SIZE *() const noexcept;
BOOL operator==(SIZE siz) const noexcept;
BOOL operator!=(SIZE siz) const noexcept;
VOID operator+=(SIZE siz) noexcept;
VOID operator-=(SIZE siz) noexcept;
VOID SetSize(int cx_, int cy_) noexcept;
MSize operator+(SIZE siz) const noexcept;
MSize operator-(SIZE siz) const noexcept;
MSize operator-() const noexcept;
MPoint operator+(POINT pt) const noexcept;
MPoint operator-(POINT pt) const noexcept;
MRect operator+(LPCRECT prc) const noexcept;
MRect operator-(LPCRECT prc) const noexcept;
};
////////////////////////////////////////////////////////////////////////////
class MRect : public RECT
{
public:
MRect() noexcept;
MRect(int l, int t, int r, int b) noexcept;
MRect(const RECT& rcSrc) noexcept;
MRect(LPCRECT lpSrcRect) noexcept;
MRect(POINT pt, SIZE siz) noexcept;
MRect(POINT topLeft, POINT bottomRight) noexcept;
operator LPRECT() noexcept;
operator LPCRECT() const noexcept;
int Width() const noexcept;
int Height() const noexcept;
MSize Size() const noexcept;
MPoint& TopLeft() noexcept;
const MPoint& TopLeft() const noexcept;
MPoint& BottomRight() noexcept;
const MPoint& BottomRight() const noexcept;
MPoint CenterPoint() const noexcept;
BOOL IsRectEmpty() const noexcept;
BOOL IsRectNull() const noexcept;
BOOL PtInRect(POINT pt) const noexcept;
VOID SetRect(int x1, int y1, int x2, int y2) noexcept;
VOID SetRect(POINT topLeft, POINT bottomRight) noexcept;
VOID SetRectEmpty() noexcept;
VOID CopyRect(LPCRECT lpSrcRect) noexcept;
BOOL EqualRect(LPCRECT prc) const noexcept;
VOID InflateRect(int x, int y) noexcept;
VOID InflateRect(SIZE siz) noexcept;
VOID InflateRect(LPCRECT prc) noexcept;
VOID InflateRect(int l, int t, int r, int b) noexcept;
VOID DeflateRect(int x, int y) noexcept;
VOID DeflateRect(SIZE siz) noexcept;
VOID DeflateRect(LPCRECT prc) noexcept;
VOID DeflateRect(int l, int t, int r, int b) noexcept;
VOID OffsetRect(int x, int y) noexcept;
VOID OffsetRect(SIZE siz) noexcept;
VOID OffsetRect(POINT pt) noexcept;
VOID NormalizeRect() noexcept;
VOID MoveToX(int x) noexcept;
VOID MoveToY(int y) noexcept;
VOID MoveToXY(int x, int y) noexcept;
VOID MoveToXY(POINT pt) noexcept;
BOOL IntersectRect(LPCRECT prc1, LPCRECT prc2) noexcept;
BOOL UnionRect(LPCRECT prc1, LPCRECT prc2) noexcept;
BOOL SubtractRect(LPCRECT prcSrc1, LPCRECT prcSrc2) noexcept;
BOOL operator==(const RECT& rc) const noexcept;
BOOL operator!=(const RECT& rc) const noexcept;
VOID operator+=(POINT pt) noexcept;
VOID operator+=(SIZE siz) noexcept;
VOID operator+=(LPCRECT prc) noexcept;
VOID operator-=(POINT pt) noexcept;
VOID operator-=(SIZE siz) noexcept;
VOID operator-=(LPCRECT prc) noexcept;
VOID operator&=(const RECT& rc) noexcept;
VOID operator|=(const RECT& rc) noexcept;
MRect operator+(POINT pt) const noexcept;
MRect operator-(POINT pt) const noexcept;
MRect operator+(LPCRECT prc) const noexcept;
MRect operator+(SIZE siz) const noexcept;
MRect operator-(SIZE siz) const noexcept;
MRect operator-(LPCRECT prc) const noexcept;
MRect operator&(const RECT& rc2) const noexcept;
MRect operator|(const RECT& rc2) const noexcept;
MRect MulDiv(int nMultiplier, int nDivisor) const noexcept;
};
VOID NormalizeRectDx(LPRECT prc) noexcept;
////////////////////////////////////////////////////////////////////////////
inline MPoint::MPoint() noexcept
{ x = y = 0; }
inline MPoint::MPoint(int x_, int y_) noexcept
{ x = x_; y = y_; }
inline MPoint::MPoint(POINT pt) noexcept
{ reinterpret_cast<POINT&>(*this) = pt; }
inline MPoint::MPoint(SIZE siz) noexcept
{ reinterpret_cast<SIZE&>(*this) = siz; }
inline MPoint::MPoint(DWORD dwPoint) noexcept
{ x = GET_X_LPARAM(dwPoint); y = GET_Y_LPARAM(dwPoint); }
inline VOID MPoint::Offset(int dx, int dy) noexcept
{ x += dx; y += dy; }
inline VOID MPoint::Offset(POINT pt) noexcept
{ x += pt.x; y += pt.y; }
inline VOID MPoint::Offset(SIZE siz) noexcept
{ x += siz.cx; y += siz.cy; }
inline MPoint::operator LPPOINT() noexcept
{ return this; }
inline MPoint::operator const POINT *() const noexcept
{ return this; }
inline BOOL MPoint::operator==(POINT pt) const noexcept
{ return (x == pt.x && y == pt.y); }
inline BOOL MPoint::operator!=(POINT pt) const noexcept
{ return (x != pt.x || y != pt.y); }
inline VOID MPoint::operator+=(SIZE siz) noexcept
{ x += siz.cx; y += siz.cy; }
inline VOID MPoint::operator-=(SIZE siz) noexcept
{ x -= siz.cx; y -= siz.cy; }
inline VOID MPoint::operator+=(POINT pt) noexcept
{ x += pt.x; y += pt.y; }
inline VOID MPoint::operator-=(POINT pt) noexcept
{ x -= pt.x; y -= pt.y; }
inline VOID MPoint::SetPoint(int x_, int y_) noexcept
{ x = x_; y = y_; }
inline MPoint MPoint::operator+(SIZE siz) const noexcept
{ return MPoint(x + siz.cx, y + siz.cy); }
inline MPoint MPoint::operator-(SIZE siz) const noexcept
{ return MPoint(x - siz.cx, y - siz.cy); }
inline MPoint MPoint::operator-() const noexcept
{ return MPoint(-x, -y); }
inline MPoint MPoint::operator+(POINT pt) const noexcept
{ return MPoint(x + pt.x, y + pt.y); }
inline MSize MPoint::operator-(POINT pt) const noexcept
{ return MSize(x - pt.x, y - pt.y); }
inline MRect MPoint::operator+(LPCRECT prc) const noexcept
{ return MRect(prc) + *this; }
inline MRect MPoint::operator-(LPCRECT prc) const noexcept
{ return MRect(prc) - *this; }
////////////////////////////////////////////////////////////////////////////
inline MSize::MSize() noexcept
{ cx = cy = 0; }
inline MSize::MSize(int cx_, int cy_) noexcept
{ cx = cx_; cy = cy_; }
inline MSize::MSize(SIZE siz) noexcept
{ reinterpret_cast<SIZE&>(*this) = siz; }
inline MSize::MSize(POINT pt) noexcept
{ reinterpret_cast<POINT&>(*this) = pt; }
inline MSize::MSize(DWORD dwSize) noexcept
{ cx = GET_X_LPARAM(dwSize); cy = GET_Y_LPARAM(dwSize); }
inline MSize::operator LPSIZE() noexcept
{ return this; }
inline MSize::operator const SIZE *() const noexcept
{ return this; }
inline BOOL MSize::operator==(SIZE siz) const noexcept
{ return (cx == siz.cx && cy == siz.cy); }
inline BOOL MSize::operator!=(SIZE siz) const noexcept
{ return (cx != siz.cx || cy != siz.cy); }
inline VOID MSize::operator+=(SIZE siz) noexcept
{ cx += siz.cx; cy += siz.cy; }
inline VOID MSize::operator-=(SIZE siz) noexcept
{ cx -= siz.cx; cy -= siz.cy; }
inline VOID MSize::SetSize(int cx_, int cy_) noexcept
{ cx = cx_; cy = cy_; }
inline MSize MSize::operator+(SIZE siz) const noexcept
{ return MSize(cx + siz.cx, cy + siz.cy); }
inline MSize MSize::operator-(SIZE siz) const noexcept
{ return MSize(cx - siz.cx, cy - siz.cy); }
inline MSize MSize::operator-() const noexcept
{ return MSize(-cx, -cy); }
inline MPoint MSize::operator+(POINT pt) const noexcept
{ return MPoint(cx + pt.x, cy + pt.y); }
inline MPoint MSize::operator-(POINT pt) const noexcept
{ return MPoint(cx - pt.x, cy - pt.y); }
inline MRect MSize::operator+(LPCRECT prc) const noexcept
{ return MRect(prc) + *this; }
inline MRect MSize::operator-(LPCRECT prc) const noexcept
{ return MRect(prc) - *this; }
template <class Number>
inline MSize operator*(SIZE s, Number n) noexcept
{ return MSize((int)(s.cx * n), (int)(s.cy * n)); }
template <class Number>
inline VOID operator*=(SIZE & s, Number n) noexcept
{ s = s * n; }
template <class Number>
inline MSize operator/(SIZE s, Number n) noexcept
{ return MSize((int)(s.cx / n), (int)(s.cy / n)); }
template <class Number>
inline VOID operator/=(SIZE & s, Number n) noexcept
{ s = s / n; }
////////////////////////////////////////////////////////////////////////////
inline MRect::MRect() noexcept
{ left = top = right = bottom = 0; }
inline MRect::MRect(int l, int t, int r, int b) noexcept
{ left = l; top = t; right = r; bottom = b; }
inline MRect::MRect(const RECT& rcSrc) noexcept
{ ::CopyRect(this, &rcSrc); }
inline MRect::MRect(LPCRECT lpSrcRect) noexcept
{ ::CopyRect(this, lpSrcRect); }
inline MRect::MRect(POINT pt, SIZE siz) noexcept
{
right = (left = pt.x) + siz.cx;
bottom = (top = pt.y) + siz.cy;
}
inline MRect::MRect(POINT topLeft, POINT bottomRight) noexcept
{
left = topLeft.x;
top = topLeft.y;
right = bottomRight.x;
bottom = bottomRight.y;
}
inline VOID MRect::InflateRect(LPCRECT prc) noexcept
{
left -= prc->left;
top -= prc->top;
right += prc->right;
bottom += prc->bottom;
}
inline VOID MRect::InflateRect(int l, int t, int r, int b) noexcept
{
left -= l;
top -= t;
right += r;
bottom += b;
}
inline VOID MRect::DeflateRect(LPCRECT prc) noexcept
{
left += prc->left;
top += prc->top;
right -= prc->right;
bottom -= prc->bottom;
}
inline VOID MRect::DeflateRect(int l, int t, int r, int b) noexcept
{
left += l;
top += t;
right -= r;
bottom -= b;
}
inline VOID MRect::NormalizeRect() noexcept
{
if (left > right)
{
const int nTemp = left;
left = right;
right = nTemp;
}
if (top > bottom)
{
const int nTemp = top;
top = bottom;
bottom = nTemp;
}
}
inline MRect MRect::operator+(POINT pt) const noexcept
{
MRect rc(*this);
::OffsetRect(&rc, pt.x, pt.y);
return rc;
}
inline MRect MRect::operator-(POINT pt) const noexcept
{
MRect rc(*this);
::OffsetRect(&rc, -pt.x, -pt.y);
return rc;
}
inline MRect MRect::operator+(LPCRECT prc) const noexcept
{
MRect rc(this);
rc.InflateRect(prc);
return rc;
}
inline MRect MRect::operator+(SIZE siz) const noexcept
{
MRect rc(*this);
::OffsetRect(&rc, siz.cx, siz.cy);
return rc;
}
inline MRect MRect::operator-(SIZE siz) const noexcept
{
MRect rc(*this);
::OffsetRect(&rc, -siz.cx, -siz.cy);
return rc;
}
inline MRect MRect::operator-(LPCRECT prc) const noexcept
{
MRect rc(this);
rc.DeflateRect(prc);
return rc;
}
inline MRect MRect::operator&(const RECT& rc2) const noexcept
{
MRect rc;
::IntersectRect(&rc, this, &rc2);
return rc;
}
inline MRect MRect::operator|(const RECT& rc2) const noexcept
{
MRect rc;
::UnionRect(&rc, this, &rc2);
return rc;
}
inline MRect MRect::MulDiv(int nMultiplier, int nDivisor) const noexcept
{
return MRect(
::MulDiv(left, nMultiplier, nDivisor),
::MulDiv(top, nMultiplier, nDivisor),
::MulDiv(right, nMultiplier, nDivisor),
::MulDiv(bottom, nMultiplier, nDivisor));
}
inline int MRect::Width() const noexcept
{ return right - left; }
inline int MRect::Height() const noexcept
{ return bottom - top; }
inline MSize MRect::Size() const noexcept
{ return MSize(right - left, bottom - top); }
inline MPoint& MRect::TopLeft() noexcept
{ return *(reinterpret_cast<MPoint*>(this)); }
inline MPoint& MRect::BottomRight() noexcept
{ return *(reinterpret_cast<MPoint*>(this) + 1); }
inline const MPoint& MRect::TopLeft() const noexcept
{ return *(reinterpret_cast<const MPoint*>(this)); }
inline const MPoint& MRect::BottomRight() const noexcept
{ return *(reinterpret_cast<const MPoint*>(this) + 1); }
inline MPoint MRect::CenterPoint() const noexcept
{ return MPoint((left + right) / 2, (top + bottom) / 2); }
inline MRect::operator LPRECT() noexcept
{ return this; }
inline MRect::operator LPCRECT() const noexcept
{ return this; }
inline BOOL MRect::IsRectEmpty() const noexcept
{ return ::IsRectEmpty(this); }
inline BOOL MRect::IsRectNull() const noexcept
{ return (left == 0 && right == 0 && top == 0 && bottom == 0); }
inline BOOL MRect::PtInRect(POINT pt) const noexcept
{ return ::PtInRect(this, pt); }
inline VOID MRect::SetRect(int x1, int y1, int x2, int y2) noexcept
{ ::SetRect(this, x1, y1, x2, y2); }
inline VOID MRect::SetRect(POINT topLeft, POINT bottomRight) noexcept
{
::SetRect(this, topLeft.x, topLeft.y, bottomRight.x, bottomRight.y);
}
inline VOID MRect::SetRectEmpty() noexcept
{ ::SetRectEmpty(this); }
inline VOID MRect::CopyRect(LPCRECT lpSrcRect) noexcept
{ ::CopyRect(this, lpSrcRect); }
inline BOOL MRect::EqualRect(LPCRECT prc) const noexcept
{ return ::EqualRect(this, prc); }
inline VOID MRect::InflateRect(int x, int y) noexcept
{ ::InflateRect(this, x, y); }
inline VOID MRect::InflateRect(SIZE siz) noexcept
{ ::InflateRect(this, siz.cx, siz.cy); }
inline VOID MRect::DeflateRect(int x, int y) noexcept
{ ::InflateRect(this, -x, -y); }
inline VOID MRect::DeflateRect(SIZE siz) noexcept
{ ::InflateRect(this, -siz.cx, -siz.cy); }
inline VOID MRect::OffsetRect(int x, int y) noexcept
{ ::OffsetRect(this, x, y); }
inline VOID MRect::OffsetRect(SIZE siz) noexcept
{ ::OffsetRect(this, siz.cx, siz.cy); }
inline VOID MRect::OffsetRect(POINT pt) noexcept
{ ::OffsetRect(this, pt.x, pt.y); }
inline VOID MRect::MoveToX(int x) noexcept
{ right = Width() + x; left = x; }
inline VOID MRect::MoveToY(int y) noexcept
{ bottom = Height() + y; top = y; }
inline VOID MRect::MoveToXY(int x, int y) noexcept
{ MoveToX(x); MoveToY(y); }
inline VOID MRect::MoveToXY(POINT pt) noexcept
{ MoveToX(pt.x); MoveToY(pt.y); }
inline BOOL MRect::IntersectRect(LPCRECT prc1, LPCRECT prc2) noexcept
{ return ::IntersectRect(this, prc1, prc2); }
inline BOOL MRect::UnionRect(LPCRECT prc1, LPCRECT prc2) noexcept
{ return ::UnionRect(this, prc1, prc2); }
inline BOOL MRect::SubtractRect(LPCRECT prcSrc1, LPCRECT prcSrc2) noexcept
{ return ::SubtractRect(this, prcSrc1, prcSrc2); }
inline BOOL MRect::operator==(const RECT& rc) const noexcept
{ return ::EqualRect(this, &rc); }
inline BOOL MRect::operator!=(const RECT& rc) const noexcept
{ return !::EqualRect(this, &rc); }
inline VOID MRect::operator+=(POINT pt) noexcept
{ ::OffsetRect(this, pt.x, pt.y); }
inline VOID MRect::operator+=(SIZE siz) noexcept
{ ::OffsetRect(this, siz.cx, siz.cy); }
inline VOID MRect::operator+=(LPCRECT prc) noexcept
{ InflateRect(prc); }
inline VOID MRect::operator-=(POINT pt) noexcept
{ ::OffsetRect(this, -pt.x, -pt.y); }
inline VOID MRect::operator-=(SIZE siz) noexcept
{ ::OffsetRect(this, -siz.cx, -siz.cy); }
inline VOID MRect::operator-=(LPCRECT prc) noexcept
{ DeflateRect(prc); }
inline VOID MRect::operator&=(const RECT& rc) noexcept
{ ::IntersectRect(this, this, &rc); }
inline VOID MRect::operator|=(const RECT& rc) noexcept
{ ::UnionRect(this, this, &rc); }
inline VOID NormalizeRectDx(LPRECT prc) noexcept
{
if (prc->left > prc->right)
{
const int nTemp = prc->left;
prc->left = prc->right;
prc->right = nTemp;
}
if (prc->top > prc->bottom)
{
const int nTemp = prc->top;
prc->top = prc->bottom;
prc->bottom = nTemp;
}
}
////////////////////////////////////////////////////////////////////////////
#endif // ndef MZC4_MPOINTSIZERECT_HPP_