Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

347 lines
8.1 KiB

/*++
Copyright (c) 1994-1998, Microsoft Corporation All rights reserved.
Module Name:
mouse.c
Abstract:
This module contains the main routines for the Mouse applet.
Revision History:
--*/
//
// Include Files.
//
#include "main.h"
#include "rc.h"
#include "applet.h"
#include <regstr.h>
#include <cplext.h>
#include "util.h"
//
// Constant Declarations.
//
#define MAX_PAGES 32
const HWPAGEINFO c_hpiMouse = {
// Mouse device class
{ 0x4d36e96fL, 0xe325, 0x11ce, { 0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18 } },
// Mouse troubleshooter command line
IDS_MOUSE_TSHOOT,
};
//
// Global Variables.
//
//
// Location of prop sheet hooks in the registry.
//
static const TCHAR sc_szRegMouse[] = REGSTR_PATH_CONTROLSFOLDER TEXT("\\Mouse");
//
// Function Prototypes.
//
INT_PTR CALLBACK
MouseButDlg(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam);
INT_PTR CALLBACK
MousePtrDlg(
HWND hwnd,
UINT msg,
WPARAM wParam,
LPARAM lParam);
INT_PTR CALLBACK
MouseMovDlg(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam);
/*
INT_PTR CALLBACK
MouseActivitiesDlg(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam);
*/
INT_PTR CALLBACK
MouseWheelDlg(
HWND hDlg,
UINT message,
WPARAM wParam,
LPARAM lParam);
static int
GetClInt( const TCHAR *p );
////////////////////////////////////////////////////////////////////////////
//
// _AddMousePropSheetPage
//
// Adds a property sheet page.
//
////////////////////////////////////////////////////////////////////////////
BOOL CALLBACK _AddMousePropSheetPage(
HPROPSHEETPAGE hpage,
LPARAM lParam)
{
PROPSHEETHEADER *ppsh = (PROPSHEETHEADER *)lParam;
if (hpage && (ppsh->nPages < MAX_PAGES))
{
ppsh->phpage[ppsh->nPages++] = hpage;
return (TRUE);
}
return (FALSE);
}
////////////////////////////////////////////////////////////////////////////
//
// MouseApplet
//
////////////////////////////////////////////////////////////////////////////
int MouseApplet(
HINSTANCE instance,
HWND parent,
LPCTSTR cmdline)
{
HPROPSHEETPAGE rPages[MAX_PAGES];
PROPSHEETPAGE psp;
PROPSHEETHEADER psh;
HPSXA hpsxa;
int Result;
//
// Make the initial page.
//
psh.dwSize = sizeof(psh);
psh.dwFlags = PSH_PROPTITLE;
psh.hwndParent = parent;
psh.hInstance = instance;
psh.pszCaption = MAKEINTRESOURCE(IDS_MOUSE_TITLE);
psh.nPages = 0;
psh.nStartPage = ( ( cmdline && *cmdline )? GetClInt( cmdline ) : 0 );
psh.phpage = rPages;
//
// Load any installed extensions.
//
hpsxa = SHCreatePropSheetExtArray(HKEY_LOCAL_MACHINE, sc_szRegMouse, 8);
//
// Add the Buttons page, giving the extensions a chance to replace it.
//
if (!hpsxa ||
!SHReplaceFromPropSheetExtArray( hpsxa,
CPLPAGE_MOUSE_BUTTONS,
_AddMousePropSheetPage,
(LPARAM)&psh ))
{
psp.dwSize = sizeof(psp);
psp.dwFlags = PSP_DEFAULT;
psp.hInstance = instance;
psp.pszTemplate = MAKEINTRESOURCE(DLG_MOUSE_BUTTONS);
psp.pfnDlgProc = MouseButDlg;
psp.lParam = 0;
_AddMousePropSheetPage(CreatePropertySheetPage(&psp), (LPARAM)&psh);
}
//
// Add the Pointers page (not replaceable).
//
psp.dwSize = sizeof(psp);
psp.dwFlags = PSP_DEFAULT;
psp.hInstance = instance;
psp.pszTemplate = MAKEINTRESOURCE(DLG_MOUSE_POINTER);
psp.pfnDlgProc = MousePtrDlg;
psp.lParam = 0;
_AddMousePropSheetPage(CreatePropertySheetPage(&psp), (LPARAM)&psh);
//
// Add the Motion page, giving the extensions a chance to replace it.
//
if (!hpsxa ||
!SHReplaceFromPropSheetExtArray( hpsxa,
CPLPAGE_MOUSE_PTRMOTION,
_AddMousePropSheetPage,
(LPARAM)&psh ))
{
psp.dwSize = sizeof(psp);
psp.dwFlags = PSP_DEFAULT;
psp.hInstance = instance;
psp.pszTemplate = MAKEINTRESOURCE(DLG_MOUSE_MOTION);
psp.pfnDlgProc = MouseMovDlg;
psp.lParam = 0;
_AddMousePropSheetPage(CreatePropertySheetPage(&psp), (LPARAM)&psh);
}
/*
/* Not added due to lack of time. ewatson (05/05/2000)
//
// Add the Activities page, giving the extensions a chance to replace it.
//
if (!hpsxa ||
!SHReplaceFromPropSheetExtArray( hpsxa,
CPLPAGE_MOUSE_ACTIVITIES,
_AddMousePropSheetPage,
(LPARAM)&psh ))
{
psp.dwSize = sizeof(psp);
psp.dwFlags = PSP_DEFAULT;
psp.hInstance = instance;
psp.pszTemplate = MAKEINTRESOURCE(DLG_MOUSE_ACTIVITIES);
psp.pfnDlgProc = MouseActivitiesDlg;
psp.lParam = 0;
_AddMousePropSheetPage(CreatePropertySheetPage(&psp), (LPARAM)&psh);
}
*/
//
// Add the Wheel page (if mouse with wheel is present)
// This page is replace-able.
//
if (!hpsxa ||
!SHReplaceFromPropSheetExtArray( hpsxa,
CPLPAGE_MOUSE_WHEEL,
_AddMousePropSheetPage,
(LPARAM)&psh ))
{
//
//If a Wheel mouse is present on the system, then display the Wheel property sheet page
//
if (GetSystemMetrics(SM_MOUSEWHEELPRESENT))
{
psp.dwSize = sizeof(psp);
psp.dwFlags = PSP_DEFAULT;
psp.hInstance = instance;
psp.pszTemplate = MAKEINTRESOURCE(DLG_MOUSE_WHEEL);
psp.pfnDlgProc = MouseWheelDlg;
psp.lParam = 0;
_AddMousePropSheetPage(CreatePropertySheetPage(&psp), (LPARAM)&psh);
}
}
_AddMousePropSheetPage(CreateHardwarePage(&c_hpiMouse), (LPARAM)&psh);
//
// Add any extra pages that the extensions want in there.
//
if (hpsxa)
{
UINT cutoff = psh.nPages;
UINT added = SHAddFromPropSheetExtArray( hpsxa,
_AddMousePropSheetPage,
(LPARAM)&psh );
if (psh.nStartPage >= cutoff)
{
psh.nStartPage += added;
}
}
//
// Invoke the Property Sheets.
//
switch (PropertySheet(&psh))
{
case ( ID_PSRESTARTWINDOWS ) :
{
Result = APPLET_RESTART;
break;
}
case ( ID_PSREBOOTSYSTEM ) :
{
Result = APPLET_REBOOT;
break;
}
default :
{
Result = 0;
break;
}
}
//
// Free any loaded extensions.
//
if (hpsxa)
{
SHDestroyPropSheetExtArray(hpsxa);
}
return (Result);
}
////////////////////////////////////////////////////////////////////////////
//
// GetClInt to determine command line argument.
//
////////////////////////////////////////////////////////////////////////////
static int
GetClInt( const TCHAR *p )
{
BOOL neg = FALSE;
int v = 0;
while( *p == TEXT(' ') )
p++; // skip spaces
if( *p == TEXT('-') ) // is it negative?
{
neg = TRUE; // yes, remember that
p++; // skip '-' char
}
// parse the absolute portion
while( ( *p >= TEXT('0') ) && ( *p <= TEXT('9') ) ) // digits only
v = v * 10 + *p++ - TEXT('0'); // accumulate the value
return ( neg? -v : v ); // return the result
}