59d119627c51d59ad13753ce2de960119a3f48d9
[reactos.git] / reactos / subsys / system / taskmgr / font.c
1 /*
2 * ReactOS Task Manager
3 *
4 * font.cpp
5 *
6 * Copyright (C) 1999 - 2001 Brian Palmer <brianp@reactos.org>
7 *
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.
12 *
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.
17 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23 #include "precomp.h"
24
25 void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y)
26 {
27 HDC hFontDC;
28 HBITMAP hFontBitmap;
29 HBITMAP hOldBitmap;
30 int i;
31
32 hFontDC = CreateCompatibleDC(hDC);
33 hFontBitmap = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_FONT));
34 hOldBitmap = (HBITMAP)SelectObject(hFontDC, hFontBitmap);
35
36 for (i = 0; i < (int)_tcslen(lpszText); i++) {
37 if ((lpszText[i] >= '0') && (lpszText[i] <= '9')) {
38 BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, (lpszText[i] - '0') * 8, 0, SRCCOPY);
39 }
40 else if (lpszText[i] == 'K')
41 {
42 BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, 80, 0, SRCCOPY);
43 }
44 else if (lpszText[i] == '%')
45 {
46 BitBlt(hDC, x + (i * 8), y, 8, 11, hFontDC, 88, 0, SRCCOPY);
47 }
48 }
49 SelectObject(hFontDC, hOldBitmap);
50 DeleteObject(hFontBitmap);
51 DeleteDC(hFontDC);
52 }
53