6 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 WNDPROC OldGraphCtrlWndProc
;
34 static void GraphCtrl_Init(TGraphCtrl
* this)
39 this->m_hParentWnd
= 0;
42 this->m_bitmapOldGrid
= 0;
43 this->m_bitmapOldPlot
= 0;
44 this->m_bitmapGrid
= 0;
45 this->m_bitmapPlot
= 0;
46 this->m_brushBack
= 0;
48 this->m_penPlot
[0] = 0;
49 this->m_penPlot
[1] = 0;
50 this->m_penPlot
[2] = 0;
51 this->m_penPlot
[3] = 0;
53 /* since plotting is based on a LineTo for each new point
54 * we need a starting point (i.e. a "previous" point)
55 * use 0.0 as the default first point.
56 * these are public member variables, and can be changed outside
57 * (after construction). Therefore m_dPreviousPosition could be set to
58 * a more appropriate value prior to the first call to SetPosition.
60 this->m_dPreviousPosition
[0] = 0.0;
61 this->m_dPreviousPosition
[1] = 0.0;
62 this->m_dPreviousPosition
[2] = 0.0;
63 this->m_dPreviousPosition
[3] = 0.0;
65 /* public variable for the number of decimal places on the y axis */
66 this->m_nYDecimals
= 3;
68 /* set some initial values for the scaling until "SetRange" is called.
69 * these are protected variables and must be set with SetRange
70 * in order to ensure that m_dRange is updated accordingly
72 /* m_dLowerLimit = -10.0; */
73 /* m_dUpperLimit = 10.0; */
74 this->m_dLowerLimit
= 0.0;
75 this->m_dUpperLimit
= 100.0;
76 this->m_dRange
= this->m_dUpperLimit
- this->m_dLowerLimit
; /* protected member variable */
78 /* m_nShiftPixels determines how much the plot shifts (in terms of pixels) */
79 /* with the addition of a new data point */
80 this->m_nShiftPixels
= 4;
81 this->m_nHalfShiftPixels
= this->m_nShiftPixels
/2; /* protected */
82 this->m_nPlotShiftPixels
= this->m_nShiftPixels
+ this->m_nHalfShiftPixels
; /* protected */
84 /* background, grid and data colors */
85 /* these are public variables and can be set directly */
86 this->m_crBackColor
= RGB( 0, 0, 0); /* see also SetBackgroundColor */
87 this->m_crGridColor
= RGB( 0, 255, 255); /* see also SetGridColor */
88 this->m_crPlotColor
[0] = RGB(255, 255, 255); /* see also SetPlotColor */
89 this->m_crPlotColor
[1] = RGB(100, 255, 255); /* see also SetPlotColor */
90 this->m_crPlotColor
[2] = RGB(255, 100, 255); /* see also SetPlotColor */
91 this->m_crPlotColor
[3] = RGB(255, 255, 100); /* see also SetPlotColor */
93 /* protected variables */
94 for (i
= 0; i
< MAX_PLOTS
; i
++)
96 this->m_penPlot
[i
] = CreatePen(PS_SOLID
, 0, this->m_crPlotColor
[i
]);
98 this->m_brushBack
= CreateSolidBrush(this->m_crBackColor
);
100 /* public member variables, can be set directly */
101 strcpy(this->m_strXUnitsString
, "Samples"); /* can also be set with SetXUnits */
102 strcpy(this->m_strYUnitsString
, "Y units"); /* can also be set with SetYUnits */
104 /* protected bitmaps to restore the memory DC's */
105 this->m_bitmapOldGrid
= NULL
;
106 this->m_bitmapOldPlot
= NULL
;
110 TGraphCtrl::~TGraphCtrl(void)
112 /* just to be picky restore the bitmaps for the two memory dc's */
113 /* (these dc's are being destroyed so there shouldn't be any leaks) */
114 if (m_bitmapOldGrid
!= NULL
) SelectObject(m_dcGrid
, m_bitmapOldGrid
);
115 if (m_bitmapOldPlot
!= NULL
) SelectObject(m_dcPlot
, m_bitmapOldPlot
);
116 if (m_bitmapGrid
!= NULL
) DeleteObject(m_bitmapGrid
);
117 if (m_bitmapPlot
!= NULL
) DeleteObject(m_bitmapPlot
);
118 if (m_dcGrid
!= NULL
) DeleteDC(m_dcGrid
);
119 if (m_dcPlot
!= NULL
) DeleteDC(m_dcPlot
);
120 if (m_brushBack
!= NULL
) DeleteObject(m_brushBack
);
124 static void GraphCtrl_Resize(TGraphCtrl
* this)
126 /* NOTE: Resize automatically gets called during the setup of the control */
127 GetClientRect(this->m_hWnd
, &this->m_rectClient
);
129 /* set some member variables to avoid multiple function calls */
130 this->m_nClientHeight
= this->m_rectClient
.bottom
- this->m_rectClient
.top
;/* m_rectClient.Height(); */
131 this->m_nClientWidth
= this->m_rectClient
.right
- this->m_rectClient
.left
;/* m_rectClient.Width(); */
133 /* the "left" coordinate and "width" will be modified in */
134 /* InvalidateCtrl to be based on the width of the y axis scaling */
136 this->m_rectPlot
.left
= 20;
137 this->m_rectPlot
.top
= 10;
138 this->m_rectPlot
.right
= this->m_rectClient
.right
-10;
139 this->m_rectPlot
.bottom
= this->m_rectClient
.bottom
-25;
141 this->m_rectPlot
.left
= 0;
142 this->m_rectPlot
.top
= -1;
143 this->m_rectPlot
.right
= this->m_rectClient
.right
-0;
144 this->m_rectPlot
.bottom
= this->m_rectClient
.bottom
-0;
147 /* set some member variables to avoid multiple function calls */
148 this->m_nPlotHeight
= this->m_rectPlot
.bottom
- this->m_rectPlot
.top
;/* m_rectPlot.Height(); */
149 this->m_nPlotWidth
= this->m_rectPlot
.right
- this->m_rectPlot
.left
;/* m_rectPlot.Width(); */
151 /* set the scaling factor for now, this can be adjusted */
152 /* in the SetRange functions */
153 this->m_dVerticalFactor
= (double)this->m_nPlotHeight
/ this->m_dRange
;
156 BOOL
GraphCtrl_Create(TGraphCtrl
* this, HWND hWnd
, HWND hParentWnd
, UINT nID
)
158 GraphCtrl_Init(this);
159 this->m_hParentWnd
= hParentWnd
;
161 GraphCtrl_Resize(this);
165 static void GraphCtrl_InvalidateCtrl(TGraphCtrl
* this)
167 /* There is a lot of drawing going on here - particularly in terms of */
168 /* drawing the grid. Don't panic, this is all being drawn (only once) */
169 /* to a bitmap. The result is then BitBlt'd to the control whenever needed. */
172 int nTopGridPix
, nMidGridPix
, nBottomGridPix
;
175 HPEN solidPen
= CreatePen(PS_SOLID
, 0, this->m_crGridColor
);
176 /* HFONT axisFont, yUnitFont, oldFont; */
177 /* char strTemp[50]; */
179 /* in case we haven't established the memory dc's */
180 /* CClientDC dc(this); */
181 HDC dc
= GetDC(this->m_hParentWnd
);
183 /* if we don't have one yet, set up a memory dc for the grid */
184 if (this->m_dcGrid
== NULL
)
186 this->m_dcGrid
= CreateCompatibleDC(dc
);
187 this->m_bitmapGrid
= CreateCompatibleBitmap(dc
, this->m_nClientWidth
, this->m_nClientHeight
);
188 this->m_bitmapOldGrid
= SelectObject(this->m_dcGrid
, this->m_bitmapGrid
);
191 SetBkColor(this->m_dcGrid
, this->m_crBackColor
);
193 /* fill the grid background */
194 FillRect(this->m_dcGrid
, &this->m_rectClient
, this->m_brushBack
);
196 /* draw the plot rectangle: */
197 /* determine how wide the y axis scaling values are */
198 nCharacters
= abs((int)log10(fabs(this->m_dUpperLimit
)));
199 nCharacters
= max(nCharacters
, abs((int)log10(fabs(this->m_dLowerLimit
))));
201 /* add the units digit, decimal point and a minus sign, and an extra space */
202 /* as well as the number of decimal places to display */
203 nCharacters
= nCharacters
+ 4 + this->m_nYDecimals
;
205 /* adjust the plot rectangle dimensions */
206 /* assume 6 pixels per character (this may need to be adjusted) */
207 /* m_rectPlot.left = m_rectClient.left + 6*(nCharacters); */
208 this->m_rectPlot
.left
= this->m_rectClient
.left
;
209 this->m_nPlotWidth
= this->m_rectPlot
.right
- this->m_rectPlot
.left
;/* m_rectPlot.Width(); */
211 /* draw the plot rectangle */
212 oldPen
= SelectObject(this->m_dcGrid
, solidPen
);
213 MoveToEx(this->m_dcGrid
, this->m_rectPlot
.left
, this->m_rectPlot
.top
, NULL
);
214 LineTo(this->m_dcGrid
, this->m_rectPlot
.right
+1, this->m_rectPlot
.top
);
215 LineTo(this->m_dcGrid
, this->m_rectPlot
.right
+1, this->m_rectPlot
.bottom
+1);
216 LineTo(this->m_dcGrid
, this->m_rectPlot
.left
, this->m_rectPlot
.bottom
+1);
217 /* LineTo(m_dcGrid, m_rectPlot.left, m_rectPlot.top); */
218 SelectObject(this->m_dcGrid
, oldPen
);
219 DeleteObject(solidPen
);
221 /* draw the dotted lines,
222 * use SetPixel instead of a dotted pen - this allows for a
223 * finer dotted line and a more "technical" look
225 nMidGridPix
= (this->m_rectPlot
.top
+ this->m_rectPlot
.bottom
)/2;
226 nTopGridPix
= nMidGridPix
- this->m_nPlotHeight
/4;
227 nBottomGridPix
= nMidGridPix
+ this->m_nPlotHeight
/4;
229 for (i
=this->m_rectPlot
.left
; i
<this->m_rectPlot
.right
; i
+=2)
231 SetPixel(this->m_dcGrid
, i
, nTopGridPix
, this->m_crGridColor
);
232 SetPixel(this->m_dcGrid
, i
, nMidGridPix
, this->m_crGridColor
);
233 SetPixel(this->m_dcGrid
, i
, nBottomGridPix
, this->m_crGridColor
);
236 for (i
=this->m_rectPlot
.left
; i
<this->m_rectPlot
.right
; i
+=10)
238 for (j
=this->m_rectPlot
.top
; j
<this->m_rectPlot
.bottom
; j
+=2)
240 SetPixel(this->m_dcGrid
, i
, j
, this->m_crGridColor
);
241 /* SetPixel(m_dcGrid, i, j, m_crGridColor); */
242 /* SetPixel(m_dcGrid, i, j, m_crGridColor); */
247 /* create some fonts (horizontal and vertical) */
248 /* use a height of 14 pixels and 300 weight */
249 /* (these may need to be adjusted depending on the display) */
250 axisFont
= CreateFont (14, 0, 0, 0, 300,
251 FALSE
, FALSE
, 0, ANSI_CHARSET
,
255 DEFAULT_PITCH
|FF_SWISS
, "Arial");
256 yUnitFont
= CreateFont (14, 0, 900, 0, 300,
257 FALSE
, FALSE
, 0, ANSI_CHARSET
,
261 DEFAULT_PITCH
|FF_SWISS
, "Arial");
263 /* grab the horizontal font */
264 oldFont
= SelectObject(m_dcGrid
, axisFont
);
267 SetTextColor(m_dcGrid
, m_crGridColor
);
268 SetTextAlign(m_dcGrid
, TA_RIGHT
|TA_TOP
);
269 sprintf(strTemp
, "%.*lf", m_nYDecimals
, m_dUpperLimit
);
270 TextOut(m_dcGrid
, m_rectPlot
.left
-4, m_rectPlot
.top
, strTemp
, _tcslen(strTemp
));
273 SetTextAlign(m_dcGrid
, TA_RIGHT
|TA_BASELINE
);
274 sprintf(strTemp
, "%.*lf", m_nYDecimals
, m_dLowerLimit
);
275 TextOut(m_dcGrid
, m_rectPlot
.left
-4, m_rectPlot
.bottom
, strTemp
, _tcslen(strTemp
));
278 SetTextAlign(m_dcGrid
, TA_LEFT
|TA_TOP
);
279 TextOut(m_dcGrid
, m_rectPlot
.left
, m_rectPlot
.bottom
+4, "0", 1);
282 SetTextAlign(m_dcGrid
, TA_RIGHT
|TA_TOP
);
283 sprintf(strTemp
, "%d", m_nPlotWidth
/m_nShiftPixels
);
284 TextOut(m_dcGrid
, m_rectPlot
.right
, m_rectPlot
.bottom
+4, strTemp
, _tcslen(strTemp
));
287 SetTextAlign(m_dcGrid
, TA_CENTER
|TA_TOP
);
288 TextOut(m_dcGrid
, (m_rectPlot
.left
+m_rectPlot
.right
)/2,
289 m_rectPlot
.bottom
+4, m_strXUnitsString
, _tcslen(m_strXUnitsString
));
291 /* restore the font */
292 SelectObject(m_dcGrid
, oldFont
);
295 oldFont
= SelectObject(m_dcGrid
, yUnitFont
);
296 SetTextAlign(m_dcGrid
, TA_CENTER
|TA_BASELINE
);
297 TextOut(m_dcGrid
, (m_rectClient
.left
+m_rectPlot
.left
)/2,
298 (m_rectPlot
.bottom
+m_rectPlot
.top
)/2, m_strYUnitsString
, _tcslen(m_strYUnitsString
));
299 SelectObject(m_dcGrid
, oldFont
);
301 /* at this point we are done filling the grid bitmap, */
302 /* no more drawing to this bitmap is needed until the settings are changed */
304 /* if we don't have one yet, set up a memory dc for the plot */
305 if (this->m_dcPlot
== NULL
)
307 this->m_dcPlot
= CreateCompatibleDC(dc
);
308 this->m_bitmapPlot
= CreateCompatibleBitmap(dc
, this->m_nClientWidth
, this->m_nClientHeight
);
309 this->m_bitmapOldPlot
= SelectObject(this->m_dcPlot
, this->m_bitmapPlot
);
312 /* make sure the plot bitmap is cleared */
313 SetBkColor(this->m_dcPlot
, this->m_crBackColor
);
314 FillRect(this->m_dcPlot
, &this->m_rectClient
, this->m_brushBack
);
316 /* finally, force the plot area to redraw */
317 InvalidateRect(this->m_hParentWnd
, &this->m_rectClient
, TRUE
);
318 ReleaseDC(this->m_hParentWnd
, dc
);
321 void GraphCtrl_SetRange(TGraphCtrl
* this, double dLower
, double dUpper
, int nDecimalPlaces
)
323 /* ASSERT(dUpper > dLower); */
324 this->m_dLowerLimit
= dLower
;
325 this->m_dUpperLimit
= dUpper
;
326 this->m_nYDecimals
= nDecimalPlaces
;
327 this->m_dRange
= this->m_dUpperLimit
- this->m_dLowerLimit
;
328 this->m_dVerticalFactor
= (double)this->m_nPlotHeight
/ this->m_dRange
;
329 /* clear out the existing garbage, re-start with a clean plot */
330 GraphCtrl_InvalidateCtrl(this);
334 void TGraphCtrl::SetXUnits(const char* string
)
336 lstrcpynA(m_strXUnitsString
, string
, sizeof(m_strXUnitsString
));
337 /* clear out the existing garbage, re-start with a clean plot */
341 void TGraphCtrl::SetYUnits(const char* string
)
343 lstrcpynA(m_strYUnitsString
, string
, sizeof(m_strYUnitsString
));
344 /* clear out the existing garbage, re-start with a clean plot */
349 void GraphCtrl_SetGridColor(TGraphCtrl
* this, COLORREF color
)
351 this->m_crGridColor
= color
;
352 /* clear out the existing garbage, re-start with a clean plot */
353 GraphCtrl_InvalidateCtrl(this);
356 void GraphCtrl_SetPlotColor(TGraphCtrl
* this, int plot
, COLORREF color
)
358 this->m_crPlotColor
[plot
] = color
;
359 DeleteObject(this->m_penPlot
[plot
]);
360 this->m_penPlot
[plot
] = CreatePen(PS_SOLID
, 0, this->m_crPlotColor
[plot
]);
361 /* clear out the existing garbage, re-start with a clean plot */
362 GraphCtrl_InvalidateCtrl(this);
365 void GraphCtrl_SetBackgroundColor(TGraphCtrl
* this, COLORREF color
)
367 this->m_crBackColor
= color
;
368 DeleteObject(this->m_brushBack
);
369 this->m_brushBack
= CreateSolidBrush(this->m_crBackColor
);
370 /* clear out the existing garbage, re-start with a clean plot */
371 GraphCtrl_InvalidateCtrl(this);
374 static void GraphCtrl_DrawPoint(TGraphCtrl
* this)
376 /* this does the work of "scrolling" the plot to the left
377 * and appending a new data point all of the plotting is
378 * directed to the memory based bitmap associated with m_dcPlot
379 * the will subsequently be BitBlt'd to the client in Paint
381 int currX
, prevX
, currY
, prevY
;
386 if (this->m_dcPlot
!= NULL
)
388 /* shift the plot by BitBlt'ing it to itself
389 * note: the m_dcPlot covers the entire client
390 * but we only shift bitmap that is the size
391 * of the plot rectangle
392 * grab the right side of the plot (excluding m_nShiftPixels on the left)
393 * move this grabbed bitmap to the left by m_nShiftPixels
395 BitBlt(this->m_dcPlot
, this->m_rectPlot
.left
, this->m_rectPlot
.top
+1,
396 this->m_nPlotWidth
, this->m_nPlotHeight
, this->m_dcPlot
,
397 this->m_rectPlot
.left
+this->m_nShiftPixels
, this->m_rectPlot
.top
+1,
400 /* establish a rectangle over the right side of plot */
401 /* which now needs to be cleaned up prior to adding the new point */
402 rectCleanUp
= this->m_rectPlot
;
403 rectCleanUp
.left
= rectCleanUp
.right
- this->m_nShiftPixels
;
405 /* fill the cleanup area with the background */
406 FillRect(this->m_dcPlot
, &rectCleanUp
, this->m_brushBack
);
408 /* draw the next line segment */
409 for (i
= 0; i
< MAX_PLOTS
; i
++)
411 /* grab the plotting pen */
412 oldPen
= SelectObject(this->m_dcPlot
, this->m_penPlot
[i
]);
414 /* move to the previous point */
415 prevX
= this->m_rectPlot
.right
-this->m_nPlotShiftPixels
;
416 prevY
= this->m_rectPlot
.bottom
-
417 (int)((this->m_dPreviousPosition
[i
] - this->m_dLowerLimit
) * this->m_dVerticalFactor
);
418 MoveToEx(this->m_dcPlot
, prevX
, prevY
, NULL
);
420 /* draw to the current point */
421 currX
= this->m_rectPlot
.right
-this->m_nHalfShiftPixels
;
422 currY
= this->m_rectPlot
.bottom
-
423 (int)((this->m_dCurrentPosition
[i
] - this->m_dLowerLimit
) * this->m_dVerticalFactor
);
424 LineTo(this->m_dcPlot
, currX
, currY
);
426 /* Restore the pen */
427 SelectObject(this->m_dcPlot
, oldPen
);
429 /* if the data leaks over the upper or lower plot boundaries
430 * fill the upper and lower leakage with the background
431 * this will facilitate clipping on an as needed basis
432 * as opposed to always calling IntersectClipRect
434 if ((prevY
<= this->m_rectPlot
.top
) || (currY
<= this->m_rectPlot
.top
))
437 rc
.bottom
= this->m_rectPlot
.top
+1;
440 rc
.top
= this->m_rectClient
.top
;
441 FillRect(this->m_dcPlot
, &rc
, this->m_brushBack
);
443 if ((prevY
>= this->m_rectPlot
.bottom
) || (currY
>= this->m_rectPlot
.bottom
))
446 rc
.bottom
= this->m_rectClient
.bottom
+1;
449 rc
.top
= this->m_rectPlot
.bottom
+1;
450 /* RECT rc(prevX, m_rectPlot.bottom+1, currX+1, m_rectClient.bottom+1); */
451 FillRect(this->m_dcPlot
, &rc
, this->m_brushBack
);
454 /* store the current point for connection to the next point */
455 this->m_dPreviousPosition
[i
] = this->m_dCurrentPosition
[i
];
460 double GraphCtrl_AppendPoint(TGraphCtrl
* this,
461 double dNewPoint0
, double dNewPoint1
,
462 double dNewPoint2
, double dNewPoint3
)
464 /* append a data point to the plot & return the previous point */
467 dPrevious
= this->m_dCurrentPosition
[0];
468 this->m_dCurrentPosition
[0] = dNewPoint0
;
469 this->m_dCurrentPosition
[1] = dNewPoint1
;
470 this->m_dCurrentPosition
[2] = dNewPoint2
;
471 this->m_dCurrentPosition
[3] = dNewPoint3
;
472 GraphCtrl_DrawPoint(this);
477 static void GraphCtrl_Paint(TGraphCtrl
* this, HWND hWnd
, HDC dc
)
481 HBITMAP oldBitmap
; /* bitmap originally found in CMemDC */
484 /* GetClientRect(hWnd, &rcClient); */
485 /* FillSolidRect(dc, &rcClient, RGB(255, 0, 255)); */
486 /* m_nClientWidth = rcClient.right - rcClient.left; */
487 /* m_nClientHeight = rcClient.bottom - rcClient.top; */
489 /* no real plotting work is performed here, */
490 /* just putting the existing bitmaps on the client */
492 /* to avoid flicker, establish a memory dc, draw to it */
493 /* and then BitBlt it to the client */
494 memDC
= CreateCompatibleDC(dc
);
495 memBitmap
= CreateCompatibleBitmap(dc
, this->m_nClientWidth
, this->m_nClientHeight
);
496 oldBitmap
= SelectObject(memDC
, memBitmap
);
500 /* first drop the grid on the memory dc */
501 BitBlt(memDC
, 0, 0, this->m_nClientWidth
, this->m_nClientHeight
, this->m_dcGrid
, 0, 0, SRCCOPY
);
502 /* now add the plot on top as a "pattern" via SRCPAINT. */
503 /* works well with dark background and a light plot */
504 BitBlt(memDC
, 0, 0, this->m_nClientWidth
, this->m_nClientHeight
, this->m_dcPlot
, 0, 0, SRCPAINT
); /* SRCPAINT */
505 /* finally send the result to the display */
506 BitBlt(dc
, 0, 0, this->m_nClientWidth
, this->m_nClientHeight
, memDC
, 0, 0, SRCCOPY
);
508 SelectObject(memDC
, oldBitmap
);
509 DeleteObject(memBitmap
);
514 void TGraphCtrl::Reset(void)
516 /* to clear the existing data (in the form of a bitmap) */
517 /* simply invalidate the entire control */
522 extern TGraphCtrl PerformancePageCpuUsageHistoryGraph
;
523 extern TGraphCtrl PerformancePageMemUsageHistoryGraph
;
524 extern HWND hPerformancePageCpuUsageHistoryGraph
;
525 extern HWND hPerformancePageMemUsageHistoryGraph
;
528 GraphCtrl_WndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
539 * Filter out mouse & keyboard messages
541 /* case WM_APPCOMMAND: */
542 case WM_CAPTURECHANGED
:
543 case WM_LBUTTONDBLCLK
:
546 case WM_MBUTTONDBLCLK
:
549 case WM_MOUSEACTIVATE
:
553 /* case WM_MOUSEWHEEL: */
555 case WM_NCLBUTTONDBLCLK
:
556 case WM_NCLBUTTONDOWN
:
558 case WM_NCMBUTTONDBLCLK
:
559 case WM_NCMBUTTONDOWN
:
561 /* case WM_NCMOUSEHOVER: */
562 /* case WM_NCMOUSELEAVE: */
564 case WM_NCRBUTTONDBLCLK
:
565 case WM_NCRBUTTONDOWN
:
567 /* case WM_NCXBUTTONDBLCLK: */
568 /* case WM_NCXBUTTONDOWN: */
569 /* case WM_NCXBUTTONUP: */
570 case WM_RBUTTONDBLCLK
:
573 /* case WM_XBUTTONDBLCLK: */
574 /* case WM_XBUTTONDOWN: */
575 /* case WM_XBUTTONUP: */
596 if (hWnd
== hPerformancePageMemUsageHistoryGraph
)
598 GraphCtrl_Resize(&PerformancePageMemUsageHistoryGraph
);
599 GraphCtrl_InvalidateCtrl(&PerformancePageMemUsageHistoryGraph
);
601 if (hWnd
== hPerformancePageCpuUsageHistoryGraph
)
603 GraphCtrl_Resize(&PerformancePageCpuUsageHistoryGraph
);
604 GraphCtrl_InvalidateCtrl(&PerformancePageCpuUsageHistoryGraph
);
609 hdc
= BeginPaint(hWnd
, &ps
);
610 GetClientRect(hWnd
, &rcClient
);
611 if (hWnd
== hPerformancePageMemUsageHistoryGraph
)
612 GraphCtrl_Paint(&PerformancePageMemUsageHistoryGraph
, hWnd
, hdc
);
613 if (hWnd
== hPerformancePageCpuUsageHistoryGraph
)
614 GraphCtrl_Paint(&PerformancePageCpuUsageHistoryGraph
, hWnd
, hdc
);
620 * We pass on all non-handled messages
622 return CallWindowProcW(OldGraphCtrlWndProc
, hWnd
, message
, wParam
, lParam
);