2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* Project 64 - A Nintendo 64 emulator. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2010-06-07 02:23:58 +00:00
|
|
|
#include "stdafx.h"
|
2008-11-14 20:51:06 +00:00
|
|
|
#include "Settings Page.h"
|
|
|
|
|
|
|
|
COptionsShortCutsPage::COptionsShortCutsPage (HWND hParent, const RECT & rcDispay ) :
|
|
|
|
m_EnableReset(false)
|
|
|
|
{
|
|
|
|
if (!Create(hParent,rcDispay))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
SetDlgItemTextW(m_hWnd, IDC_S_CPU_STATE,GS(ACCEL_CPUSTATE_TITLE));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_MENU_ITEM_TEXT,GS(ACCEL_MENUITEM_TITLE));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_S_CURRENT_KEYS,GS(ACCEL_CURRENTKEYS_TITLE));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_S_SELECT_SHORT,GS(ACCEL_SELKEY_TITLE));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_S_CURRENT_ASSIGN,GS(ACCEL_ASSIGNEDTO_TITLE));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_ASSIGN,GS(ACCEL_ASSIGN_BTN));
|
|
|
|
SetDlgItemTextW(m_hWnd, IDC_REMOVE,GS(ACCEL_REMOVE_BTN));
|
2008-11-14 20:51:06 +00:00
|
|
|
|
|
|
|
m_CreateNewShortCut.AttachToDlgItem(m_hWnd,IDC_S_SELECT_SHORT);
|
|
|
|
m_CpuState.Attach(GetDlgItem(IDC_C_CPU_STATE));
|
|
|
|
m_MenuItems.Attach(GetDlgItem(IDC_MENU_ITEMS));
|
|
|
|
m_CurrentKeys.Attach(GetDlgItem(IDC_CURRENT_KEYS));
|
|
|
|
m_VirtualKeyList.Attach(GetDlgItem(IDC_VIRTUALKEY));
|
|
|
|
|
|
|
|
m_MenuItems.ModifyStyle(0,TVS_SHOWSELALWAYS);
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
m_CpuState.SetItemData(m_CpuState.AddStringW(GS(ACCEL_CPUSTATE_1)),CMenuShortCutKey::GAME_NOT_RUNNING);
|
|
|
|
m_CpuState.SetItemData(m_CpuState.AddStringW(GS(ACCEL_CPUSTATE_3)),CMenuShortCutKey::GAME_RUNNING_WINDOW);
|
|
|
|
m_CpuState.SetItemData(m_CpuState.AddStringW(GS(ACCEL_CPUSTATE_4)),CMenuShortCutKey::GAME_RUNNING_FULLSCREEN);
|
2008-11-14 20:51:06 +00:00
|
|
|
m_CpuState.SetCurSel(0);
|
|
|
|
|
|
|
|
int VirtualKeyListSize;
|
|
|
|
VIRTUAL_KEY * VirtualKeyList = CMenuShortCutKey::VirtualKeyList(VirtualKeyListSize);
|
|
|
|
for (int count = 0; count < VirtualKeyListSize; count++)
|
|
|
|
{
|
|
|
|
m_VirtualKeyList.SetItemData(m_VirtualKeyList.AddString(VirtualKeyList[count].Name),VirtualKeyList[count].Key);
|
|
|
|
}
|
|
|
|
|
|
|
|
OnCpuStateChanged(LBN_SELCHANGE,IDC_C_CPU_STATE,GetDlgItem(IDC_C_CPU_STATE));
|
|
|
|
CheckResetEnable();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::CheckResetEnable ( void )
|
|
|
|
{
|
|
|
|
MSC_MAP & ShortCuts = m_ShortCuts.GetShortCuts();
|
|
|
|
for (MSC_MAP::iterator Item = ShortCuts.begin(); Item != ShortCuts.end(); Item++)
|
|
|
|
{
|
|
|
|
const SHORTCUT_KEY_LIST & ShortCutList = Item->second.GetAccelItems();
|
|
|
|
for (SHORTCUT_KEY_LIST::const_iterator ShortCut_item = ShortCutList.begin(); ShortCut_item != ShortCutList.end(); ShortCut_item ++)
|
|
|
|
{
|
|
|
|
if (!ShortCut_item->Inactive() && !ShortCut_item->UserAdded())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
m_EnableReset = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
m_EnableReset = false;
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::OnCpuStateChanged(UINT /*Code*/, int /*id*/, HWND /*ctl*/)
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
ACCESS_MODE AccessLevel = (ACCESS_MODE)m_CpuState.GetItemData(m_CpuState.GetCurSel());
|
|
|
|
|
|
|
|
MSC_MAP & ShortCuts = m_ShortCuts.GetShortCuts();
|
|
|
|
m_MenuItems.DeleteAllItems();
|
|
|
|
|
|
|
|
for (MSC_MAP::iterator Item = ShortCuts.begin(); Item != ShortCuts.end(); Item++)
|
|
|
|
{
|
|
|
|
ACCESS_MODE ItemMode = Item->second.AccessMode();
|
|
|
|
if ((ItemMode & AccessLevel) != AccessLevel )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
//find Parent
|
|
|
|
HTREEITEM hParent = m_MenuItems.GetChildItem(TVI_ROOT);
|
|
|
|
while (hParent)
|
|
|
|
{
|
2012-10-05 09:14:32 +00:00
|
|
|
if (m_MenuItems.GetItemData(hParent) == (DWORD_PTR)Item->second.Section())
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
hParent = m_MenuItems.GetNextSiblingItem(hParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hParent == NULL)
|
|
|
|
{
|
2015-03-04 09:36:08 +00:00
|
|
|
hParent = m_MenuItems.InsertItemW(TVIF_TEXT | TVIF_PARAM,GS(Item->second.Section()),0,0,0,0, Item->second.Section(),TVI_ROOT,TVI_LAST);
|
2008-11-14 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 21:39:08 +00:00
|
|
|
wstring str = GS(Item->second.Title());
|
|
|
|
std::wstring::size_type pos = str.find( L"&" );
|
|
|
|
while ( pos != std::wstring::npos )
|
|
|
|
{
|
|
|
|
str.replace( pos, 1, L"" );
|
|
|
|
pos = str.find( L"&", pos );
|
|
|
|
}
|
|
|
|
pos = str.find( L"..." );
|
|
|
|
while ( pos != std::wstring::npos )
|
|
|
|
{
|
|
|
|
str.replace( pos, 3, L"" );
|
|
|
|
pos = str.find( L"...", pos );
|
|
|
|
}
|
2008-11-14 20:51:06 +00:00
|
|
|
|
2015-03-12 21:39:08 +00:00
|
|
|
HTREEITEM hItem = m_MenuItems.InsertItemW(TVIF_TEXT | TVIF_PARAM,str.c_str(),0,0,0,0, (DWORD_PTR)&Item->second,hParent,TVI_LAST);
|
2008-11-14 20:51:06 +00:00
|
|
|
|
|
|
|
const SHORTCUT_KEY_LIST & ShortCutList = Item->second.GetAccelItems();
|
|
|
|
for (SHORTCUT_KEY_LIST::const_iterator ShortCut_item = ShortCutList.begin(); ShortCut_item != ShortCutList.end(); ShortCut_item ++)
|
|
|
|
{
|
|
|
|
if (!ShortCut_item->Inactive() && !ShortCut_item->UserAdded())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
m_MenuItems.SetItemState(hItem,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
m_MenuItems.SetItemState(hParent,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::OnRemoveClicked ( UINT /*Code*/, int /*id*/, HWND /*ctl*/ )
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
HTREEITEM hSelectedItem = m_MenuItems.GetSelectedItem();
|
|
|
|
if (hSelectedItem == NULL)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_SEL_SHORTCUT));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
HTREEITEM hParent = m_MenuItems.GetParentItem(hSelectedItem);
|
|
|
|
if (hParent == NULL)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_SEL_SHORTCUT));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CShortCutItem * ShortCut = (CShortCutItem *)m_MenuItems.GetItemData(hSelectedItem);
|
|
|
|
|
|
|
|
//Make sure an item is selected
|
|
|
|
int index = m_CurrentKeys.GetCurSel();
|
|
|
|
if (index < 0)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_SEL_SHORTCUT));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
ShortCut->RemoveItem((CMenuShortCutKey *)m_CurrentKeys.GetItemData(index));
|
|
|
|
m_MenuItems.SetItemState(hSelectedItem,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
m_MenuItems.SetItemState(hParent,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
m_EnableReset = true;
|
|
|
|
|
|
|
|
RefreshShortCutOptions(hSelectedItem);
|
|
|
|
SendMessage(GetParent(),PSM_CHANGED ,(WPARAM)m_hWnd,0);
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::OnDetectKeyClicked ( UINT /*Code*/, int /*id*/, HWND /*ctl*/ )
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
CloseHandle(CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)stInputGetKeys,this,0,NULL));
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::OnAssignClicked ( UINT /*Code*/, int /*id*/, HWND /*ctl*/ )
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
//Get the virtual key info
|
|
|
|
int index = m_VirtualKeyList.GetCurSel();
|
|
|
|
if (index < 0)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_SHORTCUT_SEL));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-22 21:43:42 +00:00
|
|
|
WORD key = (WORD)SendDlgItemMessage(IDC_VIRTUALKEY,CB_GETITEMDATA,index,0);
|
2008-11-14 20:51:06 +00:00
|
|
|
bool bCtrl = (SendDlgItemMessage(IDC_CTL,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
bool bAlt = (SendDlgItemMessage(IDC_ALT,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
bool bShift = (SendDlgItemMessage(IDC_SHIFT,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
|
|
|
|
ACCESS_MODE AccessLevel = (ACCESS_MODE)m_CpuState.GetItemData(m_CpuState.GetCurSel());
|
|
|
|
|
|
|
|
|
|
|
|
HTREEITEM hSelectedItem = m_MenuItems.GetSelectedItem();
|
|
|
|
if (hSelectedItem == NULL)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_MENUITEM_SEL));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
HTREEITEM hParent = m_MenuItems.GetParentItem(hSelectedItem);
|
|
|
|
if (hParent == NULL)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_NO_MENUITEM_SEL));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CShortCutItem * ShortCut = (CShortCutItem *)m_MenuItems.GetItemData(hSelectedItem);
|
|
|
|
|
|
|
|
LanguageStringID strid = m_ShortCuts.GetMenuItemName(key,bCtrl,bAlt,bShift,AccessLevel);
|
|
|
|
if (strid != EMPTY_STRING)
|
|
|
|
{
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify->DisplayError(GS(MSG_MENUITEM_ASSIGNED));
|
2008-11-14 20:51:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
ShortCut->AddShortCut(key,bCtrl,bAlt,bShift,AccessLevel,true,false);
|
|
|
|
m_MenuItems.SetItemState(hSelectedItem,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
m_MenuItems.SetItemState(hParent,TVIS_BOLD,TVIS_BOLD);
|
|
|
|
m_EnableReset = true;
|
|
|
|
|
|
|
|
RefreshShortCutOptions(hSelectedItem);
|
|
|
|
SendMessage(GetParent(),PSM_CHANGED ,(WPARAM)m_hWnd,0);
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::OnShortCutChanged ( UINT /*Code*/, int /*id*/, HWND /*ctl*/ )
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
//Get the virtual key info
|
|
|
|
int index = m_VirtualKeyList.GetCurSel();
|
|
|
|
if (index < 0) { return; }
|
2010-09-22 21:43:42 +00:00
|
|
|
WORD key = (WORD)m_VirtualKeyList.GetItemData(index);
|
2008-11-14 20:51:06 +00:00
|
|
|
bool bCtrl = (SendDlgItemMessage(IDC_CTL,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
bool bAlt = (SendDlgItemMessage(IDC_ALT,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
bool bShift = (SendDlgItemMessage(IDC_SHIFT,BM_GETCHECK, 0,0) == BST_CHECKED);
|
|
|
|
|
|
|
|
ACCESS_MODE AccessLevel = (ACCESS_MODE)m_CpuState.GetItemData(m_CpuState.GetCurSel());
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
stdstr str;
|
|
|
|
str.FromUTF16(GS(m_ShortCuts.GetMenuItemName(key,bCtrl,bAlt,bShift,AccessLevel)));
|
2008-11-14 20:51:06 +00:00
|
|
|
if (str.length() > 0)
|
|
|
|
{
|
|
|
|
str.resize(std::remove(str.begin(), str.end(), '&') - str.begin());
|
|
|
|
} else {
|
|
|
|
str = "None";
|
|
|
|
}
|
|
|
|
SetDlgItemText(IDC_ASSIGNED_MENU_ITEM,str.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
LRESULT COptionsShortCutsPage::OnMenuItemChanged ( LPNMHDR lpnmh )
|
|
|
|
{
|
|
|
|
RefreshShortCutOptions(((LPNMTREEVIEW)lpnmh)->itemNew.hItem);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::RefreshShortCutOptions ( HTREEITEM hItem )
|
|
|
|
{
|
|
|
|
HTREEITEM hParent = m_MenuItems.GetParentItem(hItem);
|
|
|
|
if (hParent == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ACCESS_MODE AccessLevel = (ACCESS_MODE)m_CpuState.GetItemData(m_CpuState.GetCurSel());
|
|
|
|
CShortCutItem * ShortCut = (CShortCutItem *)m_MenuItems.GetItemData(hItem);
|
|
|
|
|
|
|
|
m_CurrentKeys.ResetContent();
|
|
|
|
|
|
|
|
const SHORTCUT_KEY_LIST & ShortCutList = ShortCut->GetAccelItems();
|
|
|
|
for (SHORTCUT_KEY_LIST::const_iterator ShortCut_item = ShortCutList.begin(); ShortCut_item != ShortCutList.end(); ShortCut_item ++)
|
|
|
|
{
|
|
|
|
if (ShortCut_item->Inactive())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ACCESS_MODE ItemMode = ShortCut_item->AccessMode();
|
|
|
|
if ((ItemMode & AccessLevel) != AccessLevel )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
stdstr Name = ShortCut_item->Name();
|
|
|
|
m_CurrentKeys.SetItemData(m_CurrentKeys.AddString(Name.c_str()),(DWORD_PTR)&*ShortCut_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
BOOL CALLBACK KeyPromptDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM /*lParam*/)
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
switch (uMsg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam))
|
|
|
|
{
|
|
|
|
case IDCANCEL:
|
|
|
|
SetForegroundWindow(GetParent(hDlg));
|
|
|
|
DestroyWindow(hDlg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::InputGetKeys (void)
|
|
|
|
{
|
2010-09-22 21:43:42 +00:00
|
|
|
HWND hKeyDlg = CreateDialogParam(GetModuleHandle(NULL),MAKEINTRESOURCE(IDD_Key_Prompt),m_hWnd,KeyPromptDlgProc,(LPARAM)::GetDlgItem(m_hWnd,IDC_VIRTUALKEY));
|
2008-11-14 20:51:06 +00:00
|
|
|
::EnableWindow(GetParent(),false);
|
|
|
|
MSG msg;
|
|
|
|
|
|
|
|
for(bool fDone=false;!fDone;MsgWaitForMultipleObjects(0,NULL,false,45,QS_ALLINPUT)) {
|
|
|
|
while(PeekMessage(&msg,0,0,0,PM_REMOVE)) {
|
|
|
|
if(msg.message == WM_QUIT) {
|
|
|
|
fDone = true;
|
|
|
|
::PostMessage(NULL,WM_QUIT,0,0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (msg.message == WM_KEYDOWN || msg.message == WM_SYSKEYDOWN ) {
|
|
|
|
int nVirtKey = (int)msg.wParam;
|
|
|
|
if (nVirtKey == VK_SHIFT) { continue; }
|
|
|
|
if (nVirtKey == VK_CONTROL) { continue; }
|
|
|
|
if (nVirtKey == VK_MENU) { continue; }
|
2012-10-05 09:14:32 +00:00
|
|
|
SendDlgItemMessage(IDC_VIRTUALKEY,CB_SETCURSEL,(WPARAM)-1,0);
|
2008-11-14 20:51:06 +00:00
|
|
|
for (int count = 0; count < SendDlgItemMessage(IDC_VIRTUALKEY,CB_GETCOUNT,0,0); count++) {
|
|
|
|
int Data = (int)SendDlgItemMessage(IDC_VIRTUALKEY,CB_GETITEMDATA,count,0);
|
|
|
|
if (Data != nVirtKey) { continue; }
|
|
|
|
SendDlgItemMessage(IDC_VIRTUALKEY,CB_SETCURSEL,count,0);
|
|
|
|
SendDlgItemMessage(IDC_CTL,BM_SETCHECK, (GetKeyState(VK_CONTROL) & 0x80) != 0 ? BST_CHECKED : BST_UNCHECKED,0);
|
|
|
|
SendDlgItemMessage(IDC_ALT,BM_SETCHECK, (GetKeyState(VK_MENU) & 0x80) != 0 ? BST_CHECKED : BST_UNCHECKED,0);
|
|
|
|
SendDlgItemMessage(IDC_SHIFT,BM_SETCHECK, (GetKeyState(VK_SHIFT) & 0x80) != 0 ? BST_CHECKED : BST_UNCHECKED,0);
|
2010-09-22 21:43:42 +00:00
|
|
|
SendMessage(WM_COMMAND,MAKELPARAM(IDC_VIRTUALKEY,LBN_SELCHANGE),(LPARAM)::GetDlgItem(m_hWnd,IDC_VIRTUALKEY));
|
2008-11-14 20:51:06 +00:00
|
|
|
SetForegroundWindow(GetParent());
|
|
|
|
::DestroyWindow(hKeyDlg);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(!::IsDialogMessage(hKeyDlg,&msg)) {
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!::IsWindow(hKeyDlg)) { fDone = true; }
|
|
|
|
|
|
|
|
}
|
|
|
|
::SetFocus(GetParent());
|
|
|
|
::EnableWindow(GetParent(),true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::HidePage()
|
|
|
|
{
|
|
|
|
ShowWindow(SW_HIDE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::ShowPage()
|
|
|
|
{
|
|
|
|
ShowWindow(SW_SHOW);
|
|
|
|
}
|
|
|
|
|
2012-10-05 09:14:32 +00:00
|
|
|
void COptionsShortCutsPage::ApplySettings( bool /*UpdateScreen*/ )
|
2008-11-14 20:51:06 +00:00
|
|
|
{
|
|
|
|
m_ShortCuts.Save();
|
2012-11-17 01:02:04 +00:00
|
|
|
g_Settings->SaveBool(Info_ShortCutsChanged,true);
|
2008-11-14 20:51:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool COptionsShortCutsPage::EnableReset ( void )
|
|
|
|
{
|
|
|
|
return m_EnableReset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void COptionsShortCutsPage::ResetPage()
|
|
|
|
{
|
|
|
|
m_EnableReset = false;
|
|
|
|
m_ShortCuts.Load(true);
|
|
|
|
OnCpuStateChanged(LBN_SELCHANGE,IDC_C_CPU_STATE,GetDlgItem(IDC_C_CPU_STATE));
|
|
|
|
SendMessage(GetParent(),PSM_CHANGED ,(WPARAM)m_hWnd,0);
|
|
|
|
m_CurrentKeys.ResetContent();
|
|
|
|
CSettingsPageImpl<COptionsShortCutsPage>::ResetPage();
|
|
|
|
}
|