split wndproc into its own file
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
PROGMGR.C -
|
PROGMGR.C -
|
||||||
Copyright (c) 2023 freedom7341, Freedom Desktop
|
Copyright (c) 2023 freedom7341, Freedom Desktop
|
||||||
DESCRIPTION -
|
DESCRIPTION -
|
||||||
Program Manager's main file, including wWinMain!
|
Program Manager's main file, now with extra wWinMain!
|
||||||
LICENSE INFORMATION -
|
LICENSE INFORMATION -
|
||||||
MIT License, see LICENSE.txt in the root folder
|
MIT License, see LICENSE.txt in the root folder
|
||||||
\* * * * * * * */
|
\* * * * * * * */
|
||||||
@@ -24,11 +24,7 @@ HWND hwndProgMgr = NULL;
|
|||||||
HWND hwndMDIClient = NULL;
|
HWND hwndMDIClient = NULL;
|
||||||
// Global Strings
|
// Global Strings
|
||||||
WCHAR szAppTitle[32];
|
WCHAR szAppTitle[32];
|
||||||
|
WCHAR szProgMgr[] = L"progmgr";
|
||||||
/* Registry Keys */
|
|
||||||
|
|
||||||
// ...
|
|
||||||
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
|
||||||
|
|
||||||
/* Program Entry Point */
|
/* Program Entry Point */
|
||||||
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow)
|
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow)
|
||||||
@@ -43,6 +39,7 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine
|
|||||||
LoadString(hAppInstance, IDS_APPTITLE, szAppTitle, CharSizeOf(szAppTitle));
|
LoadString(hAppInstance, IDS_APPTITLE, szAppTitle, CharSizeOf(szAppTitle));
|
||||||
LoadString(hAppInstance, IDS_PMCLASS, szClass, CharSizeOf(szClass));
|
LoadString(hAppInstance, IDS_PMCLASS, szClass, CharSizeOf(szClass));
|
||||||
|
|
||||||
|
|
||||||
// And add Task Manager...
|
// And add Task Manager...
|
||||||
// LoadString(hAppInstance, IDS_TASKMGR, szBuffer, CharSizeOf(szBuffer));
|
// LoadString(hAppInstance, IDS_TASKMGR, szBuffer, CharSizeOf(szBuffer));
|
||||||
// InsertMenu(hSystemMenu, 6, MF_BYPOSITION | MF_STRING, IDM_TASKMGR, szBuffer);
|
// InsertMenu(hSystemMenu, 6, MF_BYPOSITION | MF_STRING, IDM_TASKMGR, szBuffer);
|
||||||
@@ -59,63 +56,20 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine
|
|||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
InitializeRegistryKeys();
|
InitializeRegistryKeys();
|
||||||
|
//if (IsProgMgrDefaultShell) {
|
||||||
|
|
||||||
|
//}
|
||||||
|
|
||||||
if (!CreateWindow(wc.lpszClassName,
|
if (!CreateWindow(wc.lpszClassName,
|
||||||
szAppTitle,
|
szAppTitle,
|
||||||
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
|
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
|
||||||
0, 0, 640, 480, 0, 0, hInstance, NULL))
|
160, 80, 640, 480, 0, 0, hInstance, NULL))
|
||||||
return 2;
|
return 2;
|
||||||
|
|
||||||
|
//hSystemMenu = GetSystemMenu(hwndProgman, FALSE);
|
||||||
|
|
||||||
while (GetMessage(&msg, NULL, 0, 0) > 0)
|
while (GetMessage(&msg, NULL, 0, 0) > 0)
|
||||||
DispatchMessage(&msg);
|
DispatchMessage(&msg);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
||||||
{
|
|
||||||
|
|
||||||
switch (message)
|
|
||||||
{
|
|
||||||
case WM_CREATE:
|
|
||||||
{
|
|
||||||
RECT rc;
|
|
||||||
CLIENTCREATESTRUCT ccs;
|
|
||||||
|
|
||||||
hwndProgMgr = hWnd;
|
|
||||||
|
|
||||||
// ccs.hWindowMenu = GetSubMenu(GetMenu(hWnd), IDM_WINDOW);
|
|
||||||
// ccs.idFirstChild = IDM_CHILDSTART;
|
|
||||||
|
|
||||||
GetClientRect(hwndProgMgr, &rc);
|
|
||||||
|
|
||||||
hwndMDIClient = CreateWindow(TEXT("MDIClient"),
|
|
||||||
NULL,
|
|
||||||
WS_CLIPCHILDREN | WS_CHILD | WS_VSCROLL | WS_HSCROLL | WS_BORDER,
|
|
||||||
rc.left - 1, rc.top - 1,
|
|
||||||
rc.right + 2, rc.bottom + 2,
|
|
||||||
hWnd, (HMENU)1, hAppInstance,
|
|
||||||
(LPTSTR)&ccs);
|
|
||||||
if (!hwndMDIClient) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
//case WM_SYSCOMMAND:
|
|
||||||
//{
|
|
||||||
// if (wParam == IDM_TASKMGR) {
|
|
||||||
//ShellExecute(hwndProgMgr, &TEXT("OPEN\0"), &TEXT("TASKMGR.EXE\0"), NULL, NULL, SW_NORMAL);
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
//break;
|
|
||||||
//}
|
|
||||||
case WM_CLOSE:
|
|
||||||
PostQuitMessage(0);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return DefWindowProc(hWnd, message, wParam, lParam);
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -13,6 +13,21 @@
|
|||||||
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
|
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
|
||||||
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
|
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
|
||||||
|
|
||||||
|
/* Includes */
|
||||||
|
#include <wtypes.h>
|
||||||
|
|
||||||
/* Macros and Defines */
|
/* Macros and Defines */
|
||||||
#define CharSizeOf(x) (sizeof(x) / sizeof(*x))
|
#define CharSizeOf(x) (sizeof(x) / sizeof(*x))
|
||||||
|
|
||||||
|
/* Global Variables */
|
||||||
|
// PROGMGR.C
|
||||||
|
extern BOOL bIsDefaultShell;
|
||||||
|
extern HINSTANCE hAppInstance;
|
||||||
|
extern HWND hwndProgMgr;
|
||||||
|
extern HWND hwndMDIClient;
|
||||||
|
extern WCHAR szAppTitle[32];
|
||||||
|
extern WCHAR szProgMgr[];
|
||||||
|
|
||||||
|
/* Function Prototypes */
|
||||||
|
// WNDPROC.C
|
||||||
|
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|||||||
@@ -158,6 +158,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="progmgr.c" />
|
<ClCompile Include="progmgr.c" />
|
||||||
<ClCompile Include="registry.c" />
|
<ClCompile Include="registry.c" />
|
||||||
|
<ClCompile Include="wndproc.c" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="lang\dlg_en-US.rc" />
|
<ResourceCompile Include="lang\dlg_en-US.rc" />
|
||||||
|
|||||||
@@ -31,3 +31,36 @@ BOOL InitializeRegistryKeys()
|
|||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* * * *\
|
||||||
|
IsProgMgrDefaultShell -
|
||||||
|
Detects if Program Manager is the default shell.
|
||||||
|
RETURNS -
|
||||||
|
True if successful, false if unsuccessful.
|
||||||
|
\* * * */
|
||||||
|
#if 0
|
||||||
|
BOOL IsProgMgrDefaultShell()
|
||||||
|
{
|
||||||
|
HKEY hkeyWinlogon;
|
||||||
|
DWORD dwType;
|
||||||
|
DWORD cbBuffer;
|
||||||
|
|
||||||
|
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, SHELL_KEY, 0, KEY_READ, &hkeyWinlogon) == ERROR_SUCCESS) {
|
||||||
|
cbBuffer = sizeof(szBuffer);
|
||||||
|
if (RegQueryValueEx(hkeyWinlogon, L"Shell", 0, NULL, (LPBYTE)szBuffer, &cbBuffer) == ERROR_SUCCESS) {
|
||||||
|
CharLower(szBuffer);
|
||||||
|
lpt = szBuffer;
|
||||||
|
while (lpt = wcsstr(lpt, szProgmgr)) {
|
||||||
|
// we probably found progman
|
||||||
|
lpt += lstrlen(szProgmgr);
|
||||||
|
if (*lpt == TEXT(' ') || *lpt == TEXT('.') || *lpt == TEXT(',') || !*lpt)
|
||||||
|
bExitWindows = TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// assume that progman is the shell.
|
||||||
|
bExitWindows = TRUE;
|
||||||
|
}
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
#include <wtypes.h>
|
#include <wtypes.h>
|
||||||
|
|
||||||
/* Defines */
|
/* Defines */
|
||||||
|
#define SHELL_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon"
|
||||||
#define PROGMAN_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Program Manager"
|
#define PROGMAN_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Program Manager"
|
||||||
#define WINDOWS_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows"
|
#define WINDOWS_KEY L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows"
|
||||||
#define PROGMGR_KEY L"Software\\Freedom Desktop\\Program Manager II"
|
#define PROGMGR_KEY L"Software\\Freedom Desktop\\Program Manager II"
|
||||||
@@ -25,3 +26,4 @@
|
|||||||
|
|
||||||
/* Function Prototypes */
|
/* Function Prototypes */
|
||||||
BOOL InitializeRegistryKeys(VOID);
|
BOOL InitializeRegistryKeys(VOID);
|
||||||
|
BOOL IsProgMgrDefaultShell(VOID);
|
||||||
|
|||||||
71
progmgr/wndproc.c
Normal file
71
progmgr/wndproc.c
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
/* * * * * * * *\
|
||||||
|
WNDPROC.C -
|
||||||
|
Copyright (c) 2023 freedom7341, Freedom Desktop
|
||||||
|
DESCRIPTION -
|
||||||
|
Program Manager's window procedure.
|
||||||
|
LICENSE INFORMATION -
|
||||||
|
MIT License, see LICENSE.txt in the root folder
|
||||||
|
\* * * * * * * */
|
||||||
|
|
||||||
|
/* Headers */
|
||||||
|
#include "progmgr.h"
|
||||||
|
#include "resource.h"
|
||||||
|
#include "registry.h"
|
||||||
|
// #define WIN32_LEAN_AND_MEAN
|
||||||
|
#include <Windows.h>
|
||||||
|
|
||||||
|
/* Functions */
|
||||||
|
|
||||||
|
/* * * *\
|
||||||
|
WndProc -
|
||||||
|
Program Manager's window procedure.
|
||||||
|
RETURNS -
|
||||||
|
Zero if nothing, otherwise returns the good stuff.
|
||||||
|
\* * * */
|
||||||
|
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
|
{
|
||||||
|
|
||||||
|
switch (message)
|
||||||
|
{
|
||||||
|
case WM_CREATE:
|
||||||
|
{
|
||||||
|
RECT rc;
|
||||||
|
CLIENTCREATESTRUCT ccs;
|
||||||
|
|
||||||
|
hwndProgMgr = hWnd;
|
||||||
|
|
||||||
|
// ccs.hWindowMenu = GetSubMenu(GetMenu(hWnd), IDM_WINDOW);
|
||||||
|
// ccs.idFirstChild = IDM_CHILDSTART;
|
||||||
|
|
||||||
|
GetClientRect(hwndProgMgr, &rc);
|
||||||
|
|
||||||
|
hwndMDIClient = CreateWindow(TEXT("MDIClient"),
|
||||||
|
NULL,
|
||||||
|
WS_CLIPCHILDREN | WS_CHILD | WS_VSCROLL | WS_HSCROLL | WS_BORDER,
|
||||||
|
rc.left - 1, rc.top - 1,
|
||||||
|
rc.right + 2, rc.bottom + 2,
|
||||||
|
hWnd, (HMENU)1, hAppInstance,
|
||||||
|
(LPTSTR)&ccs);
|
||||||
|
if (!hwndMDIClient) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//case WM_SYSCOMMAND:
|
||||||
|
//{
|
||||||
|
// if (wParam == IDM_TASKMGR) {
|
||||||
|
//ShellExecute(hwndProgMgr, &TEXT("OPEN\0"), &TEXT("TASKMGR.EXE\0"), NULL, NULL, SW_NORMAL);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
//break;
|
||||||
|
//}
|
||||||
|
case WM_CLOSE:
|
||||||
|
PostQuitMessage(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return DefWindowProc(hWnd, message, wParam, lParam);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user