home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
win_lrn
/
mouse
/
gsysmtrx.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-08-10
|
5KB
|
155 lines
/*
*
* GetSystemMetrics
*
* This program demonstrates the use of the GetSystemMetrics function
* by checking to see if the debugging version of Windows is installed.
* If the user couble clicks the right mouse button, a message box
* is displayed telling if the debugging version of Windows has been
* installed.
*
*/
#include "windows.h"
/* Global Variables */
static HANDLE hInst;
static HWND hWnd;
/* FORWARD REFERENCES */
long FAR PASCAL WindowProc (HWND, unsigned, WORD, LONG);
/* WINMAIN */
int PASCAL WinMain (hInstance, hPrevInstance, lpszCmdLine, cmdShow)
HANDLE hInstance, hPrevInstance;
LPSTR lpszCmdLine;
int cmdShow;
{
MSG msg;
if (!hPrevInstance) {
WNDCLASS rClass;
rClass.lpszClassName = (LPSTR)"gsysmtrx";
rClass.hInstance = hInstance;
rClass.lpfnWndProc = WindowProc;
rClass.hCursor = LoadCursor(NULL, IDC_ARROW);
rClass.hIcon = LoadIcon(hInstance, IDI_APPLICATION);
rClass.lpszMenuName = (LPSTR)NULL;
rClass.hbrBackground = GetStockObject(WHITE_BRUSH);
rClass.style = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS;
rClass.cbClsExtra = 0; /* Add double click capabilities. */
rClass.cbWndExtra = 0;
RegisterClass((LPWNDCLASS)&rClass);
}
else
;
hInst = hInstance;
hWnd = CreateWindow((LPSTR) "gsysmtrx",
(LPSTR) "GetSystemMetrics", /* Create a window. */
WS_OVERLAPPEDWINDOW, /* Make it overlapped. */
CW_USEDEFAULT, /* Use default coordinates. */
CW_USEDEFAULT, /* Use default coordinates. */
CW_USEDEFAULT, /* Use default coordinates. */
CW_USEDEFAULT, /* Use default coordinates. */
(HWND)NULL,
(HMENU)NULL,
(HANDLE)hInstance,
(LPSTR)NULL
);
ShowWindow(hWnd, cmdShow);
UpdateWindow(hWnd);
while (GetMessage((LPMSG)&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
exit(msg.wParam);
} /* WinMain */
/* WINDOWPROC */
long FAR PASCAL WindowProc(hWnd, identifier, wParam, lParam)
HWND hWnd;
unsigned identifier;
WORD wParam;
LONG lParam;
{
switch (identifier) {
case WM_PAINT: {
PAINTSTRUCT ps;
RECT rRect;
HDC hDC;
hDC=BeginPaint(hWnd, (LPPAINTSTRUCT)&ps);
SetMapMode(hDC, MM_ANISOTROPIC);
SetWindowOrg(hDC, 0, 0);
SetWindowExt(hDC, 110, 110);
GetClientRect(hWnd, (LPRECT)&rRect);
SetViewportOrg(hDC, 0, 0);
SetViewportExt(hDC, rRect.right, rRect.bottom);
DrawText(hDC,
(LPSTR)"Double Click Right Mouse Button To Conduct Test.",
48, (LPRECT)&rRect, DT_SINGLELINE); /* Place text to */
EndPaint(hWnd, (LPPAINTSTRUCT)&ps); /* prompt for test. */
}
break;
case WM_RBUTTONDBLCLK: /* If the user double */
{ /* clicks on the right */
char szbuf[40]; /* Output buffer | mouse button, then */
int iValue; /* 0 if no debug, !0 if so | establish needed */
/* variables and call */
iValue = GetSystemMetrics(SM_DEBUG); /* the GetSystemMetrics */
if (iValue == 0) /* function. Capture */
sprintf(szbuf, "%s%s%s\0", /* debug information */
"The Debugging Version ", /* in a zero terminated */
"of Windows is NOT ", /* buffer. */
"installed.");
else
sprintf(szbuf, "%s%s%s\0",
"The Debugging Version ",
"of Windows is ",
"installed.");
MessageBox(hWnd, /* Output the buffer in */
(LPSTR)szbuf, /* a message box format */
(LPSTR)"GetSystemMetrics", /* so that the user can */
MB_OK); /* have a readable and */
} /* useful format. */
break;
case WM_CLOSE: {
DestroyWindow(hWnd);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return(DefWindowProc(hWnd, identifier, wParam, lParam));
break;
}
return(0L);
}