Click here to Skip to main content
15,894,896 members
Articles / Programming Languages / C

Device Property Sheet Dialog

Rate me:
Please Sign up or sign in to vote.
4.82/5 (23 votes)
12 Aug 2004CPOL3 min read 134.7K   1.5K   33  
Showing property sheet dialog of a specific device.
// DevicePropertySheetDialogDlg.cpp : implementation file
//

#include "stdafx.h"
#include "DevicePropertySheetDialog.h"
#include "DevicePropertySheetDialogDlg.h"
#include "DeviceDef.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


#define REGSTR_VAL_MAX_HCID_LEN		1024 

#ifdef _UNICODE 
#define DeviceProperties_RunDLL  "DeviceProperties_RunDLLW"
typedef void (_stdcall *PDEVICEPROPERTIES)(
										   HWND hwndStub,
										   HINSTANCE hAppInstance,
										   LPWSTR lpCmdLine,
										   int    nCmdShow
										   );

#else
#define DeviceProperties_RunDLL  "DeviceProperties_RunDLLA"
typedef void (_stdcall *PDEVICEPROPERTIES)(
										   HWND hwndStub,
										   HINSTANCE hAppInstance,
										   LPSTR lpCmdLine,
										   int    nCmdShow
										   );
#endif
/////////////////////////////////////////////////////////////////////////////
// CDevicePropertySheetDialogDlg dialog

CDevicePropertySheetDialogDlg::CDevicePropertySheetDialogDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CDevicePropertySheetDialogDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDevicePropertySheetDialogDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CDevicePropertySheetDialogDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDevicePropertySheetDialogDlg)
	DDX_Control(pDX, IDC_DEVICE_LIST, m_Devices);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CDevicePropertySheetDialogDlg, CDialog)
	//{{AFX_MSG_MAP(CDevicePropertySheetDialogDlg)
	ON_WM_PAINT()
	ON_WM_QUERYDRAGICON()
	ON_BN_CLICKED(IDC_DEVICE_PROPERTY, OnDeviceProperty)
	ON_WM_DESTROY()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDevicePropertySheetDialogDlg message handlers

BOOL CDevicePropertySheetDialogDlg::OnInitDialog()
{
	CDialog::OnInitDialog();

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	//list all of installed devices
	EnumDevices();	
	
	return TRUE;  // return TRUE  unless you set the focus to a control
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CDevicePropertySheetDialogDlg::OnPaint() 
{
	if (IsIconic())
	{
		CPaintDC dc(this); // device context for painting

		SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

		// Center icon in client rectangle
		int cxIcon = GetSystemMetrics(SM_CXICON);
		int cyIcon = GetSystemMetrics(SM_CYICON);
		CRect rect;
		GetClientRect(&rect);
		int x = (rect.Width() - cxIcon + 1) / 2;
		int y = (rect.Height() - cyIcon + 1) / 2;

		// Draw the icon
		dc.DrawIcon(x, y, m_hIcon);
	}
	else
	{
		CDialog::OnPaint();
	}
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CDevicePropertySheetDialogDlg::OnQueryDragIcon()
{
	return (HCURSOR) m_hIcon;
}


void CDevicePropertySheetDialogDlg::EnumDevices()
{
	TCHAR LocalComputer[MAX_PATH];
    DWORD Size = MAX_PATH - 2;
    
	GetComputerName(LocalComputer + 2, &Size);
    LocalComputer[0] = _T('\\');
    LocalComputer[1] = _T('\\');
    
	CONFIGRET cr;
	cr = CM_Connect_Machine(LocalComputer, &m_hMachine);
	
	if (cr != CR_SUCCESS)
	{
		TCHAR Text[MAX_PATH];
		wsprintf(Text, _T("Machine Connection failed, cr= %lx(hex)\n"), cr);
		::MessageBox(m_hWnd, Text, _T("Error"), MB_ICONSTOP | MB_OK);
		return;
	}	
	
	//Set Image List 
	m_ImageListData.cbSize = sizeof(m_ImageListData);
	SetupDiGetClassImageList(&m_ImageListData);
	
	m_ImageList.Attach(m_ImageListData.ImageList);
	m_Devices.SetImageList(&m_ImageList, LVSIL_SMALL);
	m_Devices.SetImageList(&m_ImageList, LVSIL_NORMAL);
	
	DEVNODE dnRoot;
	CM_Locate_DevNode_Ex(&dnRoot, NULL, 0, m_hMachine);
	
	DEVNODE dnFirst;
	CM_Get_Child_Ex(&dnFirst, dnRoot, 0, m_hMachine);	
	
	RetrieveSubNodes(dnRoot, NULL, dnFirst);
	CM_Disconnect_Machine(m_hMachine);
}

void CDevicePropertySheetDialogDlg::RetrieveSubNodes(DEVINST parent, DEVINST sibling, DEVNODE dn)
{
	DEVNODE dnSibling, dnChild;
    
	do
    {
		CONFIGRET cr = CM_Get_Sibling_Ex(&dnSibling, dn, 0, m_hMachine);
		
		if (cr != CR_SUCCESS)
			dnSibling = NULL;
		
#ifdef UNICODE
		TCHAR GuidString[MAX_GUID_STRING_LEN];
#else
		UCHAR GuidString[MAX_GUID_STRING_LEN];
#endif
		
		ULONG Size = sizeof(GuidString);
		
		cr = CM_Get_DevNode_Registry_Property_Ex(dn, CM_DRP_CLASSGUID, NULL,
			GuidString, &Size, 0,  m_hMachine);
		
		if (cr == CR_SUCCESS)
		{
			GUID Guid;
			GuidString[MAX_GUID_STRING_LEN - 2] = _T('\0');
			UuidFromString(&GuidString[1], &Guid);
			int Index;
			if (SetupDiGetClassImageIndex(&m_ImageListData, &Guid, &Index))
			{
				CString DeviceName=GetDeviceName(dn);
				int itemNum=m_Devices.GetItemCount();
				m_Devices.InsertItem(itemNum, DeviceName, Index);
				m_Devices.SetItemData(itemNum, dn);
				EnumDeviceProperties(dn);
			}
		}
		
		cr = CM_Get_Child_Ex(&dnChild, dn, 0, m_hMachine);
		if (cr == CR_SUCCESS)
		{
			RetrieveSubNodes(dn, NULL, dnChild);
		}
		
		dn = dnSibling;
		
    } while (dn != NULL);
	
}


CString CDevicePropertySheetDialogDlg::GetDeviceName(DEVNODE DevNode)
{
	CString	strType;
    CString	strValue;
	CString DisplayName;
    LPTSTR	Buffer;
    
	int  BufferSize = MAX_PATH + MAX_DEVICE_ID_LEN;
    ULONG  BufferLen = BufferSize * sizeof(TCHAR);
    
	Buffer  = strValue.GetBuffer(BufferSize);
    if (CR_SUCCESS == CM_Get_DevNode_Registry_Property_Ex(DevNode,
		CM_DRP_FRIENDLYNAME, NULL,
		Buffer, &BufferLen, 0, m_hMachine))
    {
		DisplayName = Buffer;
    }
    else
    {
		BufferLen = BufferSize * sizeof(TCHAR);
		
		if (CR_SUCCESS == CM_Get_DevNode_Registry_Property_Ex(DevNode,
			CM_DRP_DEVICEDESC, NULL,
			Buffer, &BufferLen, 0, m_hMachine))
		{
			DisplayName = Buffer;
		}
		else
		{
			DisplayName=_T("Unknown Device");
		}
    }
	
	return DisplayName;
}

void CDevicePropertySheetDialogDlg::OnDestroy() 
{
	CDialog::OnDestroy();
	
	SetupDiDestroyClassImageList(&m_ImageListData);
}

void CDevicePropertySheetDialogDlg::EnumDeviceProperties(DEVNODE dn)
{
	int BufferSize = MAX_PATH + MAX_DEVICE_ID_LEN;
	TCHAR Buffer[MAX_PATH + MAX_DEVICE_ID_LEN];
	CString Temp;
	
	DeviceProperties Properties[26]=
	{
		ID_DEVICEID,            _T("Device ID: "), _T(""),
		ID_STATUS,              _T("Status: "), _T(""),
		ID_PROBLEM,             _T("Problem: "), _T(""),
		ID_SERVICE,             _T("Service: "), _T(""),
		ID_CAPABILITIES,        _T("Capabilities: "), _T(""),
		ID_CONFIGFLAGS,         _T("Config Flags: "), _T(""),
		ID_DEVNODE,             _T("DevNode: "), _T(""),
		ID_COMPATIBELID,        _T("Compatible IDs: "), _T(""),
		ID_CLASS,               _T("Class: "), _T(""),
		ID_INFOFILE,            _T("Inf file: "), _T(""),
		ID_MFG,                 _T("Manufacturer: "), _T(""),
		ID_HARDWAREID,          _T("Hardware IDs: "), _T(""),
		ID_COMPATIBLEID,        _T("Compatible IDs: "), _T(""),
		ID_CLASSGUID,           _T("Class Guid: "), _T(""),
		ID_LOCATION,            _T("Location: "), _T(""),
		ID_BUSNUMBER,           _T("Bus number: "), _T(""),
		ID_ENUMERATOR_NAME,     _T("Enumerator name: "), _T(""),
		ID_DEVICEDESC,          _T("Description: "), _T(""),
		ID_FRIENDLYNAME,        _T("Friendly name: "), _T(""),
		ID_DRIVER,              _T("Driver: "), _T(""),
		ID_PHYSICAL_DEVPATH,    _T("Physical Object Name: "), _T(""),
		ID_UI_NUMBER,           _T("UI number: "), _T(""),
		ID_UPPERFILTERS,        _T("Upper filters: "), _T(""),
		ID_LOWERFILTERS,        _T("Lower filters: "), _T(""),
		ID_BUSTYPEGUID,         _T("Bustype GUID: "), _T(""),
		ID_LEGACYBUSTYPE,       _T("Legacy bus type: "), _T("")
	};

	if (CM_Get_Device_ID_Ex(dn, Buffer, BufferSize, 0, m_hMachine) == CR_SUCCESS)
    {
		_tcscpy(Properties[ID_DEVICEID].PropertyValue, Buffer);
    }
	else
	{
		Temp=_T("Fail to retrieve Device ID");
		_tcscpy(Properties[ID_DEVICEID].PropertyValue, Temp);		
	}

    ULONG Status, Problem;

    if (CM_Get_DevNode_Status_Ex(&Status, &Problem, dn, 0, m_hMachine) == CR_SUCCESS)
    {
		Temp.Format(_T("0x%08x"), Status);
		_tcscpy(Properties[ID_STATUS].PropertyValue, Temp);

		Temp.Format(_T("0x%08x"), Problem);
		_tcscpy(Properties[ID_PROBLEM].PropertyValue, Temp);
    }
	else
	{
		Temp=_T("Fail to retrieve Device Status");
		_tcscpy(Properties[ID_STATUS].PropertyValue, Temp);

		Temp=_T("Fail to retrieve Device Problem");
		_tcscpy(Properties[ID_PROBLEM].PropertyValue, Temp);
	}


	Temp=GetProperty(dn, CM_DRP_SERVICE);
	_tcscpy(Properties[ID_SERVICE].PropertyValue, Temp);
	
    Temp=GetProperty(dn, CM_DRP_CAPABILITIES);
	_tcscpy(Properties[ID_CAPABILITIES].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_CONFIGFLAGS);
	_tcscpy(Properties[ID_CONFIGFLAGS].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_MFG);
	_tcscpy(Properties[ID_MFG].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_CLASS);
	_tcscpy(Properties[ID_CLASS].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_HARDWAREID);
	_tcscpy(Properties[ID_HARDWAREID].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_COMPATIBLEIDS);
	_tcscpy(Properties[ID_COMPATIBLEID].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_CLASSGUID);
	_tcscpy(Properties[ID_CLASSGUID].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_LOCATION_INFORMATION);
	_tcscpy(Properties[ID_LOCATION].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_BUSNUMBER);
	_tcscpy(Properties[ID_BUSNUMBER].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_ENUMERATOR_NAME);
	_tcscpy(Properties[ID_ENUMERATOR_NAME].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_DEVICEDESC);
	_tcscpy(Properties[ID_DEVICEDESC].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_FRIENDLYNAME);
	_tcscpy(Properties[ID_FRIENDLYNAME].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_DRIVER);
	_tcscpy(Properties[ID_DRIVER].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_PHYSICAL_DEVICE_OBJECT_NAME);
	_tcscpy(Properties[ID_PHYSICAL_DEVPATH].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_UI_NUMBER);
	_tcscpy(Properties[ID_UI_NUMBER].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_UPPERFILTERS);
	_tcscpy(Properties[ID_UPPERFILTERS].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_LOWERFILTERS);
    _tcscpy(Properties[ID_LOWERFILTERS].PropertyValue, Temp);
	
	Temp=GetProperty(dn, CM_DRP_BUSTYPEGUID);
	_tcscpy(Properties[ID_BUSTYPEGUID].PropertyValue, Temp);

    Temp=GetProperty(dn, CM_DRP_LEGACYBUSTYPE);
	_tcscpy(Properties[ID_LEGACYBUSTYPE].PropertyValue, Temp);

	DevicePropertiesDN dp;
	dp.dn=dn;
	memcpy(dp.Properties, Properties, sizeof(Properties));
	DeviceProperty.push_back(dp);
}


CString CDevicePropertySheetDialogDlg::GetProperty(DEVNODE dn, ULONG Property)
{
	CString Temp;
	
    TCHAR Buffer[REGSTR_VAL_MAX_HCID_LEN]=_T("");
    ULONG Type;
    ULONG Size = sizeof(Buffer);
    
	if (CM_Get_DevNode_Registry_Property_Ex(dn, Property,
							  &Type,
							  Buffer,
							  &Size,
							  0, m_hMachine) == CR_SUCCESS)
    {
		if (Type == REG_DWORD || Type == REG_MULTI_SZ || Type == REG_SZ )
		{
			if (Type == REG_DWORD)
			{
				DWORD Data = *((DWORD*)Buffer);
				wsprintf(Buffer, _T("0x%08x"), *((DWORD*) Buffer) );
			}
			else if (Type == REG_MULTI_SZ)
			{
				LPTSTR p = Buffer;
				while (_T('\0') != *p)
				{
					p += lstrlen(p);
					if (_T('\0') != *p)
					*p++ = _T(',');
				}
			}
		}
    }

	Temp=Buffer;
	return Temp;
}


void CDevicePropertySheetDialogDlg::OnDeviceProperty() 
{
	DEVNODE dn;
	
	for (int i=0; i<m_Devices.GetItemCount(); i++)
	{
		if (m_Devices.GetItemState(i, LVIS_SELECTED))	//item was selected
		{
			//AfxMessageBox(m_Devices.GetItemText(i, 0));
			dn=(DEVNODE) m_Devices.GetItemData(i);
			break;
		}
	}
	
	CString CommandLine;

	//Enumerate properties
	for (int j=0; j<DeviceProperty.size(); j++)
	{
		if (DeviceProperty[j].dn==dn)
		{
			CommandLine.Format(_T("/MachineName \"\" /DeviceID %s"),
						DeviceProperty[j].Properties[ID_DEVICEID].PropertyValue);
			
			//CommandLine.Format("/DeviceID \"%s\"",DeviceProperty[j].Properties[ID_DEVICEID].PropertyValue);
			//AfxMessageBox(CommandLine);
			break;
		}
	}
	
	PDEVICEPROPERTIES pDeviceProperties;
	HINSTANCE hInst=AfxGetInstanceHandle();
	HINSTANCE  hDevMgr = LoadLibrary(_TEXT("devmgr.dll"));		
	if (hDevMgr) 
	{
		pDeviceProperties = (PDEVICEPROPERTIES) GetProcAddress((HMODULE) hDevMgr, 
			DeviceProperties_RunDLL);
	}
	
	if (pDeviceProperties)
	{
		pDeviceProperties(m_hWnd, hInst, CommandLine.GetBuffer(0), SW_SHOW);
	}
	
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Solaris Electronics LLC
United Arab Emirates United Arab Emirates
I was born in Shiraz, a very beautiful famous city in Iran. I started programming when I was 12 years old with GWBASIC. Since now, I worked with various programming languages from Basic, Foxpro, C/C++, Visual Basic, Pascal to MATLAB and now Visual C++.
I graduated from Iran University of Science & Technology in Communication Eng., and now work as a system programmer for a telecommunication industry.
I wrote several programs and drivers for Synthesizers, Power Amplifiers, GPIB, GPS devices, Radio cards, Data Acquisition cards and so many related devices.
I'm author of several books like Learning C (primary and advanced), Learning Visual Basic, API application for VB, Teach Yourself Object Oriented Programming (OOP) and etc.
I'm winner of January, May, August 2003 and April 2005 best article of month competition, my articles are:


You can see list of my articles, by clicking here


Comments and Discussions