LibreOffice Module embedserv (master) 1
tracker.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <sal/config.h>
21
22#include <algorithm>
23
24#include <sal/types.h>
25#include <sal/log.hxx>
26
27#include <stdafx.h>
28#include <stddef.h>
29#include <syswinwrapper.hxx>
30
31// windowserrorstring.hxx includes postwin.h, which #undef OPAQUE, so "#redef" it
33#ifdef OPAQUE
34#error OPAQUE should not be defined!?
35#endif
36#define OPAQUE 2
37
38static HCURSOR afxCursors[10] = { nullptr, };
39static HBRUSH afxHalftoneBrush = nullptr;
40
41namespace {
42
43// the struct below is used to determine the qualities of a particular handle
44struct AFX_HANDLEINFO
45{
46 size_t nOffsetX; // offset within RECT for X coordinate
47 size_t nOffsetY; // offset within RECT for Y coordinate
48 int nCenterX; // adjust X by Width()/2 * this number
49 int nCenterY; // adjust Y by Height()/2 * this number
50 int nHandleX; // adjust X by handle size * this number
51 int nHandleY; // adjust Y by handle size * this number
52 int nInvertX; // handle converts to this when X inverted
53 int nInvertY; // handle converts to this when Y inverted
54};
55
56}
57
58// this array describes all 8 handles (clock-wise)
59const AFX_HANDLEINFO afxHandleInfo[] =
60{
61 // corner handles (top-left, top-right, bottom-right, bottom-left
62 { offsetof(RECT, left), offsetof(RECT, top), 0, 0, 0, 0, 1, 3 },
63 { offsetof(RECT, right), offsetof(RECT, top), 0, 0, -1, 0, 0, 2 },
64 { offsetof(RECT, right), offsetof(RECT, bottom), 0, 0, -1, -1, 3, 1 },
65 { offsetof(RECT, left), offsetof(RECT, bottom), 0, 0, 0, -1, 2, 0 },
66
67 // side handles (top, right, bottom, left)
68 { offsetof(RECT, left), offsetof(RECT, top), 1, 0, 0, 0, 4, 6 },
69 { offsetof(RECT, right), offsetof(RECT, top), 0, 1, -1, 0, 7, 5 },
70 { offsetof(RECT, left), offsetof(RECT, bottom), 1, 0, 0, -1, 6, 4 },
71 { offsetof(RECT, left), offsetof(RECT, top), 0, 1, 0, 0, 5, 7 }
72};
73
74namespace {
75
76// the struct below gives us information on the layout of a RECT struct and
77// the relationship between its members
78struct AFX_RECTINFO
79{
80 size_t nOffsetAcross; // offset of opposite point (ie. left->right)
81 int nSignAcross; // sign relative to that point (ie. add/subtract)
82};
83
84}
85
86// this array is indexed by the offset of the RECT member / sizeof(int)
87const AFX_RECTINFO afxRectInfo[] =
88{
89 { offsetof(RECT, right), +1 },
90 { offsetof(RECT, bottom), +1 },
91 { offsetof(RECT, left), -1 },
92 { offsetof(RECT, top), -1 },
93};
94
95
96static HBRUSH HalftoneBrush()
97{
98 if (afxHalftoneBrush == nullptr)
99 {
100 WORD grayPattern[8];
101 for (int i = 0; i < 8; i++)
102 grayPattern[i] = static_cast<WORD>(0x5555 << (i & 1));
103 HBITMAP grayBitmap = CreateBitmap(8, 8, 1, 1, &grayPattern);
104 if (grayBitmap != nullptr)
105 {
106 afxHalftoneBrush = CreatePatternBrush(grayBitmap);
107 DeleteObject(grayBitmap);
108 }
109 }
110 return afxHalftoneBrush;
111}
112
113
114static void DrawDragRect(
115 HDC hDC,LPRECT lpRect,SIZE size,
116 LPRECT lpRectLast,SIZE sizeLast,
117 HBRUSH hBrush = nullptr,HBRUSH hBrushLast = nullptr)
118{
119 // first, determine the update region and select it
120 HRGN rgnNew;
121 HRGN rgnOutside,rgnInside;
122 rgnOutside = CreateRectRgnIndirect(lpRect);
123 RECT rect = *lpRect;
124 InflateRect(&rect,-size.cx, -size.cy);
125 IntersectRect(&rect,&rect,lpRect);
126 rgnInside = CreateRectRgnIndirect(&rect);
127 rgnNew = CreateRectRgn(0, 0, 0, 0);
128 CombineRgn(rgnNew,rgnOutside,rgnInside,RGN_XOR);
129
130 HBRUSH hBrushOld = nullptr;
131 if (hBrush == nullptr)
132 hBrush = HalftoneBrush();
133 if (hBrushLast == nullptr)
134 hBrushLast = hBrush;
135
136 HRGN rgnLast(nullptr);
137 HRGN rgnUpdate(nullptr);
138 if (lpRectLast != nullptr)
139 {
140 // find difference between new region and old region
141 rgnLast = CreateRectRgn(0, 0, 0, 0);
142 SetRectRgn(
143 rgnOutside,
144 lpRectLast->left,
145 lpRectLast->top,
146 lpRectLast->right,
147 lpRectLast->bottom);
148 rect = *lpRectLast;
149 InflateRect(&rect,-sizeLast.cx, -sizeLast.cy);
150 IntersectRect(&rect,&rect, lpRectLast);
151 SetRectRgn(rgnInside,rect.left,rect.top,rect.right,rect.bottom);
152 CombineRgn(rgnLast,rgnOutside,rgnInside, RGN_XOR);
153
154// // only diff them if brushes are the same
155 if (hBrush == hBrushLast)
156 {
157 rgnUpdate = CreateRectRgn(0, 0, 0, 0);
158 CombineRgn(rgnUpdate,rgnLast,rgnNew, RGN_XOR);
159 }
160 }
161 if (hBrush != hBrushLast && lpRectLast != nullptr)
162 {
163 // brushes are different -- erase old region first
164 SelectClipRgn(hDC,rgnLast);
165 GetClipBox(hDC,&rect);
166 hBrushOld = static_cast<HBRUSH>(SelectObject(hDC,static_cast<HGDIOBJ>(hBrushLast)));
167 PatBlt(hDC,rect.left,rect.top,(rect.right-rect.left),(rect.bottom-rect.top),PATINVERT);
168
169 SelectObject(hDC,static_cast<HGDIOBJ>(hBrushOld));
170 hBrushOld = nullptr;
171 }
172
173 // draw into the update/new region
174 SelectClipRgn(hDC,rgnUpdate);
175
176 GetClipBox(hDC,&rect);
177 hBrushOld = static_cast<HBRUSH>(SelectObject(hDC, static_cast<HGDIOBJ>(hBrush)));
178 PatBlt(hDC,rect.left, rect.top,(rect.right-rect.left),(rect.bottom-rect.top), PATINVERT);
179
180 // cleanup DC
181 if (hBrushOld != nullptr)
182 SelectObject(hDC, static_cast<HGDIOBJ>(hBrushOld));
183 SelectClipRgn(hDC,nullptr);
184}
185
186
187void winwrap::TransformRect(LPRECT rect,HWND pWnd,HWND pWndClipTo)
188{
189 POINT pt;
190 pt.x = rect->left;pt.y = rect->top;
191 ClientToScreen(pWnd,&pt);
192 ScreenToClient(pWndClipTo,&pt);
193 rect->left = pt.x; rect->top = pt.y;
194
195 pt.x = rect->right;pt.y = rect->bottom;
196 ClientToScreen(pWnd,&pt);
197 ScreenToClient(pWndClipTo,&pt);
198 rect->right = pt.x; rect->bottom = pt.y;
199}
200
201
202static void NormalizeRect(LPRECT rp)
203{
204 if(rp->left > rp->right) {
205 UINT tmp = rp->left;
206 rp->left = rp->right;
207 rp->right = tmp;
208 }
209
210 if(rp->top > rp->bottom) {
211 UINT tmp = rp->top;
212 rp->top = rp->bottom;
213 rp->bottom = tmp;
214 }
215}
216
217
218using namespace winwrap;
219
220
221Tracker::Tracker()
222{
223}
224
225
226Tracker::Tracker(LPCRECT lpSrcRect, UINT nStyle)
227{
228 Construct();
229 CopyRect(&m_rect,lpSrcRect);
230 m_nStyle = nStyle;
231}
232
233static HBRUSH afxHatchBrush = nullptr;
234static HPEN afxBlackDottedPen = nullptr;
235static int afxHandleSize = 0;
236
237
239{
240 static bool bInitialized = false;
241 if (!bInitialized)
242 {
243 if (afxHatchBrush == nullptr)
244 {
245 // create the hatch pattern + bitmap
246 WORD hatchPattern[8];
247 WORD wPattern = 0x1111;
248 for (int i = 0; i < 4; i++)
249 {
250 hatchPattern[i] = wPattern;
251 hatchPattern[i+4] = wPattern;
252 wPattern <<= 1;
253 }
254 HBITMAP hatchBitmap = CreateBitmap(8, 8, 1, 1,&hatchPattern);
255
256 // create black hatched brush
257 afxHatchBrush = CreatePatternBrush(hatchBitmap);
258 DeleteObject(hatchBitmap);
259 }
260
261 if (afxBlackDottedPen == nullptr)
262 {
263 // create black dotted pen
264 afxBlackDottedPen = CreatePen(PS_DOT, 0, RGB(0, 0, 0));
265 }
266
267 // get default handle size from Windows profile setting
268 static const WCHAR szWindows[] = L"windows";
269 static const WCHAR szInplaceBorderWidth[] = L"oleinplaceborderwidth";
270 afxHandleSize = GetProfileIntW(szWindows, szInplaceBorderWidth, 4);
271 bInitialized = true;
272
273 afxCursors[0] = afxCursors[2] = LoadCursor(nullptr,IDC_SIZENWSE);
274 afxCursors[4] = afxCursors[6] = LoadCursor(nullptr,IDC_SIZENS);
275 afxCursors[1] = afxCursors[3] = LoadCursor(nullptr,IDC_SIZENESW);
276 afxCursors[5] = afxCursors[7] = LoadCursor(nullptr,IDC_SIZEWE);
277 afxCursors[8] = LoadCursor(nullptr,IDC_SIZEALL);
278 }
279
280 m_nStyle = 0;
283
284 SetRectEmpty(&m_rectLast);
285 m_sizeLast.cx = m_sizeLast.cy = 0;
286 m_bErase = FALSE;
288}
289
291{
292}
293
294
295int Tracker::HitTest(POINT point) const
296{
297 TrackerHit hitResult = hitNothing;
298
299 RECT rectTrue;
300 GetTrueRect(&rectTrue);
301 NormalizeRect(&rectTrue);
302 if (PtInRect(&rectTrue,point))
303 {
304 if ((m_nStyle & (resizeInside|resizeOutside)) != 0)
305 hitResult = static_cast<TrackerHit>(HitTestHandles(point));
306 else
307 hitResult = hitMiddle;
308 }
309 return hitResult;
310}
311
312
313BOOL Tracker::SetCursor(HWND pWnd, UINT nHitTest) const
314{
315 // trackers should only be in client area
316 if (nHitTest != HTCLIENT)
317 return FALSE;
318
319 // convert cursor position to client co-ordinates
320 POINT point;
321 GetCursorPos(&point);
322 ScreenToClient(pWnd,&point);
323
324 // do hittest and normalize hit
326 if (nHandle < 0)
327 return FALSE;
328
329 // need to normalize the hittest such that we get proper cursors
331
332 // handle special case of hitting area between handles
333 // (logically the same -- handled as a move -- but different cursor)
334 if (nHandle == hitMiddle && !PtInRect(&m_rect,point))
335 {
336 // only for trackers with hatchedBorder (ie. in-place resizing)
338 nHandle = TrackerHit(9);
339 }
340
342 return TRUE;
343}
344
345
346BOOL Tracker::Track(HWND hWnd,POINT point,BOOL bAllowInvert,
347 HWND hWndClipTo)
348{
349 // perform hit testing on the handles
351 if (nHandle < 0)
352 {
353 // didn't hit a handle, so just return FALSE
354 return FALSE;
355 }
356
357 // otherwise, call helper function to do the tracking
358 m_bAllowInvert = bAllowInvert;
359 SetCursor(hWnd,nHandle);
360 return TrackHandle(nHandle, hWnd, point, hWndClipTo);
361}
362
363
364BOOL Tracker::TrackHandle(int nHandle,HWND hWnd,POINT point,HWND hWndClipTo)
365{
366 // don't handle if capture already set
367 if (GetCapture() != nullptr)
368 return FALSE;
369
370 // save original width & height in pixels
371 int nWidth = m_rect.right - m_rect.left;
372 int nHeight = m_rect.bottom - m_rect.top;
373
374 // set capture to the window which received this message
375 SetCapture(hWnd);
376 UpdateWindow(hWnd);
377 if (hWndClipTo != nullptr)
378 UpdateWindow(hWndClipTo);
379 RECT rectSave = m_rect;
380
381 // find out what x/y coords we are supposed to modify
382 int *px, *py;
383 int xDiff, yDiff;
384 GetModifyPointers(nHandle, &px, &py, &xDiff, &yDiff);
385 xDiff = point.x - xDiff;
386 yDiff = point.y - yDiff;
387
388 // get DC for drawing
389 HDC hDrawDC;
390 if (hWndClipTo != nullptr)
391 {
392 // clip to arbitrary window by using adjusted Window DC
393 hDrawDC = GetDCEx(hWndClipTo,nullptr, DCX_CACHE);
394 }
395 else
396 {
397 // otherwise, just use normal DC
398 hDrawDC = GetDC(hWnd);
399 }
400
401 RECT rectOld;
402 bool bMoved = false;
403
404 // get messages until capture lost or cancelled/accepted
405 for (;;)
406 {
407 MSG msg;
408 int const bRet = GetMessageW(&msg, nullptr, 0, 0);
409 SAL_WARN_IF(-1 == bRet, "embedserv", "GetMessageW failed: " << WindowsErrorString(GetLastError()));
410 if (-1 == bRet || 0 == bRet)
411 break;
412
413 if (GetCapture() != hWnd)
414 break;
415
416 switch (msg.message)
417 {
418 // handle movement/accept messages
419 case WM_LBUTTONUP:
420 case WM_MOUSEMOVE:
421 rectOld = m_rect;
422 // handle resize cases (and part of move)
423 if (px != nullptr)
424 *px = static_cast<int>(static_cast<short>(LOWORD(msg.lParam))) - xDiff;
425 if (py != nullptr)
426 *py = static_cast<int>(static_cast<short>(HIWORD(msg.lParam))) - yDiff;
427
428 // handle move case
429 if (nHandle == hitMiddle)
430 {
431 m_rect.right = m_rect.left + nWidth;
432 m_rect.bottom = m_rect.top + nHeight;
433 }
434 // allow caller to adjust the rectangle if necessary
436
437 // only redraw and callback if the rect actually changed!
438 m_bFinalErase = (msg.message == WM_LBUTTONUP);
439 if (!EqualRect(&rectOld,&m_rect) || m_bFinalErase)
440 {
441 if (bMoved)
442 {
443 m_bErase = TRUE;
444 DrawTrackerRect(&rectOld,hWndClipTo,hDrawDC,hWnd);
445 }
446 OnChangedRect(rectOld);
447 if (msg.message != WM_LBUTTONUP)
448 bMoved = true;
449 }
450 if (m_bFinalErase)
451 goto ExitLoop;
452
453 if (!EqualRect(&rectOld,&m_rect))
454 {
455 m_bErase = FALSE;
456 DrawTrackerRect(&m_rect,hWndClipTo,hDrawDC,hWnd);
457 }
458 break;
459
460 // handle cancel messages
461 case WM_KEYDOWN:
462 if (msg.wParam != VK_ESCAPE)
463 break;
464 [[fallthrough]];
465 case WM_RBUTTONDOWN:
466 if (bMoved)
467 {
469 DrawTrackerRect(&m_rect, hWndClipTo, hDrawDC, hWnd);
470 }
471 m_rect = rectSave;
472 goto ExitLoop;
473
474 // just dispatch rest of the messages
475 default:
476 DispatchMessageW(&msg);
477 break;
478 }
479 }
480
481 ExitLoop:
482 if (hWndClipTo != nullptr)
483 ReleaseDC(hWndClipTo,hDrawDC);
484 else
485 ReleaseDC(hWnd,hDrawDC);
486 ReleaseCapture();
487
488 // restore rect in case bMoved is still FALSE
489 if (!bMoved)
490 m_rect = rectSave;
492 m_bErase = FALSE;
493
494 // return TRUE only if rect has changed
495 return !EqualRect(&rectSave,&m_rect);
496}
497
498
499void Tracker::OnChangedRect(const RECT& /*rectOld*/)
500{
501}
502
503
504void Tracker::AdjustRect(int nHandle, LPRECT)
505{
506 if(nHandle == hitMiddle)
507 return;
508
509 // convert the handle into locations within m_rect
510 int *px, *py;
511 GetModifyPointers(nHandle, &px, &py, nullptr, nullptr);
512
513 // enforce minimum width
514 int nNewWidth = m_rect.right - m_rect.left;
515 int nAbsWidth = m_bAllowInvert ? abs(nNewWidth) : nNewWidth;
516 if (px != nullptr && nAbsWidth < m_sizeMin.cx)
517 {
518 nNewWidth = nAbsWidth != 0 ? nNewWidth / nAbsWidth : 1;
519 const AFX_RECTINFO* pRectInfo =
520 &afxRectInfo[px - reinterpret_cast<int*>(&m_rect)];
521 *px = *reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&m_rect) + pRectInfo->nOffsetAcross) +
522 nNewWidth * m_sizeMin.cx * -pRectInfo->nSignAcross;
523 }
524
525 // enforce minimum height
526 int nNewHeight = m_rect.bottom - m_rect.top;
527 int nAbsHeight = m_bAllowInvert ? abs(nNewHeight) : nNewHeight;
528 if (py != nullptr && nAbsHeight < m_sizeMin.cy)
529 {
530 nNewHeight = nAbsHeight != 0 ? nNewHeight / nAbsHeight : 1;
531 const AFX_RECTINFO* pRectInfo =
532 &afxRectInfo[py - reinterpret_cast<int*>(&m_rect)];
533 *py = *reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&m_rect) + pRectInfo->nOffsetAcross) +
534 nNewHeight * m_sizeMin.cy * -pRectInfo->nSignAcross;
535 }
536}
537
538
540 LPRECT lpRect,HWND pWndClipTo,HDC pDC,HWND pWnd)
541{
542 // first, normalize the rectangle for drawing
543 RECT rect = *lpRect;
544 NormalizeRect(&rect);
545
546 // convert to client coordinates
547 if (pWndClipTo != nullptr)
548 TransformRect(&rect,pWnd,pWndClipTo);
549
550 SIZE size;
551 size.cx = 0; size.cy = 0;
552 if (!m_bFinalErase)
553 {
554 // otherwise, size depends on the style
556 {
557 size.cx = size.cy = std::max(1,GetHandleSize(&rect)-1);
558 InflateRect(&rect,size.cx,size.cy);
559 }
560 else
561 {
562 size.cx = 1; // CX_BORDER;
563 size.cy = 1; // CY_BORDER;
564 }
565 }
566
567 // and draw it
568 if (m_bFinalErase || !m_bErase)
570
571 // remember last rectangles
572 m_rectLast = rect;
574}
575
576
577void Tracker::Draw(HDC hDC) const
578{
579 // set initial DC state
580 SetMapMode(hDC,MM_TEXT);
581 SetViewportOrgEx(hDC,0, 0,nullptr);
582 SetWindowOrgEx(hDC,0, 0,nullptr);
583
584 // get normalized rectangle
585 RECT rect = m_rect;
586 NormalizeRect(&rect);
587
588 HPEN pOldPen = nullptr;
589 HBRUSH pOldBrush = nullptr;
590 HGDIOBJ pTemp;
591 int nOldROP;
592
593 // draw lines
594 if ((m_nStyle & (dottedLine|solidLine)) != 0)
595 {
596 if (m_nStyle & dottedLine)
597 pOldPen = static_cast<HPEN>(SelectObject(hDC,afxBlackDottedPen));
598 else
599 pOldPen = static_cast<HPEN>(SelectObject(hDC,reinterpret_cast<HGDIOBJ>(BLACK_PEN)));
600 pOldBrush = static_cast<HBRUSH>(SelectObject(hDC,reinterpret_cast<HGDIOBJ>(NULL_BRUSH)));
601 nOldROP = SetROP2(hDC,R2_COPYPEN);
602 InflateRect(&rect,+1, +1); // borders are one pixel outside
603 Rectangle(hDC,rect.left, rect.top, rect.right, rect.bottom);
604 SetROP2(hDC,nOldROP);
605 }
606
607 // if hatchBrush is going to be used, need to unrealize it
608 if ((m_nStyle & (hatchInside|hatchedBorder)) != 0)
609 UnrealizeObject(static_cast<HGDIOBJ>(afxHatchBrush));
610
611 // hatch inside
612 if ((m_nStyle & hatchInside) != 0)
613 {
614 pTemp = SelectObject(hDC,reinterpret_cast<HGDIOBJ>(NULL_PEN));
615 if (pOldPen == nullptr)
616 pOldPen = static_cast<HPEN>(pTemp);
617 pTemp = SelectObject(hDC,static_cast<HGDIOBJ>(afxHatchBrush));
618 if (pOldBrush == nullptr)
619 pOldBrush = static_cast<HBRUSH>(pTemp);
620 SetBkMode(hDC,TRANSPARENT);
621 nOldROP = SetROP2(hDC,R2_MASKNOTPEN);
622 Rectangle(hDC,rect.left+1, rect.top+1, rect.right, rect.bottom);
623 SetROP2(hDC,nOldROP);
624 }
625
626 // draw hatched border
627 if ((m_nStyle & hatchedBorder) != 0)
628 {
629 pTemp = SelectObject(hDC,static_cast<HGDIOBJ>(afxHatchBrush));
630 if (pOldBrush == nullptr)
631 pOldBrush = static_cast<HBRUSH>(pTemp);
632 SetBkMode(hDC,OPAQUE);
633 RECT rectTrue;
634 GetTrueRect(&rectTrue);
635 PatBlt(hDC,rectTrue.left, rectTrue.top, rectTrue.right-rectTrue.left,
636 rect.top-rectTrue.top, 0x000F0001 /* Pn */);
637 PatBlt(hDC,rectTrue.left, rect.bottom,
638 rectTrue.right-rectTrue.left,
639 rectTrue.bottom-rect.bottom, 0x000F0001 /* Pn */);
640 PatBlt(hDC,rectTrue.left, rect.top, rect.left-rectTrue.left,
641 rect.bottom-rect.top, 0x000F0001 /* Pn */);
642 PatBlt(hDC,rect.right, rect.top, rectTrue.right-rect.right,
643 rect.bottom-rect.top, 0x000F0001 /* Pn */);
644 }
645
646 // draw resize handles
647 if ((m_nStyle & (resizeInside|resizeOutside)) != 0)
648 {
649 UINT mask = GetHandleMask();
650 HBRUSH hbrush = CreateSolidBrush(RGB(0,0,0));
651 for (int i = 0; i < 8; ++i)
652 {
653 if (mask & (1<<i))
654 {
655 GetHandleRect(static_cast<TrackerHit>(i), &rect);
656 // FillSolidRect(hDC,rect, RGB(0, 0, 0));
657 FillRect(hDC,&rect,hbrush);
658 }
659 }
660 DeleteObject(hbrush);
661 }
662
663 // cleanup pDC state
664 if (pOldPen != nullptr)
665 SelectObject(hDC,pOldPen);
666 if (pOldBrush != nullptr)
667 SelectObject(hDC,pOldBrush);
668 RestoreDC(hDC,-1);
669}
670
671
672void Tracker::GetHandleRect(int nHandle,RECT* pHandleRect) const
673{
674 // get normalized rectangle of the tracker
675 RECT rectT = m_rect;
676 NormalizeRect(&rectT);
677 if ((m_nStyle & (solidLine|dottedLine)) != 0)
678 InflateRect(&rectT,+1, +1);
679
680 // since the rectangle itself was normalized, we also have to invert the
681 // resize handles.
683
684 // handle case of resize handles outside the tracker
685 int size = GetHandleSize();
687 InflateRect(&rectT,size-1, size-1);
688
689 // calculate position of the resize handle
690 int nWidth = rectT.right - rectT.left;
691 int nHeight = rectT.bottom - rectT.top;
692 RECT rect;
693 const AFX_HANDLEINFO* pHandleInfo = &afxHandleInfo[nHandle];
694 rect.left = *reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&rectT) + pHandleInfo->nOffsetX);
695 rect.top = *reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&rectT) + pHandleInfo->nOffsetY);
696 rect.left += size * pHandleInfo->nHandleX;
697 rect.top += size * pHandleInfo->nHandleY;
698 rect.left += pHandleInfo->nCenterX * (nWidth - size) / 2;
699 rect.top += pHandleInfo->nCenterY * (nHeight - size) / 2;
700 rect.right = rect.left + size;
701 rect.bottom = rect.top + size;
702
703 *pHandleRect = rect;
704}
705
706
707int Tracker::GetHandleSize(LPRECT lpRect) const
708{
709 LPCRECT rect = lpRect == nullptr ? &m_rect : lpRect;
710
711 int size = m_nHandleSize;
712 if (!(m_nStyle & resizeOutside))
713 {
714 // make sure size is small enough for the size of the rect
715 int sizeMax = std::min(abs(rect->right - rect->left),
716 abs(rect->bottom - rect->top));
717 if (size * 2 > sizeMax)
718 size = sizeMax / 2;
719 }
720 return size;
721}
722
723
725{
726 UINT mask = 0x0F; // always have 4 corner handles
727 int size = m_nHandleSize*3;
728 if (abs(m_rect.right - m_rect.left) - size > 4)
729 mask |= 0x50;
730 if (abs(m_rect.bottom - m_rect.top) - size > 4)
731 mask |= 0xA0;
732 return mask;
733}
734
735
736void Tracker::GetTrueRect(LPRECT lpTrueRect) const
737{
738 RECT rect = m_rect;
739 NormalizeRect(&rect);
740 int nInflateBy = 0;
741 if ((m_nStyle & (resizeOutside|hatchedBorder)) != 0)
742 nInflateBy += GetHandleSize() - 1;
743 if ((m_nStyle & (solidLine|dottedLine)) != 0)
744 ++nInflateBy;
745 InflateRect(&rect,nInflateBy, nInflateBy);
746 *lpTrueRect = rect;
747}
748
749
750int Tracker::NormalizeHit(int nHandle) const
751{
752 if (nHandle == hitMiddle || nHandle == hitNothing)
753 return nHandle;
754 const AFX_HANDLEINFO* pHandleInfo = &afxHandleInfo[nHandle];
755 if (m_rect.right - m_rect.left < 0)
756 {
757 nHandle = static_cast<TrackerHit>(pHandleInfo->nInvertX);
758 pHandleInfo = &afxHandleInfo[nHandle];
759 }
760 if (m_rect.bottom - m_rect.top < 0)
761 nHandle = static_cast<TrackerHit>(pHandleInfo->nInvertY);
762 return nHandle;
763}
764
765
766int Tracker::HitTestHandles(POINT point) const
767{
768 RECT rect;
769 UINT mask = GetHandleMask();
770
771 // see if hit anywhere inside the tracker
772 GetTrueRect(&rect);
773 if (!PtInRect(&rect,point))
774 return hitNothing; // totally missed
775
776 // see if we hit a handle
777 for (int i = 0; i < 8; ++i)
778 {
779 if (mask & (1<<i))
780 {
781 GetHandleRect(static_cast<TrackerHit>(i), &rect);
782 if (PtInRect(&rect,point))
783 return static_cast<TrackerHit>(i);
784 }
785 }
786
787 // last of all, check for non-hit outside of object, between resize handles
788 if ((m_nStyle & hatchedBorder) == 0)
789 {
790 rect = m_rect;
791 NormalizeRect(&rect);
792 if ((m_nStyle & (dottedLine|solidLine)) != 0)
793 InflateRect(&rect,+1, +1);
794 if (!PtInRect(&rect,point))
795 return hitNothing; // must have been between resize handles
796 }
797 return hitMiddle; // no handle hit, but hit object (or object border)
798}
799
800
802 int nHandle, int** ppx, int** ppy, int* px, int* py)
803{
804 if (nHandle == hitMiddle)
805 nHandle = hitTopLeft; // same as hitting top-left
806
807 *ppx = nullptr;
808 *ppy = nullptr;
809
810 // fill in the part of the rect that this handle modifies
811 // (Note: handles that map to themselves along a given axis when that
812 // axis is inverted don't modify the value on that axis)
813
814 const AFX_HANDLEINFO* pHandleInfo = &afxHandleInfo[nHandle];
815 if (pHandleInfo->nInvertX != nHandle)
816 {
817 *ppx = reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&m_rect) + pHandleInfo->nOffsetX);
818 if (px != nullptr)
819 *px = **ppx;
820 }
821 else
822 {
823 // middle handle on X axis
824 if (px != nullptr)
825 *px = m_rect.left + (m_rect.left-m_rect.right) / 2;
826 }
827 if (pHandleInfo->nInvertY != nHandle)
828 {
829 *ppy = reinterpret_cast<int*>(reinterpret_cast<BYTE*>(&m_rect) + pHandleInfo->nOffsetY);
830 if (py != nullptr)
831 *py = **ppy;
832 }
833 else
834 {
835 // middle handle on Y axis
836 if (py != nullptr)
837 *py = m_rect.top + (m_rect.top-m_rect.bottom) / 2;
838 }
839}
840
841/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual ~Tracker()
Definition: tracker.cxx:290
BOOL SetCursor(HWND hWnd, UINT nHitTest) const
Definition: tracker.cxx:313
void GetTrueRect(LPRECT lpTrueRect) const
Definition: tracker.cxx:736
virtual void DrawTrackerRect(LPRECT lpRect, HWND hWndClipTo, HDC hDC, HWND hWnd)
Definition: tracker.cxx:539
virtual UINT GetHandleMask() const
Definition: tracker.cxx:724
void GetModifyPointers(int nHandle, int **ppx, int **ppy, int *px, int *py)
Definition: tracker.cxx:801
int NormalizeHit(int nHandle) const
Definition: tracker.cxx:750
BOOL Track(HWND hWnd, POINT point, BOOL bAllowInvert=FALSE, HWND hWndClipTo=nullptr)
Definition: tracker.cxx:346
void Construct()
Definition: tracker.cxx:238
int HitTest(POINT point) const
Definition: tracker.cxx:295
BOOL TrackHandle(int nHandle, HWND hWnd, POINT point, HWND hWndClipTo)
Definition: tracker.cxx:364
void GetHandleRect(int nHandle, RECT *pHandleRect) const
Definition: tracker.cxx:672
virtual void AdjustRect(int nHandle, LPRECT lpRect)
Definition: tracker.cxx:504
int HitTestHandles(POINT point) const
Definition: tracker.cxx:766
virtual int GetHandleSize(LPRECT lpRect=nullptr) const
Definition: tracker.cxx:707
void Draw(HDC hDC) const
Definition: tracker.cxx:577
virtual void OnChangedRect(const RECT &rectOld)
Definition: tracker.cxx:499
OString right
OString top
OString bottom
#define TRUE
#define FALSE
unsigned short WORD
#define SAL_WARN_IF(condition, area, stream)
def point()
size
PATINVERT
PS_DOT
MM_TEXT
int i
constexpr tools::Long SIZE
void TransformRect(LPRECT rect, HWND pWnd, HWND pWndClipTo)
Definition: tracker.cxx:187
SwNodeOffset abs(const SwNodeOffset &a)
const wchar_t *typedef BOOL
sal_Int32 nHandle
static void DrawDragRect(HDC hDC, LPRECT lpRect, SIZE size, LPRECT lpRectLast, SIZE sizeLast, HBRUSH hBrush=nullptr, HBRUSH hBrushLast=nullptr)
Definition: tracker.cxx:114
static HBRUSH HalftoneBrush()
Definition: tracker.cxx:96
static HPEN afxBlackDottedPen
Definition: tracker.cxx:234
static int afxHandleSize
Definition: tracker.cxx:235
static void NormalizeRect(LPRECT rp)
Definition: tracker.cxx:202
static HCURSOR afxCursors[10]
Definition: tracker.cxx:38
const AFX_HANDLEINFO afxHandleInfo[]
Definition: tracker.cxx:59
const AFX_RECTINFO afxRectInfo[]
Definition: tracker.cxx:87
static HBRUSH afxHatchBrush
Definition: tracker.cxx:233
static HBRUSH afxHalftoneBrush
Definition: tracker.cxx:39
#define OPAQUE
Definition: tracker.cxx:36
unsigned char BYTE
sal_uInt64 left