[Project64] Clean up Rom Browser Class.cpp (remove typecast, brackets)
This commit is contained in:
parent
8acffb73e7
commit
52d5a780d5
|
@ -450,7 +450,7 @@ void CMainGui::Caption(LPCWSTR Caption)
|
||||||
void CMainGui::Create(const char * WindowTitle)
|
void CMainGui::Create(const char * WindowTitle)
|
||||||
{
|
{
|
||||||
stdstr_f VersionDisplay("Project64 %s", VER_FILE_VERSION_STR);
|
stdstr_f VersionDisplay("Project64 %s", VER_FILE_VERSION_STR);
|
||||||
m_hMainWindow = (HWND)CreateWindowEx(WS_EX_ACCEPTFILES, VersionDisplay.c_str(), WindowTitle, WS_OVERLAPPED | WS_CLIPCHILDREN |
|
m_hMainWindow = CreateWindowEx(WS_EX_ACCEPTFILES, VersionDisplay.c_str(), WindowTitle, WS_OVERLAPPED | WS_CLIPCHILDREN |
|
||||||
WS_CLIPSIBLINGS | WS_SYSMENU | WS_MINIMIZEBOX, 5, 5, 640, 480,
|
WS_CLIPSIBLINGS | WS_SYSMENU | WS_MINIMIZEBOX, 5, 5, 640, 480,
|
||||||
NULL, NULL, GetModuleHandle(NULL), this);
|
NULL, NULL, GetModuleHandle(NULL), this);
|
||||||
m_Created = m_hMainWindow != NULL;
|
m_Created = m_hMainWindow != NULL;
|
||||||
|
@ -655,7 +655,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
//record class for future usage
|
//record class for future usage
|
||||||
LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam;
|
LPCREATESTRUCT lpcs = (LPCREATESTRUCT)lParam;
|
||||||
CMainGui * _this = (CMainGui *)lpcs->lpCreateParams;
|
CMainGui * _this = (CMainGui *)lpcs->lpCreateParams;
|
||||||
SetProp((HWND)hWnd, "Class", _this);
|
SetProp(hWnd, "Class", _this);
|
||||||
|
|
||||||
_this->m_hMainWindow = hWnd;
|
_this->m_hMainWindow = hWnd;
|
||||||
_this->CreateStatusBar();
|
_this->CreateStatusBar();
|
||||||
|
@ -677,7 +677,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
case SC_SCREENSAVE:
|
case SC_SCREENSAVE:
|
||||||
case SC_MONITORPOWER:
|
case SC_MONITORPOWER:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this &&
|
if (_this &&
|
||||||
_this->bCPURunning() &&
|
_this->bCPURunning() &&
|
||||||
!g_Settings->LoadBool(GameRunning_CPU_Paused) &&
|
!g_Settings->LoadBool(GameRunning_CPU_Paused) &&
|
||||||
|
@ -689,7 +689,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case SC_MAXIMIZE:
|
case SC_MAXIMIZE:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this)
|
if (_this)
|
||||||
{
|
{
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
|
@ -700,23 +700,23 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return DefWindowProc((HWND)hWnd, uMsg, wParam, lParam);
|
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||||
break;
|
break;
|
||||||
case WM_MOVE:
|
case WM_MOVE:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
|
|
||||||
if (!_this->m_bMainWindow ||
|
if (!_this->m_bMainWindow ||
|
||||||
!_this->m_Created ||
|
!_this->m_Created ||
|
||||||
_this->m_AttachingMenu ||
|
_this->m_AttachingMenu ||
|
||||||
_this->m_MakingVisible ||
|
_this->m_MakingVisible ||
|
||||||
IsIconic((HWND)hWnd) ||
|
IsIconic(hWnd) ||
|
||||||
_this->ShowingRomBrowser())
|
_this->ShowingRomBrowser())
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IsZoomed((HWND)hWnd))
|
if (IsZoomed(hWnd))
|
||||||
{
|
{
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
|
@ -727,7 +727,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
|
|
||||||
//get the current position of the window
|
//get the current position of the window
|
||||||
RECT WinRect;
|
RECT WinRect;
|
||||||
GetWindowRect((HWND)hWnd, &WinRect);
|
GetWindowRect(hWnd, &WinRect);
|
||||||
|
|
||||||
//save the location of the window
|
//save the location of the window
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
|
@ -759,14 +759,14 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
if (wParam == Timer_SetWindowPos)
|
if (wParam == Timer_SetWindowPos)
|
||||||
{
|
{
|
||||||
KillTimer(hWnd, Timer_SetWindowPos);
|
KillTimer(hWnd, Timer_SetWindowPos);
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
_this->SaveWindowLoc();
|
_this->SaveWindowLoc();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_SIZE:
|
case WM_SIZE:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this) { _this->Resize(wParam, LOWORD(lParam), HIWORD(lParam)); }
|
if (_this) { _this->Resize(wParam, LOWORD(lParam), HIWORD(lParam)); }
|
||||||
if (_this)
|
if (_this)
|
||||||
{
|
{
|
||||||
|
@ -790,31 +790,28 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_NOTIFY:
|
case WM_NOTIFY:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this)
|
if (_this == NULL || !_this->RomBrowserVisible() || !_this->RomListNotify(wParam, lParam))
|
||||||
{
|
{
|
||||||
if (_this->RomBrowserVisible() && !_this->RomListNotify(wParam, lParam))
|
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||||
{
|
|
||||||
return DefWindowProc((HWND)hWnd, uMsg, wParam, lParam);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_DRAWITEM:
|
case WM_DRAWITEM:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this)
|
if (_this)
|
||||||
{
|
{
|
||||||
if (!_this->RomListDrawItem(wParam, lParam))
|
if (!_this->RomListDrawItem(wParam, lParam))
|
||||||
{
|
{
|
||||||
return DefWindowProc((HWND)hWnd, uMsg, wParam, lParam);
|
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_PAINT:
|
case WM_PAINT:
|
||||||
{
|
{
|
||||||
// CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd,"Class");
|
// CMainGui * _this = (CMainGui *)GetProp(hWnd,"Class");
|
||||||
// CN64System * System = _this->m_System;
|
// CN64System * System = _this->m_System;
|
||||||
|
|
||||||
// if (bCPURunning() && Settings->Load(CPU_Paused)) {
|
// if (bCPURunning() && Settings->Load(CPU_Paused)) {
|
||||||
|
@ -823,12 +820,12 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
// Plugins->Gfx()->DrawScreen();
|
// Plugins->Gfx()->DrawScreen();
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
ValidateRect((HWND)hWnd, NULL);
|
ValidateRect(hWnd, NULL);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_KEYUP:
|
case WM_KEYUP:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
|
|
||||||
if (_this->m_bMainWindow && bCPURunning())
|
if (_this->m_bMainWindow && bCPURunning())
|
||||||
{
|
{
|
||||||
|
@ -843,7 +840,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_KEYDOWN:
|
case WM_KEYDOWN:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
|
|
||||||
if (_this->m_bMainWindow && bCPURunning())
|
if (_this->m_bMainWindow && bCPURunning())
|
||||||
{
|
{
|
||||||
|
@ -859,10 +856,10 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_SETFOCUS:
|
case WM_SETFOCUS:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
PostMessage((HWND)hWnd, WM_BROWSER_TOP, 0, 0);
|
PostMessage(hWnd, WM_BROWSER_TOP, 0, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -877,7 +874,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_KILLFOCUS:
|
case WM_KILLFOCUS:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this->RomBrowserVisible())
|
if (_this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
|
@ -894,12 +891,12 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_ACTIVATEAPP:
|
case WM_ACTIVATEAPP:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
DWORD fActive = (BOOL)wParam;
|
DWORD fActive = (BOOL)wParam;
|
||||||
|
|
||||||
if (fActive && _this->RomBrowserVisible())
|
if (fActive && _this->RomBrowserVisible())
|
||||||
{
|
{
|
||||||
PostMessage((HWND)hWnd, WM_BROWSER_TOP, 0, 0);
|
PostMessage(hWnd, WM_BROWSER_TOP, 0, 0);
|
||||||
}
|
}
|
||||||
if (_this->m_bMainWindow && bCPURunning())
|
if (_this->m_bMainWindow && bCPURunning())
|
||||||
{
|
{
|
||||||
|
@ -934,19 +931,19 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_MAKE_FOCUS:
|
case WM_MAKE_FOCUS:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
_this->BringToTop();
|
_this->BringToTop();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_BROWSER_TOP:
|
case WM_BROWSER_TOP:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
_this->RomBrowserToTop();
|
_this->RomBrowserToTop();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WM_RESET_PLUGIN:
|
case WM_RESET_PLUGIN:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this->m_ResetInfo != NULL)
|
if (_this->m_ResetInfo != NULL)
|
||||||
{
|
{
|
||||||
g_Notify->BreakPoint(__FILEW__, __LINE__);
|
g_Notify->BreakPoint(__FILEW__, __LINE__);
|
||||||
|
@ -957,7 +954,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_GAME_CLOSED:
|
case WM_GAME_CLOSED:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
Notify().WindowMode();
|
Notify().WindowMode();
|
||||||
if (g_Settings->LoadDword(RomBrowser_Enabled))
|
if (g_Settings->LoadDword(RomBrowser_Enabled))
|
||||||
{
|
{
|
||||||
|
@ -971,7 +968,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
break;
|
break;
|
||||||
case WM_COMMAND:
|
case WM_COMMAND:
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this == NULL) { break; }
|
if (_this == NULL) { break; }
|
||||||
|
|
||||||
switch (LOWORD(wParam)) {
|
switch (LOWORD(wParam)) {
|
||||||
|
@ -1084,7 +1081,7 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
case WM_DESTROY:
|
case WM_DESTROY:
|
||||||
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - start");
|
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - start");
|
||||||
{
|
{
|
||||||
CMainGui * _this = (CMainGui *)GetProp((HWND)hWnd, "Class");
|
CMainGui * _this = (CMainGui *)GetProp(hWnd, "Class");
|
||||||
if (_this->m_bMainWindow)
|
if (_this->m_bMainWindow)
|
||||||
{
|
{
|
||||||
Notify().WindowMode();
|
Notify().WindowMode();
|
||||||
|
@ -1099,13 +1096,13 @@ LRESULT CALLBACK CMainGui::MainGui_Proc(HWND hWnd, DWORD uMsg, DWORD wParam, DWO
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - 3");
|
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - 3");
|
||||||
RemoveProp((HWND)hWnd, "Class");
|
RemoveProp(hWnd, "Class");
|
||||||
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - 4");
|
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - 4");
|
||||||
PostQuitMessage(0);
|
PostQuitMessage(0);
|
||||||
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - Done");
|
WriteTrace(TraceDebug, __FUNCTION__ ": WM_DESTROY - Done");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return DefWindowProc((HWND)hWnd, uMsg, wParam, lParam);
|
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,7 +94,7 @@ void CRomBrowser::GetFieldInfo(ROMBROWSER_FIELDS_LIST & Fields, bool UseDefault
|
||||||
int CRomBrowser::CalcSortPosition(DWORD lParam)
|
int CRomBrowser::CalcSortPosition(DWORD lParam)
|
||||||
{
|
{
|
||||||
int Start = 0;
|
int Start = 0;
|
||||||
int End = ListView_GetItemCount((HWND)m_hRomList) - 1;
|
int End = ListView_GetItemCount(m_hRomList) - 1;
|
||||||
if (End < 0)
|
if (End < 0)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -139,7 +139,7 @@ int CRomBrowser::CalcSortPosition(DWORD lParam)
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = TestPos;
|
lvItem.iItem = TestPos;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem))
|
if (!ListView_GetItem(m_hRomList, &lvItem))
|
||||||
{
|
{
|
||||||
return End;
|
return End;
|
||||||
}
|
}
|
||||||
|
@ -179,7 +179,7 @@ int CRomBrowser::CalcSortPosition(DWORD lParam)
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = NewTestPos;
|
lvItem.iItem = NewTestPos;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem))
|
if (!ListView_GetItem(m_hRomList, &lvItem))
|
||||||
{
|
{
|
||||||
return End;
|
return End;
|
||||||
}
|
}
|
||||||
|
@ -216,7 +216,7 @@ int CRomBrowser::CalcSortPosition(DWORD lParam)
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = NewTestPos;
|
lvItem.iItem = NewTestPos;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return End; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return End; }
|
||||||
|
|
||||||
int Result = RomList_CompareItems(lParam, lvItem.lParam, (DWORD)&SortFieldInfo);
|
int Result = RomList_CompareItems(lParam, lvItem.lParam, (DWORD)&SortFieldInfo);
|
||||||
if (Result >= 0)
|
if (Result >= 0)
|
||||||
|
@ -262,7 +262,7 @@ int CRomBrowser::CalcSortPosition(DWORD lParam)
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = End;
|
lvItem.iItem = End;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return End; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return End; }
|
||||||
|
|
||||||
int Result = RomList_CompareItems(lParam, lvItem.lParam, (DWORD)&SortFieldInfo);
|
int Result = RomList_CompareItems(lParam, lvItem.lParam, (DWORD)&SortFieldInfo);
|
||||||
if (Result < 0)
|
if (Result < 0)
|
||||||
|
@ -299,20 +299,20 @@ void CRomBrowser::AddRomInfoToList(ROM_INFO &RomInfo, const char * lpLastRom)
|
||||||
lvItem.lParam = (LPARAM)ListPos;
|
lvItem.lParam = (LPARAM)ListPos;
|
||||||
lvItem.pszText = LPSTR_TEXTCALLBACK;
|
lvItem.pszText = LPSTR_TEXTCALLBACK;
|
||||||
|
|
||||||
int index = ListView_InsertItem((HWND)m_hRomList, &lvItem);
|
int index = ListView_InsertItem(m_hRomList, &lvItem);
|
||||||
|
|
||||||
int iItem = ListView_GetNextItem((HWND)m_hRomList, -1, LVNI_SELECTED);
|
int iItem = ListView_GetNextItem(m_hRomList, -1, LVNI_SELECTED);
|
||||||
//if (iItem == -1) { return; }
|
//if (iItem == -1) { return; }
|
||||||
|
|
||||||
//if the last rom then highlight the item
|
//if the last rom then highlight the item
|
||||||
if (iItem < 0 && _stricmp(RomInfo.szFullFileName, lpLastRom) == 0)
|
if (iItem < 0 && _stricmp(RomInfo.szFullFileName, lpLastRom) == 0)
|
||||||
{
|
{
|
||||||
ListView_SetItemState((HWND)m_hRomList, index, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
|
ListView_SetItemState(m_hRomList, index, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (iItem >= 0)
|
if (iItem >= 0)
|
||||||
{
|
{
|
||||||
ListView_EnsureVisible((HWND)m_hRomList, iItem, FALSE);
|
ListView_EnsureVisible(m_hRomList, iItem, FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -333,10 +333,7 @@ void CRomBrowser::AllocateBrushs(void)
|
||||||
|
|
||||||
void CRomBrowser::CreateRomListControl(void)
|
void CRomBrowser::CreateRomListControl(void)
|
||||||
{
|
{
|
||||||
m_hRomList = (HWND)CreateWindow(WC_LISTVIEW, NULL,
|
m_hRomList = CreateWindow(WC_LISTVIEW, NULL, WS_TABSTOP | WS_VISIBLE | WS_CHILD | LVS_OWNERDRAWFIXED | LVS_SINGLESEL | LVS_REPORT, 0, 0, 0, 0, m_MainWindow, (HMENU)IDC_ROMLIST, GetModuleHandle(NULL), NULL);
|
||||||
WS_TABSTOP | WS_VISIBLE | WS_CHILD | LVS_OWNERDRAWFIXED |
|
|
||||||
LVS_SINGLESEL | LVS_REPORT,
|
|
||||||
0, 0, 0, 0, m_MainWindow, (HMENU)IDC_ROMLIST, GetModuleHandle(NULL), NULL);
|
|
||||||
ResetRomBrowserColomuns();
|
ResetRomBrowserColomuns();
|
||||||
LoadRomList();
|
LoadRomList();
|
||||||
}
|
}
|
||||||
|
@ -544,9 +541,11 @@ void CRomBrowser::NotificationCB(LPCWSTR Status, CRomBrowser * /*_this*/)
|
||||||
g_Notify->DisplayMessage(5, Status);
|
g_Notify->DisplayMessage(5, Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* ROM_extensions[] = {
|
static const char* ROM_extensions[] =
|
||||||
|
{
|
||||||
"zip", "7z", "v64", "z64", "n64", "rom", "jap", "pal", "usa", "eur", "bin",
|
"zip", "7z", "v64", "z64", "n64", "rom", "jap", "pal", "usa", "eur", "bin",
|
||||||
};
|
};
|
||||||
|
|
||||||
void CRomBrowser::AddFileNameToList(strlist & FileList, const stdstr & Directory, CPath & File)
|
void CRomBrowser::AddFileNameToList(strlist & FileList, const stdstr & Directory, CPath & File)
|
||||||
{
|
{
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
|
@ -801,12 +800,12 @@ void CRomBrowser::HighLightLastRom(void)
|
||||||
LV_ITEM lvItem;
|
LV_ITEM lvItem;
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
|
|
||||||
int ItemCount = ListView_GetItemCount((HWND)m_hRomList);
|
int ItemCount = ListView_GetItemCount(m_hRomList);
|
||||||
for (int index = 0; index < ItemCount; index++)
|
for (int index = 0; index < ItemCount; index++)
|
||||||
{
|
{
|
||||||
//Get The next item
|
//Get The next item
|
||||||
lvItem.iItem = index;
|
lvItem.iItem = index;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return; }
|
||||||
|
|
||||||
//Get the rom info for that item
|
//Get the rom info for that item
|
||||||
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
||||||
|
@ -823,8 +822,8 @@ void CRomBrowser::HighLightLastRom(void)
|
||||||
//if the last rom then highlight the item
|
//if the last rom then highlight the item
|
||||||
if (_stricmp(pRomInfo->szFullFileName, lpLastRom) == 0)
|
if (_stricmp(pRomInfo->szFullFileName, lpLastRom) == 0)
|
||||||
{
|
{
|
||||||
ListView_SetItemState((HWND)m_hRomList, index, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
|
ListView_SetItemState(m_hRomList, index, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
|
||||||
ListView_EnsureVisible((HWND)m_hRomList, index, FALSE);
|
ListView_EnsureVisible(m_hRomList, index, FALSE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -896,10 +895,7 @@ bool CRomBrowser::LoadDataFromRomFile(char * FileName, BYTE * Data, int DataLen,
|
||||||
DWORD dwRead;
|
DWORD dwRead;
|
||||||
HANDLE hFile;
|
HANDLE hFile;
|
||||||
|
|
||||||
hFile = CreateFile(FileName, GENERIC_READ, FILE_SHARE_READ, NULL,
|
hFile = CreateFile(FileName, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS, NULL);
|
||||||
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS,
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
if (hFile == INVALID_HANDLE_VALUE) { return false; }
|
if (hFile == INVALID_HANDLE_VALUE) { return false; }
|
||||||
|
|
||||||
SetFilePointer(hFile, 0, 0, FILE_BEGIN);
|
SetFilePointer(hFile, 0, 0, FILE_BEGIN);
|
||||||
|
@ -947,12 +943,14 @@ void CRomBrowser::ByteSwapRomData(BYTE * Data, int DataLen)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CRomBrowser::LoadRomList(void) {
|
void CRomBrowser::LoadRomList(void)
|
||||||
|
{
|
||||||
stdstr FileName = g_Settings->LoadStringVal(SupportFile_RomListCache);
|
stdstr FileName = g_Settings->LoadStringVal(SupportFile_RomListCache);
|
||||||
|
|
||||||
//Open the cache file
|
//Open the cache file
|
||||||
HANDLE hFile = CreateFile(FileName.c_str(), GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS, NULL);
|
HANDLE hFile = CreateFile(FileName.c_str(), GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS, NULL);
|
||||||
if (hFile == INVALID_HANDLE_VALUE) {
|
if (hFile == INVALID_HANDLE_VALUE)
|
||||||
|
{
|
||||||
//if file does not exist then refresh the data
|
//if file does not exist then refresh the data
|
||||||
RefreshRomBrowser();
|
RefreshRomBrowser();
|
||||||
return;
|
return;
|
||||||
|
@ -965,7 +963,8 @@ void CRomBrowser::LoadRomList(void) {
|
||||||
//Read the size of ROM_INFO
|
//Read the size of ROM_INFO
|
||||||
int RomInfoSize = 0;
|
int RomInfoSize = 0;
|
||||||
ReadFile(hFile, &RomInfoSize, sizeof(RomInfoSize), &dwRead, NULL);
|
ReadFile(hFile, &RomInfoSize, sizeof(RomInfoSize), &dwRead, NULL);
|
||||||
if (RomInfoSize != sizeof(ROM_INFO) || dwRead != sizeof(RomInfoSize)) {
|
if (RomInfoSize != sizeof(ROM_INFO) || dwRead != sizeof(RomInfoSize))
|
||||||
|
{
|
||||||
CloseHandle(hFile);
|
CloseHandle(hFile);
|
||||||
RefreshRomBrowser();
|
RefreshRomBrowser();
|
||||||
return;
|
return;
|
||||||
|
@ -978,7 +977,8 @@ void CRomBrowser::LoadRomList(void) {
|
||||||
//Read Every Entry
|
//Read Every Entry
|
||||||
DeallocateBrushs();
|
DeallocateBrushs();
|
||||||
m_RomInfo.clear();
|
m_RomInfo.clear();
|
||||||
for (int count = 0; count < Entries; count++) {
|
for (int count = 0; count < Entries; count++)
|
||||||
|
{
|
||||||
ROM_INFO RomInfo;
|
ROM_INFO RomInfo;
|
||||||
ReadFile(hFile, &RomInfo, RomInfoSize, &dwRead, NULL);
|
ReadFile(hFile, &RomInfo, RomInfoSize, &dwRead, NULL);
|
||||||
RomInfo.SelColorBrush = NULL;
|
RomInfo.SelColorBrush = NULL;
|
||||||
|
@ -986,11 +986,11 @@ void CRomBrowser::LoadRomList(void) {
|
||||||
LV_ITEM lvItem;
|
LV_ITEM lvItem;
|
||||||
memset(&lvItem, 0, sizeof(lvItem));
|
memset(&lvItem, 0, sizeof(lvItem));
|
||||||
lvItem.mask = LVIF_TEXT | LVIF_PARAM;
|
lvItem.mask = LVIF_TEXT | LVIF_PARAM;
|
||||||
lvItem.iItem = ListView_GetItemCount((HWND)m_hRomList);
|
lvItem.iItem = ListView_GetItemCount(m_hRomList);
|
||||||
lvItem.lParam = (LPARAM)m_RomInfo.size();
|
lvItem.lParam = (LPARAM)m_RomInfo.size();
|
||||||
lvItem.pszText = LPSTR_TEXTCALLBACK;
|
lvItem.pszText = LPSTR_TEXTCALLBACK;
|
||||||
|
|
||||||
ListView_InsertItem((HWND)m_hRomList, &lvItem);
|
ListView_InsertItem(m_hRomList, &lvItem);
|
||||||
m_RomInfo.push_back(RomInfo);
|
m_RomInfo.push_back(RomInfo);
|
||||||
}
|
}
|
||||||
CloseHandle(hFile);
|
CloseHandle(hFile);
|
||||||
|
@ -1094,9 +1094,9 @@ void CRomBrowser::ResetRomBrowserColomuns(void)
|
||||||
//Remove all current coloumns
|
//Remove all current coloumns
|
||||||
memset(&lvColumn, 0, sizeof(lvColumn));
|
memset(&lvColumn, 0, sizeof(lvColumn));
|
||||||
lvColumn.mask = LVCF_FMT;
|
lvColumn.mask = LVCF_FMT;
|
||||||
while (ListView_GetColumn((HWND)m_hRomList, 0, &lvColumn))
|
while (ListView_GetColumn(m_hRomList, 0, &lvColumn))
|
||||||
{
|
{
|
||||||
ListView_DeleteColumn((HWND)m_hRomList, 0);
|
ListView_DeleteColumn(m_hRomList, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Add Colomuns
|
//Add Colomuns
|
||||||
|
@ -1145,22 +1145,22 @@ void CRomBrowser::ResizeRomList(WORD nWidth, WORD nHeight)
|
||||||
GetWindowRect((HWND)m_StatusWindow, &rc);
|
GetWindowRect((HWND)m_StatusWindow, &rc);
|
||||||
nHeight -= (WORD)(rc.bottom - rc.top);
|
nHeight -= (WORD)(rc.bottom - rc.top);
|
||||||
}
|
}
|
||||||
MoveWindow((HWND)m_hRomList, 0, 0, nWidth, nHeight, TRUE);
|
MoveWindow(m_hRomList, 0, 0, nWidth, nHeight, TRUE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CRomBrowser::RomBrowserVisible(void)
|
bool CRomBrowser::RomBrowserVisible(void)
|
||||||
{
|
{
|
||||||
if (!IsWindow((HWND)m_hRomList)) { return false; }
|
if (!IsWindow(m_hRomList)) { return false; }
|
||||||
if (!IsWindowVisible((HWND)m_hRomList)) { return false; }
|
if (!IsWindowVisible(m_hRomList)) { return false; }
|
||||||
if (!m_Visible) { return false; }
|
if (!m_Visible) { return false; }
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CRomBrowser::RomBrowserToTop(void)
|
void CRomBrowser::RomBrowserToTop(void)
|
||||||
{
|
{
|
||||||
BringWindowToTop((HWND)m_hRomList);
|
BringWindowToTop(m_hRomList);
|
||||||
SetFocus((HWND)m_hRomList);
|
SetFocus(m_hRomList);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CRomBrowser::RomBrowserMaximize(bool Mazimize)
|
void CRomBrowser::RomBrowserMaximize(bool Mazimize)
|
||||||
|
@ -1182,8 +1182,8 @@ bool CRomBrowser::RomListDrawItem(int idCtrl, DWORD lParam)
|
||||||
|
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = ditem->itemID;
|
lvItem.iItem = ditem->itemID;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return false; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return false; }
|
||||||
lvItem.state = ListView_GetItemState((HWND)m_hRomList, ditem->itemID, -1);
|
lvItem.state = ListView_GetItemState(m_hRomList, ditem->itemID, -1);
|
||||||
bool bSelected = (lvItem.state & LVIS_SELECTED) != 0;
|
bool bSelected = (lvItem.state & LVIS_SELECTED) != 0;
|
||||||
|
|
||||||
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
||||||
|
@ -1209,8 +1209,8 @@ bool CRomBrowser::RomListDrawItem(int idCtrl, DWORD lParam)
|
||||||
SetBkMode(ditem->hDC, TRANSPARENT);
|
SetBkMode(ditem->hDC, TRANSPARENT);
|
||||||
|
|
||||||
//Draw
|
//Draw
|
||||||
ListView_GetItemRect((HWND)m_hRomList, ditem->itemID, &rcItem, LVIR_LABEL);
|
ListView_GetItemRect(m_hRomList, ditem->itemID, &rcItem, LVIR_LABEL);
|
||||||
ListView_GetItemText((HWND)m_hRomList, ditem->itemID, 0, String, sizeof(String));
|
ListView_GetItemText(m_hRomList, ditem->itemID, 0, String, sizeof(String));
|
||||||
memcpy(&rcDraw, &rcItem, sizeof(RECT));
|
memcpy(&rcDraw, &rcItem, sizeof(RECT));
|
||||||
rcDraw.right -= 3;
|
rcDraw.right -= 3;
|
||||||
std::wstring text = stdstr(String).ToUTF16();
|
std::wstring text = stdstr(String).ToUTF16();
|
||||||
|
@ -1223,12 +1223,12 @@ bool CRomBrowser::RomListDrawItem(int idCtrl, DWORD lParam)
|
||||||
|
|
||||||
memset(&lvc, 0, sizeof(lvc));
|
memset(&lvc, 0, sizeof(lvc));
|
||||||
lvc.mask = LVCF_FMT | LVCF_WIDTH;
|
lvc.mask = LVCF_FMT | LVCF_WIDTH;
|
||||||
for (nColumn = 1; ListView_GetColumn((HWND)m_hRomList, nColumn, &lvc); nColumn += 1)
|
for (nColumn = 1; ListView_GetColumn(m_hRomList, nColumn, &lvc); nColumn += 1)
|
||||||
{
|
{
|
||||||
rcItem.left = rcItem.right;
|
rcItem.left = rcItem.right;
|
||||||
rcItem.right += lvc.cx;
|
rcItem.right += lvc.cx;
|
||||||
|
|
||||||
ListView_GetItemText((HWND)m_hRomList, ditem->itemID, nColumn, String, sizeof(String));
|
ListView_GetItemText(m_hRomList, ditem->itemID, nColumn, String, sizeof(String));
|
||||||
memcpy(&rcDraw, &rcItem, sizeof(RECT));
|
memcpy(&rcDraw, &rcItem, sizeof(RECT));
|
||||||
rcDraw.right -= 3;
|
rcDraw.right -= 3;
|
||||||
std::wstring text = stdstr(String).ToUTF16();
|
std::wstring text = stdstr(String).ToUTF16();
|
||||||
|
@ -1255,7 +1255,7 @@ bool CRomBrowser::RomListNotify(int idCtrl, DWORD pnmh)
|
||||||
case NM_RCLICK: RomList_PopupMenu(pnmh); break;
|
case NM_RCLICK: RomList_PopupMenu(pnmh); break;
|
||||||
case NM_CLICK:
|
case NM_CLICK:
|
||||||
{
|
{
|
||||||
LONG iItem = ListView_GetNextItem((HWND)m_hRomList, -1, LVNI_SELECTED);
|
LONG iItem = ListView_GetNextItem(m_hRomList, -1, LVNI_SELECTED);
|
||||||
if (iItem != -1)
|
if (iItem != -1)
|
||||||
{
|
{
|
||||||
m_AllowSelectionLastRom = false;
|
m_AllowSelectionLastRom = false;
|
||||||
|
@ -1356,7 +1356,8 @@ void CRomBrowser::RomList_GetDispInfo(DWORD pnmh)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (m_FieldType[lpdi->item.iSubItem]) {
|
switch (m_FieldType[lpdi->item.iSubItem])
|
||||||
|
{
|
||||||
case RB_FileName: strncpy(lpdi->item.pszText, pRomInfo->FileName, lpdi->item.cchTextMax); break;
|
case RB_FileName: strncpy(lpdi->item.pszText, pRomInfo->FileName, lpdi->item.cchTextMax); break;
|
||||||
case RB_InternalName: strncpy(lpdi->item.pszText, pRomInfo->InternalName, lpdi->item.cchTextMax); break;
|
case RB_InternalName: strncpy(lpdi->item.pszText, pRomInfo->InternalName, lpdi->item.cchTextMax); break;
|
||||||
case RB_GoodName: strncpy(lpdi->item.pszText, pRomInfo->GoodName, lpdi->item.cchTextMax); break;
|
case RB_GoodName: strncpy(lpdi->item.pszText, pRomInfo->GoodName, lpdi->item.cchTextMax); break;
|
||||||
|
@ -1430,13 +1431,13 @@ void CRomBrowser::RomList_OpenRom(DWORD /*pnmh*/)
|
||||||
LV_ITEM lvItem;
|
LV_ITEM lvItem;
|
||||||
LONG iItem;
|
LONG iItem;
|
||||||
|
|
||||||
iItem = ListView_GetNextItem((HWND)m_hRomList, -1, LVNI_SELECTED);
|
iItem = ListView_GetNextItem(m_hRomList, -1, LVNI_SELECTED);
|
||||||
if (iItem == -1) { return; }
|
if (iItem == -1) { return; }
|
||||||
|
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = iItem;
|
lvItem.iItem = iItem;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return; }
|
||||||
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@ -1450,7 +1451,7 @@ void CRomBrowser::RomList_OpenRom(DWORD /*pnmh*/)
|
||||||
|
|
||||||
void CRomBrowser::RomList_PopupMenu(DWORD /*pnmh*/)
|
void CRomBrowser::RomList_PopupMenu(DWORD /*pnmh*/)
|
||||||
{
|
{
|
||||||
LONG iItem = ListView_GetNextItem((HWND)m_hRomList, -1, LVNI_SELECTED);
|
LONG iItem = ListView_GetNextItem(m_hRomList, -1, LVNI_SELECTED);
|
||||||
m_SelectedRom = "";
|
m_SelectedRom = "";
|
||||||
if (iItem != -1)
|
if (iItem != -1)
|
||||||
{
|
{
|
||||||
|
@ -1458,7 +1459,7 @@ void CRomBrowser::RomList_PopupMenu(DWORD /*pnmh*/)
|
||||||
memset(&lvItem, 0, sizeof(LV_ITEM));
|
memset(&lvItem, 0, sizeof(LV_ITEM));
|
||||||
lvItem.mask = LVIF_PARAM;
|
lvItem.mask = LVIF_PARAM;
|
||||||
lvItem.iItem = iItem;
|
lvItem.iItem = iItem;
|
||||||
if (!ListView_GetItem((HWND)m_hRomList, &lvItem)) { return; }
|
if (!ListView_GetItem(m_hRomList, &lvItem)) { return; }
|
||||||
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
if (lvItem.lParam < 0 || lvItem.lParam >= (LPARAM)m_RomInfo.size())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@ -1542,7 +1543,7 @@ void CRomBrowser::RomList_SortList(void)
|
||||||
SortFieldInfo._this = this;
|
SortFieldInfo._this = this;
|
||||||
SortFieldInfo.Key = index;
|
SortFieldInfo.Key = index;
|
||||||
SortFieldInfo.KeyAscend = g_Settings->LoadBoolIndex(RomBrowser_SortAscendingIndex, count) != 0;
|
SortFieldInfo.KeyAscend = g_Settings->LoadBoolIndex(RomBrowser_SortAscendingIndex, count) != 0;
|
||||||
ListView_SortItems((HWND)m_hRomList, RomList_CompareItems, &SortFieldInfo);
|
ListView_SortItems(m_hRomList, RomList_CompareItems, &SortFieldInfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1590,7 +1591,7 @@ void CRomBrowser::SaveRomListColoumnInfo(void)
|
||||||
memset(&lvColumn, 0, sizeof(lvColumn));
|
memset(&lvColumn, 0, sizeof(lvColumn));
|
||||||
lvColumn.mask = LVCF_WIDTH;
|
lvColumn.mask = LVCF_WIDTH;
|
||||||
|
|
||||||
for (size_t Coloumn = 0; ListView_GetColumn((HWND)m_hRomList, Coloumn, &lvColumn); Coloumn++)
|
for (size_t Coloumn = 0; ListView_GetColumn(m_hRomList, Coloumn, &lvColumn); Coloumn++)
|
||||||
{
|
{
|
||||||
size_t index;
|
size_t index;
|
||||||
bool bFound = false;
|
bool bFound = false;
|
||||||
|
@ -1717,14 +1718,14 @@ void CRomBrowser::ShowRomList(void)
|
||||||
m_ShowingRomBrowser = true;
|
m_ShowingRomBrowser = true;
|
||||||
WatchThreadStop();
|
WatchThreadStop();
|
||||||
if (m_hRomList == NULL) { CreateRomListControl(); }
|
if (m_hRomList == NULL) { CreateRomListControl(); }
|
||||||
EnableWindow((HWND)m_hRomList, TRUE);
|
EnableWindow(m_hRomList, TRUE);
|
||||||
ShowWindow((HWND)m_hRomList, SW_SHOW);
|
ShowWindow(m_hRomList, SW_SHOW);
|
||||||
FixRomListWindow();
|
FixRomListWindow();
|
||||||
m_AllowSelectionLastRom = true;
|
m_AllowSelectionLastRom = true;
|
||||||
|
|
||||||
//Make sure selected item is visible
|
//Make sure selected item is visible
|
||||||
int iItem = ListView_GetNextItem((HWND)m_hRomList, -1, LVNI_SELECTED);
|
int iItem = ListView_GetNextItem(m_hRomList, -1, LVNI_SELECTED);
|
||||||
ListView_EnsureVisible((HWND)m_hRomList, iItem, FALSE);
|
ListView_EnsureVisible(m_hRomList, iItem, FALSE);
|
||||||
|
|
||||||
//Mark the window as visible
|
//Mark the window as visible
|
||||||
m_Visible = true;
|
m_Visible = true;
|
||||||
|
@ -1735,7 +1736,7 @@ void CRomBrowser::ShowRomList(void)
|
||||||
ResizeRomList((WORD)rcWindow.right, (WORD)rcWindow.bottom);
|
ResizeRomList((WORD)rcWindow.right, (WORD)rcWindow.bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
InvalidateRect((HWND)m_hRomList, NULL, TRUE);
|
InvalidateRect(m_hRomList, NULL, TRUE);
|
||||||
|
|
||||||
//Start thread to watch for dir changed
|
//Start thread to watch for dir changed
|
||||||
WatchThreadStart();
|
WatchThreadStart();
|
||||||
|
@ -1754,8 +1755,8 @@ void CRomBrowser::HideRomList(void)
|
||||||
Sleep(100);
|
Sleep(100);
|
||||||
|
|
||||||
//Disable the rom list
|
//Disable the rom list
|
||||||
EnableWindow((HWND)m_hRomList, FALSE);
|
EnableWindow(m_hRomList, FALSE);
|
||||||
ShowWindow((HWND)m_hRomList, SW_HIDE);
|
ShowWindow(m_hRomList, SW_HIDE);
|
||||||
|
|
||||||
if (g_Settings->LoadBool(RomBrowser_Maximized)) { ShowWindow(m_MainWindow, SW_RESTORE); }
|
if (g_Settings->LoadBool(RomBrowser_Maximized)) { ShowWindow(m_MainWindow, SW_RESTORE); }
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
class CMainGui;
|
class CMainGui;
|
||||||
class CPlugins;
|
class CPlugins;
|
||||||
|
|
||||||
class ROMBROWSER_FIELDS {
|
class ROMBROWSER_FIELDS
|
||||||
|
{
|
||||||
stdstr m_Name;
|
stdstr m_Name;
|
||||||
size_t m_Pos, m_DefaultPos;
|
size_t m_Pos, m_DefaultPos;
|
||||||
int m_ID;
|
int m_ID;
|
||||||
|
@ -70,7 +71,8 @@ typedef std::vector<ROMBROWSER_FIELDS> ROMBROWSER_FIELDS_LIST;
|
||||||
typedef std::vector<int> FIELD_TYPE_LIST;
|
typedef std::vector<int> FIELD_TYPE_LIST;
|
||||||
|
|
||||||
class CRomBrowser;
|
class CRomBrowser;
|
||||||
struct SORT_FIELD {
|
struct SORT_FIELD
|
||||||
|
{
|
||||||
CRomBrowser * _this;
|
CRomBrowser * _this;
|
||||||
int Key;
|
int Key;
|
||||||
bool KeyAscend;
|
bool KeyAscend;
|
||||||
|
@ -80,7 +82,8 @@ class C7zip;
|
||||||
class CRomBrowser
|
class CRomBrowser
|
||||||
{
|
{
|
||||||
enum { IDC_ROMLIST = 223 };
|
enum { IDC_ROMLIST = 223 };
|
||||||
enum {
|
enum
|
||||||
|
{
|
||||||
RB_FileName = 0, RB_InternalName = 1, RB_GoodName = 2,
|
RB_FileName = 0, RB_InternalName = 1, RB_GoodName = 2,
|
||||||
RB_Status = 3, RB_RomSize = 4, RB_CoreNotes = 5,
|
RB_Status = 3, RB_RomSize = 4, RB_CoreNotes = 5,
|
||||||
RB_PluginNotes = 6, RB_UserNotes = 7, RB_CartridgeID = 8,
|
RB_PluginNotes = 6, RB_UserNotes = 7, RB_CartridgeID = 8,
|
||||||
|
@ -90,7 +93,8 @@ class CRomBrowser
|
||||||
RB_ForceFeedback = 18, RB_FileFormat = 19
|
RB_ForceFeedback = 18, RB_FileFormat = 19
|
||||||
};
|
};
|
||||||
|
|
||||||
enum FILE_FORMAT {
|
enum FILE_FORMAT
|
||||||
|
{
|
||||||
Format_Uncompressed,
|
Format_Uncompressed,
|
||||||
Format_Zip,
|
Format_Zip,
|
||||||
Format_7zip,
|
Format_7zip,
|
||||||
|
@ -101,7 +105,8 @@ class CRomBrowser
|
||||||
NoOfSortKeys = 3
|
NoOfSortKeys = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ROM_INFO {
|
struct ROM_INFO
|
||||||
|
{
|
||||||
char szFullFileName[300];
|
char szFullFileName[300];
|
||||||
FILE_FORMAT FileFormat;
|
FILE_FORMAT FileFormat;
|
||||||
char Status[60];
|
char Status[60];
|
||||||
|
|
Loading…
Reference in New Issue