2004-03-23 02:19:54 +01:00
|
|
|
/*
|
|
|
|
* ReactOS Task Manager
|
|
|
|
*
|
|
|
|
* proclist.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-03-23 02:19:54 +01:00
|
|
|
*/
|
2012-01-23 12:04:05 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <winnt.h>
|
2012-01-23 12:04:05 +01:00
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
#include "taskmgr.h"
|
|
|
|
#include "perfdata.h"
|
|
|
|
|
|
|
|
|
2005-09-13 16:31:51 +02:00
|
|
|
WNDPROC OldProcessListWndProc;
|
2004-03-23 02:19:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
LRESULT CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
HBRUSH hbrBackground;
|
2011-05-17 12:15:28 +02:00
|
|
|
int count;
|
2004-03-23 02:19:54 +01:00
|
|
|
RECT rcItem;
|
|
|
|
RECT rcClip;
|
|
|
|
HDC hDC;
|
|
|
|
int DcSave;
|
|
|
|
|
|
|
|
switch (message)
|
|
|
|
{
|
|
|
|
case WM_ERASEBKGND:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The list control produces a nasty flicker
|
|
|
|
* when the user is resizing the window because
|
|
|
|
* it erases the background to white, then
|
|
|
|
* paints the list items over it.
|
|
|
|
*
|
|
|
|
* We will clip the drawing so that it only
|
|
|
|
* erases the parts of the list control that
|
|
|
|
* show only the background.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2014-02-07 22:42:49 +01:00
|
|
|
* Get the device context and save its state
|
2004-03-23 02:19:54 +01:00
|
|
|
* to be restored after we're done
|
|
|
|
*/
|
|
|
|
hDC = (HDC) wParam;
|
|
|
|
DcSave = SaveDC(hDC);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the background brush
|
|
|
|
*/
|
2011-05-17 12:15:28 +02:00
|
|
|
hbrBackground = (HBRUSH) GetClassLongPtrW(hWnd, GCLP_HBRBACKGROUND);
|
2004-03-23 02:19:54 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the clip rect by getting the RECT
|
|
|
|
* of the first and last items and adding them up.
|
|
|
|
*
|
|
|
|
* We also have to get the item's icon RECT and
|
|
|
|
* subtract it from our clip rect because we don't
|
|
|
|
* use icons in this list control.
|
|
|
|
*/
|
2006-03-17 10:37:23 +01:00
|
|
|
rcClip.left = LVIR_BOUNDS;
|
2011-05-17 12:15:28 +02:00
|
|
|
SendMessageW(hWnd, LVM_GETITEMRECT, 0, (LPARAM) &rcClip);
|
2006-03-17 10:37:23 +01:00
|
|
|
rcItem.left = LVIR_BOUNDS;
|
2011-05-17 12:15:28 +02:00
|
|
|
count = SendMessageW(hWnd, LVM_GETITEMCOUNT, 0, 0);
|
|
|
|
SendMessageW(hWnd, LVM_GETITEMRECT, count - 1, (LPARAM) &rcItem);
|
2006-03-17 10:37:23 +01:00
|
|
|
|
2004-03-23 02:19:54 +01:00
|
|
|
rcClip.bottom = rcItem.bottom;
|
2006-03-17 10:37:23 +01:00
|
|
|
rcItem.left = LVIR_ICON;
|
2011-05-17 12:15:28 +02:00
|
|
|
SendMessageW(hWnd, LVM_GETITEMRECT, 0, (LPARAM) &rcItem);
|
2004-03-23 02:19:54 +01:00
|
|
|
rcClip.left = rcItem.right;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now exclude the clip rect
|
|
|
|
*/
|
|
|
|
ExcludeClipRect(hDC, rcClip.left, rcClip.top, rcClip.right, rcClip.bottom);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now erase the background
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* FIXME: Should I erase it myself or
|
|
|
|
* pass down the updated HDC and let
|
|
|
|
* the default handler do it?
|
|
|
|
*/
|
|
|
|
GetClientRect(hWnd, &rcItem);
|
|
|
|
FillRect(hDC, &rcItem, hbrBackground);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now restore the DC state that we
|
|
|
|
* saved earlier
|
|
|
|
*/
|
|
|
|
RestoreDC(hDC, DcSave);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We pass on all messages except WM_ERASEBKGND
|
|
|
|
*/
|
2011-05-17 12:15:28 +02:00
|
|
|
return CallWindowProcW(OldProcessListWndProc, hWnd, message, wParam, lParam);
|
2004-03-23 02:19:54 +01:00
|
|
|
}
|