|
|
#include "stdafx.h"
#include "grpinfo.h"
#pragma hdrstop
// Names of groups retrieved by SID
WCHAR g_szPowerUsers[MAX_GROUP + 1]; WCHAR g_szUsers[MAX_GROUP + 1];
/**************************************************************
CGroupPageBase Implementation
Functions common to both the group prop page and the group wizard page. **************************************************************/ CGroupPageBase::CGroupPageBase(CUserInfo* pUserInfo, CDPA<CGroupInfo>* pGroupList) { m_pUserInfo = pUserInfo; m_pGroupList = pGroupList; m_hBoldFont = NULL; // Load names for local groups based on SID
if (FAILED(LookupLocalGroupName(DOMAIN_ALIAS_RID_POWER_USERS, g_szPowerUsers, ARRAYSIZE(g_szPowerUsers)))) { *g_szPowerUsers = L'\0'; }
if (FAILED(LookupLocalGroupName(DOMAIN_ALIAS_RID_USERS, g_szUsers, ARRAYSIZE(g_szUsers)))) { *g_szUsers = L'\0'; } } INT_PTR CGroupPageBase::HandleGroupMessage(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { HANDLE_MSG(hwndDlg, WM_INITDIALOG, OnInitDialog); HANDLE_MSG(hwndDlg, WM_COMMAND, OnCommand); };
return FALSE; }
void CGroupPageBase::InitializeLocalGroupCombo(HWND hwndCombo) { ComboBox_ResetContent(hwndCombo);
// Add all of the groups in the list to the box
for(int i = 0; i < m_pGroupList->GetPtrCount(); i ++) { CGroupInfo* pGroupInfo = m_pGroupList->GetPtr(i); int index = ComboBox_AddString(hwndCombo, pGroupInfo->m_szGroup); ComboBox_SetItemData(hwndCombo, index, pGroupInfo->m_szComment); }
TCHAR szSelectGroup[MAX_GROUP + 1];
// Load a local group name from the resources to select by default
// dsheldon: this will fail for MUI...not critical though
LoadString(g_hinst, IDS_USR_DEFAULTGROUP, szSelectGroup, ARRAYSIZE(szSelectGroup));
if (ComboBox_SelectString(hwndCombo, 0, szSelectGroup) == CB_ERR) ComboBox_SetCurSel(hwndCombo, 0); }
void CGroupPageBase::SetGroupDescription(HWND hwndCombo, HWND hwndEdit) { int iItem = ComboBox_GetCurSel(hwndCombo); TCHAR* pszDescription = (TCHAR*) ComboBox_GetItemData(hwndCombo, iItem); SetWindowText(hwndEdit, pszDescription); }
BOOL CGroupPageBase::OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam) { // Fill in the local group combo box
HWND hwndCombo = GetDlgItem(hwnd, IDC_GROUPS); InitializeLocalGroupCombo(hwndCombo);
HWND hwndEdit = GetDlgItem(hwnd, IDC_GROUPDESC); if ((NULL != m_pUserInfo) && (m_pUserInfo->m_szGroups[0] != TEXT('\0'))) { // Select the local group corresponding to the first one in the user's groups
// string
TCHAR szSelect[MAX_GROUP + 1];
// Copy the string since we might shorten our copy
StrCpyN(szSelect, m_pUserInfo->m_szGroups, ARRAYSIZE(szSelect)); TCHAR* pchEndOfFirst = StrChr(szSelect, TEXT(';'));
if (pchEndOfFirst) { // More than one group; we'll fix that!
*pchEndOfFirst = TEXT('\0'); }
SelectGroup(hwnd, szSelect); } else { // Select the power user group by default
SendDlgItemMessage(hwnd, IDC_POWERUSERS, BM_SETCHECK, (WPARAM) BST_CHECKED, 0);
OnRadioChanged(hwnd, IDC_POWERUSERS); } SetGroupDescription(hwndCombo, hwndEdit);
// Bold the group names
BoldGroupNames(hwnd);
return TRUE; }
BOOL CGroupPageBase::GetSelectedGroup(HWND hwnd, LPTSTR pszGroupOut, DWORD cchGroup, CUserInfo::GROUPPSEUDONYM* pgsOut) { *pgsOut = CUserInfo::USEGROUPNAME;
UINT idString = 0; if (BST_CHECKED == Button_GetCheck(GetDlgItem(hwnd, IDC_POWERUSERS))) { StrCpyN(pszGroupOut, g_szPowerUsers, cchGroup); *pgsOut = CUserInfo::STANDARD; } else if (BST_CHECKED == Button_GetCheck(GetDlgItem(hwnd, IDC_USERS))) { StrCpyN(pszGroupOut, g_szUsers, cchGroup); *pgsOut = CUserInfo::RESTRICTED; } else { // 'other' must be selected; get the string from the dropdown
GetWindowText(GetDlgItem(hwnd, IDC_GROUPS), pszGroupOut, cchGroup); }
return TRUE; }
// Returns IDC_OTHER if no radio button id corresponds to the group
UINT CGroupPageBase::RadioIdForGroup(LPCTSTR pszGroup) { UINT uiRadio = IDC_OTHER; // Assume IDC_OTHER to start
if (0 == StrCmpI(pszGroup, g_szPowerUsers)) { uiRadio = IDC_POWERUSERS; } else if (0 == StrCmpI(pszGroup, g_szUsers)) { uiRadio = IDC_USERS; }
return uiRadio; }
// Disable/update as appropriate when radio selection changes
void CGroupPageBase::OnRadioChanged(HWND hwnd, UINT idRadio) { BOOL fEnableGroupDropdown = (IDC_OTHER == idRadio);
EnableWindow(GetDlgItem(hwnd, IDC_GROUPS), fEnableGroupDropdown); EnableWindow(GetDlgItem(hwnd, IDC_OTHER_STATIC), fEnableGroupDropdown);
ShowWindow(GetDlgItem(hwnd, IDC_GROUPDESC), fEnableGroupDropdown ? SW_SHOW : SW_HIDE); }
void CGroupPageBase::SelectGroup(HWND hwnd, LPCTSTR pszSelect) { // Always select the group in the 'other' dropdown
ComboBox_SelectString(GetDlgItem(hwnd, IDC_GROUPS), -1, pszSelect); // Check the appropriate radio button
UINT idRadio = RadioIdForGroup(pszSelect); Button_SetCheck(GetDlgItem(hwnd, idRadio), BST_CHECKED);
OnRadioChanged(hwnd, idRadio); }
void CGroupPageBase::BoldGroupNames(HWND hwnd) { HWND hwndPowerUsers = GetDlgItem(hwnd, IDC_POWERUSERS);
HFONT hfont = (HFONT) SendMessage(hwndPowerUsers, WM_GETFONT, 0, 0);
if (hfont) { LOGFONT lf; if (FALSE != GetObject((HGDIOBJ) hfont, sizeof(lf), &lf)) { lf.lfWeight = FW_BOLD;
m_hBoldFont = CreateFontIndirect(&lf);
if (NULL != m_hBoldFont) { // Set the font
SendMessage(hwndPowerUsers, WM_SETFONT, (WPARAM) m_hBoldFont, 0);
SendDlgItemMessage(hwnd, IDC_USERS, WM_SETFONT, (WPARAM) m_hBoldFont, 0);
SendDlgItemMessage(hwnd, IDC_OTHER, WM_SETFONT, (WPARAM) m_hBoldFont, 0); } } } }
BOOL CGroupPageBase::OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify) { switch(codeNotify) { case CBN_SELCHANGE: SetGroupDescription(hwndCtl, GetDlgItem(hwnd, IDC_GROUPDESC)); PropSheet_Changed(GetParent(hwnd), hwnd); break;
case BN_CLICKED: // Handle radio clicks
switch (id) { case IDC_POWERUSERS: case IDC_USERS: case IDC_OTHER: PropSheet_Changed(GetParent(hwnd), hwnd); OnRadioChanged(hwnd, id); } break; } return FALSE; }
/**************************************************************
CGroupWizardPage Implementation **************************************************************/
INT_PTR CGroupWizardPage::DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { HANDLE_MSG(hwndDlg, WM_INITDIALOG, OnInitDialog); HANDLE_MSG(hwndDlg, WM_NOTIFY, OnNotify); HANDLE_MSG(hwndDlg, WM_COMMAND, OnCommand); }
return FALSE; }
BOOL CGroupWizardPage::OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh) { switch (pnmh->code) { case PSN_SETACTIVE: { PropSheet_SetWizButtons(pnmh->hwndFrom, PSWIZB_BACK | PSWIZB_FINISH); SetWindowLongPtr(hwnd, DWLP_MSGRESULT, 0); return TRUE; }
case PSN_WIZFINISH: { // Read in the local group name
CUserInfo::GROUPPSEUDONYM gs; GetSelectedGroup(hwnd, m_pUserInfo->m_szGroups, ARRAYSIZE(m_pUserInfo->m_szGroups), &gs);
// Don't close wizard by default
LONG_PTR finishResult = (LONG_PTR) hwnd;
CWaitCursor cur; if (SUCCEEDED(m_pUserInfo->Create(hwnd, gs))) { m_pUserInfo->m_fHaveExtraUserInfo = FALSE; // Close wizard
finishResult = 0; }
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, finishResult); return TRUE; } } return FALSE; }
/**************************************************************
CGroupPropertyPage Implementation **************************************************************/
INT_PTR CGroupPropertyPage::DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { HANDLE_MSG(hwndDlg, WM_INITDIALOG, OnInitDialog); HANDLE_MSG(hwndDlg, WM_NOTIFY, OnNotify); HANDLE_MSG(hwndDlg, WM_COMMAND, OnCommand); }
return FALSE; }
BOOL CGroupPropertyPage::OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh) { switch(pnmh->code) { case PSN_APPLY: { // Check to see if the group needs updating on Apply
TCHAR szTemp[MAX_GROUP + 1];
// Read in the local group name
CUserInfo::GROUPPSEUDONYM gs; GetSelectedGroup(hwnd, szTemp, ARRAYSIZE(szTemp), &gs);
if (StrCmp(szTemp, m_pUserInfo->m_szGroups) != 0) { HRESULT hr = m_pUserInfo->UpdateGroup(hwnd, szTemp, gs);
if (SUCCEEDED(hr)) { SetWindowLongPtr(hwnd, DWLP_MSGRESULT, PSNRET_NOERROR); } else { TCHAR szDomainUser[MAX_DOMAIN + MAX_USER + 2]; MakeDomainUserString(m_pUserInfo->m_szDomain, m_pUserInfo->m_szUsername, szDomainUser, ARRAYSIZE(szDomainUser));
::DisplayFormatMessage(hwnd, IDS_USR_APPLET_CAPTION, IDS_USR_UPDATE_GROUP_ERROR, MB_ICONERROR | MB_OK, szDomainUser);
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, PSNRET_INVALID_NOCHANGEPAGE); } } } break;
default: return FALSE; } return TRUE; }
|