mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
71a3be2497
These settings are cached per-process (and invalidated by the global counter). This should reduce the number of registry reads performed by DefView and CFSFolder.
374 lines
13 KiB
C++
374 lines
13 KiB
C++
/*
|
|
* ReactOS Explorer
|
|
*
|
|
* Copyright 2006 - 2007 Thomas Weidenmueller <w3seek@reactos.org>
|
|
* 2015 Robert Naumann <gonzomdx@gmail.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
static void SetBitmap(HWND hwnd, HBITMAP* hbmp, UINT uImageId)
|
|
{
|
|
if (*hbmp)
|
|
DeleteObject(*hbmp);
|
|
|
|
*hbmp = (HBITMAP)LoadImageW(hExplorerInstance,
|
|
MAKEINTRESOURCEW(uImageId),
|
|
IMAGE_BITMAP,
|
|
0,
|
|
0,
|
|
LR_DEFAULTCOLOR);
|
|
|
|
if (*hbmp && hwnd)
|
|
{
|
|
BITMAP bm;
|
|
GetObject(*hbmp, sizeof(bm), &bm);
|
|
::SetWindowPos(hwnd, NULL, 0, 0, bm.bmWidth + 2, bm.bmHeight + 2,
|
|
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
|
|
SendMessage(hwnd, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)*hbmp);
|
|
}
|
|
|
|
}
|
|
|
|
class CTaskBarSettingsPage : public CPropertyPageImpl<CTaskBarSettingsPage>
|
|
{
|
|
private:
|
|
HBITMAP m_hbmpTaskbar;
|
|
HWND m_hwndTaskbar;
|
|
|
|
void _UpdateDialog()
|
|
{
|
|
BOOL bLock = IsDlgButtonChecked(IDC_TASKBARPROP_LOCK);
|
|
BOOL bHide = IsDlgButtonChecked(IDC_TASKBARPROP_HIDE);
|
|
BOOL bGroup = IsDlgButtonChecked(IDC_TASKBARPROP_GROUP);
|
|
BOOL bShowQL = IsDlgButtonChecked(IDC_TASKBARPROP_SHOWQL);
|
|
UINT uImageId;
|
|
|
|
HWND hwndTaskbarBitmap = GetDlgItem(IDC_TASKBARPROP_TASKBARBITMAP);
|
|
|
|
if (bHide)
|
|
uImageId = IDB_TASKBARPROP_AUTOHIDE;
|
|
else if (bLock && bGroup && bShowQL)
|
|
uImageId = IDB_TASKBARPROP_LOCK_GROUP_QL;
|
|
else if (bLock && !bGroup && !bShowQL)
|
|
uImageId = IDB_TASKBARPROP_LOCK_NOGROUP_NOQL;
|
|
else if (bLock && bGroup && !bShowQL)
|
|
uImageId = IDB_TASKBARPROP_LOCK_GROUP_NOQL;
|
|
else if (bLock && !bGroup && bShowQL)
|
|
uImageId = IDB_TASKBARPROP_LOCK_NOGROUP_QL;
|
|
else if (!bLock && !bGroup && !bShowQL)
|
|
uImageId = IDB_TASKBARPROP_NOLOCK_NOGROUP_NOQL;
|
|
else if (!bLock && bGroup && !bShowQL)
|
|
uImageId = IDB_TASKBARPROP_NOLOCK_GROUP_NOQL;
|
|
else if (!bLock && !bGroup && bShowQL)
|
|
uImageId = IDB_TASKBARPROP_NOLOCK_NOGROUP_QL;
|
|
else if (!bLock && bGroup && bShowQL)
|
|
uImageId = IDB_TASKBARPROP_NOLOCK_GROUP_QL;
|
|
|
|
SetBitmap(hwndTaskbarBitmap, &m_hbmpTaskbar, uImageId);
|
|
}
|
|
|
|
public:
|
|
enum { IDD = IDD_TASKBARPROP_TASKBAR };
|
|
|
|
BEGIN_MSG_MAP(CTaskBarSettingsPage)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_RANGE_HANDLER(IDC_TASKBARPROP_FIRST_CMD, IDC_TASKBARPROP_LAST_CMD, OnCtrlCommand)
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CTaskBarSettingsPage>)
|
|
END_MSG_MAP()
|
|
|
|
CTaskBarSettingsPage(HWND hwnd):
|
|
m_hbmpTaskbar(NULL),
|
|
m_hwndTaskbar(hwnd)
|
|
{
|
|
}
|
|
|
|
~CTaskBarSettingsPage()
|
|
{
|
|
if (m_hbmpTaskbar)
|
|
DeleteObject(m_hbmpTaskbar);
|
|
}
|
|
|
|
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
|
|
{
|
|
CheckDlgButton(IDC_TASKBARPROP_LOCK, g_TaskbarSettings.bLock ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_HIDE, g_TaskbarSettings.sr.AutoHide ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_ONTOP, g_TaskbarSettings.sr.AlwaysOnTop ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_GROUP, g_TaskbarSettings.bGroupButtons ? BST_CHECKED : BST_UNCHECKED);
|
|
//CheckDlgButton(IDC_TASKBARPROP_SHOWQL, g_TaskbarSettings.bShowQuickLaunch ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_SMALLICONS, g_TaskbarSettings.bSmallIcons ? BST_CHECKED : BST_UNCHECKED);
|
|
|
|
_UpdateDialog();
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnCtrlCommand(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled)
|
|
{
|
|
_UpdateDialog();
|
|
SetModified(TRUE);
|
|
return 0;
|
|
}
|
|
|
|
int OnApply()
|
|
{
|
|
TaskbarSettings newSettings = g_TaskbarSettings;
|
|
|
|
newSettings.bLock = IsDlgButtonChecked(IDC_TASKBARPROP_LOCK);
|
|
newSettings.sr.AutoHide = IsDlgButtonChecked(IDC_TASKBARPROP_HIDE);
|
|
newSettings.sr.AlwaysOnTop = IsDlgButtonChecked(IDC_TASKBARPROP_ONTOP);
|
|
newSettings.bGroupButtons = IsDlgButtonChecked(IDC_TASKBARPROP_GROUP);
|
|
//newSettings.bShowQuickLaunch = IsDlgButtonChecked(IDC_TASKBARPROP_SHOWQL);
|
|
newSettings.bSmallIcons = IsDlgButtonChecked(IDC_TASKBARPROP_SMALLICONS);
|
|
|
|
SendMessage(m_hwndTaskbar, TWM_SETTINGSCHANGED, 0, (LPARAM)&newSettings);
|
|
|
|
return PSNRET_NOERROR;
|
|
}
|
|
};
|
|
|
|
class CStartMenuSettingsPage : public CPropertyPageImpl<CStartMenuSettingsPage>
|
|
{
|
|
private:
|
|
HBITMAP m_hbmpStartBitmap;
|
|
|
|
void _UpdateDialog()
|
|
{
|
|
HWND hwndCustomizeClassic = GetDlgItem(IDC_TASKBARPROP_STARTMENUCLASSICCUST);
|
|
HWND hwndCustomizeModern = GetDlgItem(IDC_TASKBARPROP_STARTMENUCUST);
|
|
HWND hwndStartBitmap = GetDlgItem(IDC_TASKBARPROP_STARTMENU_BITMAP);
|
|
HWND hwndModernRadioBtn = GetDlgItem(IDC_TASKBARPROP_STARTMENU);
|
|
HWND hwndModernText = GetDlgItem(IDC_TASKBARPROP_STARTMENUMODERNTEXT);
|
|
BOOL policyNoSimpleStartMenu = SHRestricted(REST_NOSTARTPANEL) != 0;
|
|
BOOL bModern = FALSE;
|
|
|
|
/* If NoSimpleStartMenu, disable ability to use Modern Start Menu */
|
|
if (policyNoSimpleStartMenu)
|
|
{
|
|
/* Switch to classic */
|
|
CheckDlgButton(IDC_TASKBARPROP_STARTMENUCLASSIC, BST_CHECKED);
|
|
|
|
/* Disable radio button */
|
|
::EnableWindow(hwndModernRadioBtn, FALSE);
|
|
|
|
/* Hide controls related to modern menu */
|
|
::ShowWindow(hwndModernRadioBtn, SW_HIDE);
|
|
::ShowWindow(hwndModernText, SW_HIDE);
|
|
::ShowWindow(hwndCustomizeModern, SW_HIDE);
|
|
}
|
|
/* If no restrictions, then get bModern from dialog */
|
|
else
|
|
{
|
|
bModern = IsDlgButtonChecked(IDC_TASKBARPROP_STARTMENU);
|
|
}
|
|
|
|
::EnableWindow(hwndCustomizeModern, bModern);
|
|
::EnableWindow(hwndCustomizeClassic, !bModern);
|
|
|
|
UINT uImageId = bModern ? IDB_STARTPREVIEW : IDB_STARTPREVIEW_CLASSIC;
|
|
SetBitmap(hwndStartBitmap, &m_hbmpStartBitmap, uImageId);
|
|
}
|
|
|
|
public:
|
|
enum { IDD = IDD_TASKBARPROP_STARTMENU };
|
|
|
|
BEGIN_MSG_MAP(CTaskBarSettingsPage)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_ID_HANDLER(IDC_TASKBARPROP_STARTMENUCLASSICCUST, OnStartMenuCustomize)
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CStartMenuSettingsPage>)
|
|
END_MSG_MAP()
|
|
|
|
CStartMenuSettingsPage():
|
|
m_hbmpStartBitmap(NULL)
|
|
{
|
|
}
|
|
|
|
~CStartMenuSettingsPage()
|
|
{
|
|
if (m_hbmpStartBitmap)
|
|
DeleteObject(m_hbmpStartBitmap);
|
|
}
|
|
|
|
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
|
|
{
|
|
BOOL modern = SHELL_GetSetting(SSF_STARTPANELON, fStartPanelOn);
|
|
CheckDlgButton(modern ? IDC_TASKBARPROP_STARTMENU : IDC_TASKBARPROP_STARTMENUCLASSIC, BST_CHECKED);
|
|
_UpdateDialog();
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnStartMenuCustomize(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled)
|
|
{
|
|
ShowCustomizeClassic(hExplorerInstance, m_hWnd);
|
|
return 0;
|
|
}
|
|
|
|
int OnApply()
|
|
{
|
|
SHELLSTATE ss;
|
|
ss.fStartPanelOn = !IsDlgButtonChecked(IDC_TASKBARPROP_STARTMENUCLASSIC);
|
|
SHGetSetSettings(&ss, SSF_STARTPANELON, TRUE);
|
|
return PSNRET_NOERROR;
|
|
}
|
|
};
|
|
|
|
class CNotifySettingsPage : public CPropertyPageImpl<CNotifySettingsPage>
|
|
{
|
|
private:
|
|
HBITMAP m_hbmpTray;
|
|
HWND m_hwndTaskbar;
|
|
|
|
void _UpdateDialog()
|
|
{
|
|
BOOL bShowClock = IsDlgButtonChecked(IDC_TASKBARPROP_CLOCK);
|
|
BOOL bShowSeconds = IsDlgButtonChecked(IDC_TASKBARPROP_SECONDS);
|
|
BOOL bHideInactive = IsDlgButtonChecked(IDC_TASKBARPROP_HIDEICONS);
|
|
UINT uImageId;
|
|
|
|
HWND hwndCustomizeNotifyButton = GetDlgItem(IDC_TASKBARPROP_ICONCUST);
|
|
HWND hwndSeconds = GetDlgItem(IDC_TASKBARPROP_SECONDS);
|
|
HWND hwndTrayBitmap = GetDlgItem(IDC_TASKBARPROP_NOTIFICATIONBITMAP);
|
|
|
|
::EnableWindow(hwndCustomizeNotifyButton, bHideInactive);
|
|
::EnableWindow(hwndSeconds, bShowClock);
|
|
if (!bShowSeconds)
|
|
CheckDlgButton(IDC_TASKBARPROP_SECONDS, BST_UNCHECKED);
|
|
|
|
if (bHideInactive && bShowClock && bShowSeconds)
|
|
uImageId = IDB_SYSTRAYPROP_HIDE_SECONDS;
|
|
else if (bHideInactive && bShowClock && !bShowSeconds)
|
|
uImageId = IDB_SYSTRAYPROP_HIDE_CLOCK;
|
|
else if (bHideInactive && !bShowClock)
|
|
uImageId = IDB_SYSTRAYPROP_HIDE_NOCLOCK;
|
|
else if (!bHideInactive && bShowClock && bShowSeconds)
|
|
uImageId = IDB_SYSTRAYPROP_SHOW_SECONDS;
|
|
else if (!bHideInactive && bShowClock && !bShowSeconds)
|
|
uImageId = IDB_SYSTRAYPROP_SHOW_CLOCK;
|
|
else if (!bHideInactive && !bShowClock)
|
|
uImageId = IDB_SYSTRAYPROP_SHOW_NOCLOCK;
|
|
|
|
SetBitmap(hwndTrayBitmap, &m_hbmpTray, uImageId);
|
|
}
|
|
|
|
public:
|
|
enum { IDD = IDD_TASKBARPROP_NOTIFY };
|
|
|
|
BEGIN_MSG_MAP(CNotifySettingsPage)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_ID_HANDLER(IDC_TASKBARPROP_ICONCUST, OnCustomizeTrayIcons)
|
|
COMMAND_RANGE_HANDLER(IDC_TASKBARPROP_NOTIFY_FIRST_CMD, IDC_TASKBARPROP_NOTIFY_LAST_CMD, OnCtrlCommand)
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CNotifySettingsPage>)
|
|
END_MSG_MAP()
|
|
|
|
CNotifySettingsPage(HWND hwnd):
|
|
m_hbmpTray(NULL),
|
|
m_hwndTaskbar(hwnd)
|
|
{
|
|
}
|
|
|
|
~CNotifySettingsPage()
|
|
{
|
|
if (m_hbmpTray)
|
|
DeleteObject(m_hbmpTray);
|
|
}
|
|
|
|
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled)
|
|
{
|
|
CheckDlgButton(IDC_TASKBARPROP_CLOCK, (!g_TaskbarSettings.sr.HideClock) ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_SECONDS, g_TaskbarSettings.bShowSeconds ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_HIDEICONS, g_TaskbarSettings.bHideInactiveIcons ? BST_CHECKED : BST_UNCHECKED);
|
|
CheckDlgButton(IDC_TASKBARPROP_DESKTOP, g_TaskbarSettings.bShowDesktopButton ? BST_CHECKED : BST_UNCHECKED);
|
|
|
|
_UpdateDialog();
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnCustomizeTrayIcons(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled)
|
|
{
|
|
ShowCustomizeNotifyIcons(hExplorerInstance, m_hWnd);
|
|
return 0;
|
|
}
|
|
|
|
LRESULT OnCtrlCommand(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL &bHandled)
|
|
{
|
|
_UpdateDialog();
|
|
SetModified(TRUE);
|
|
return 0;
|
|
}
|
|
|
|
int OnApply()
|
|
{
|
|
TaskbarSettings newSettings = g_TaskbarSettings;
|
|
|
|
newSettings.sr.HideClock = !IsDlgButtonChecked(IDC_TASKBARPROP_CLOCK);
|
|
newSettings.bShowSeconds = IsDlgButtonChecked(IDC_TASKBARPROP_SECONDS);
|
|
newSettings.bHideInactiveIcons = IsDlgButtonChecked(IDC_TASKBARPROP_HIDEICONS);
|
|
newSettings.bShowDesktopButton = IsDlgButtonChecked(IDC_TASKBARPROP_DESKTOP);
|
|
|
|
SendMessage(m_hwndTaskbar, TWM_SETTINGSCHANGED, 0, (LPARAM)&newSettings);
|
|
|
|
return PSNRET_NOERROR;
|
|
}
|
|
};
|
|
|
|
static int CALLBACK
|
|
PropSheetProc(HWND hwndDlg, UINT uMsg, LPARAM lParam)
|
|
{
|
|
// NOTE: This callback is needed to set large icon correctly.
|
|
HICON hIcon;
|
|
switch (uMsg)
|
|
{
|
|
case PSCB_INITIALIZED:
|
|
{
|
|
hIcon = LoadIconW(hExplorerInstance, MAKEINTRESOURCEW(IDI_STARTMENU));
|
|
SendMessageW(hwndDlg, WM_SETICON, ICON_BIG, (LPARAM)hIcon);
|
|
break;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
VOID
|
|
DisplayTrayProperties(IN HWND hwndOwner, IN HWND hwndTaskbar)
|
|
{
|
|
PROPSHEETHEADER psh;
|
|
CSimpleArray<HPROPSHEETPAGE> hpsp;
|
|
CTaskBarSettingsPage tbSettingsPage(hwndTaskbar);
|
|
CStartMenuSettingsPage smSettingsPage;
|
|
CNotifySettingsPage naSettingsPage(hwndTaskbar);
|
|
CStringW caption;
|
|
|
|
caption.LoadStringW(IDS_TASKBAR_STARTMENU_PROP_CAPTION);
|
|
|
|
hpsp.Add(tbSettingsPage.Create());
|
|
hpsp.Add(smSettingsPage.Create());
|
|
hpsp.Add(naSettingsPage.Create());
|
|
|
|
ZeroMemory(&psh, sizeof(psh));
|
|
psh.dwSize = sizeof(psh);
|
|
psh.dwFlags = PSH_PROPTITLE | PSH_USEICONID | PSH_USECALLBACK;
|
|
psh.hwndParent = hwndOwner;
|
|
psh.hInstance = hExplorerInstance;
|
|
psh.pszIcon = MAKEINTRESOURCEW(IDI_STARTMENU);
|
|
psh.pszCaption = caption.GetString();
|
|
psh.nPages = hpsp.GetSize();
|
|
psh.nStartPage = 0;
|
|
psh.phpage = hpsp.GetData();
|
|
psh.pfnCallback = PropSheetProc;
|
|
|
|
PropertySheet(&psh);
|
|
}
|