url: Fix prototype of FileProtocolHandlerA.
[wine/wine-kai.git] / programs / regedit / main.c
blob50939f5067d7426496a3778a547e8a584170876f
1 /*
2 * Regedit main function
4 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
22 #include <windows.h>
23 #include <commctrl.h>
24 #include <stdlib.h>
25 #include <tchar.h>
26 #include <stdio.h>
27 #include <fcntl.h>
29 #define REGEDIT_DECLARE_FUNCTIONS
30 #include "main.h"
32 TCHAR g_pszDefaultValueName[64];
34 BOOL ProcessCmdLine(LPSTR lpCmdLine);
37 /*******************************************************************************
38 * Global Variables:
41 HINSTANCE hInst;
42 HWND hFrameWnd;
43 HWND hStatusBar;
44 HMENU hMenuFrame;
45 HMENU hPopupMenus = 0;
46 UINT nClipboardFormat;
47 LPCTSTR strClipboardFormat = _T("TODO: SET CORRECT FORMAT");
50 #define MAX_LOADSTRING 100
51 TCHAR szTitle[MAX_LOADSTRING];
52 TCHAR szFrameClass[MAX_LOADSTRING];
53 TCHAR szChildClass[MAX_LOADSTRING];
56 /*******************************************************************************
59 * FUNCTION: InitInstance(HANDLE, int)
61 * PURPOSE: Saves instance handle and creates main window
63 * COMMENTS:
65 * In this function, we save the instance handle in a global variable and
66 * create and display the main program window.
69 static BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
71 WNDCLASSEX wcFrame = {
72 sizeof(WNDCLASSEX),
73 CS_HREDRAW | CS_VREDRAW/*style*/,
74 FrameWndProc,
75 0/*cbClsExtra*/,
76 0/*cbWndExtra*/,
77 hInstance,
78 LoadIcon(hInstance, MAKEINTRESOURCE(IDI_REGEDIT)),
79 LoadCursor(0, IDC_ARROW),
80 0/*hbrBackground*/,
81 0/*lpszMenuName*/,
82 szFrameClass,
83 (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDI_REGEDIT), IMAGE_ICON,
84 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED)
86 ATOM hFrameWndClass = RegisterClassEx(&wcFrame); /* register frame window class */
88 WNDCLASSEX wcChild = {
89 sizeof(WNDCLASSEX),
90 CS_HREDRAW | CS_VREDRAW/*style*/,
91 ChildWndProc,
92 0/*cbClsExtra*/,
93 sizeof(HANDLE)/*cbWndExtra*/,
94 hInstance,
95 LoadIcon(hInstance, MAKEINTRESOURCE(IDI_REGEDIT)),
96 LoadCursor(0, IDC_ARROW),
97 0/*hbrBackground*/,
98 0/*lpszMenuName*/,
99 szChildClass,
100 (HICON)LoadImage(hInstance, MAKEINTRESOURCE(IDI_REGEDIT), IMAGE_ICON,
101 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED)
104 ATOM hChildWndClass = RegisterClassEx(&wcChild); /* register child windows class */
105 hChildWndClass = hChildWndClass; /* warning eater */
107 hMenuFrame = LoadMenu(hInstance, MAKEINTRESOURCE(IDR_REGEDIT_MENU));
108 hPopupMenus = LoadMenu(hInstance, MAKEINTRESOURCE(IDR_POPUP_MENUS));
110 /* Initialize the Windows Common Controls DLL */
111 InitCommonControls();
113 /* register our hex editor control */
114 HexEdit_Register();
116 nClipboardFormat = RegisterClipboardFormat(strClipboardFormat);
117 /* if (nClipboardFormat == 0) {
118 DWORD dwError = GetLastError();
119 } */
121 hFrameWnd = CreateWindowEx(0, (LPCTSTR)(int)hFrameWndClass, szTitle,
122 WS_OVERLAPPEDWINDOW | WS_EX_CLIENTEDGE,
123 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
124 NULL, hMenuFrame, hInstance, NULL/*lpParam*/);
126 if (!hFrameWnd) {
127 return FALSE;
130 /* Create the status bar */
131 hStatusBar = CreateStatusWindow(WS_VISIBLE|WS_CHILD|WS_CLIPSIBLINGS|SBT_NOBORDERS,
132 _T(""), hFrameWnd, STATUS_WINDOW);
133 if (hStatusBar) {
134 /* Create the status bar panes */
135 SetupStatusBar(hFrameWnd, FALSE);
136 CheckMenuItem(GetSubMenu(hMenuFrame, ID_VIEW_MENU), ID_VIEW_STATUSBAR, MF_BYCOMMAND|MF_CHECKED);
138 ShowWindow(hFrameWnd, nCmdShow);
139 UpdateWindow(hFrameWnd);
140 return TRUE;
143 /******************************************************************************/
145 static void ExitInstance(void)
147 DestroyMenu(hMenuFrame);
150 static BOOL TranslateChildTabMessage(MSG *msg)
152 if (msg->message != WM_KEYDOWN) return FALSE;
153 if (msg->wParam != VK_TAB) return FALSE;
154 if (GetParent(msg->hwnd) != g_pChildWnd->hWnd) return FALSE;
155 PostMessage(g_pChildWnd->hWnd, WM_COMMAND, ID_SWITCH_PANELS, 0);
156 return TRUE;
159 int APIENTRY WinMain(HINSTANCE hInstance,
160 HINSTANCE hPrevInstance,
161 LPSTR lpCmdLine,
162 int nCmdShow)
164 MSG msg;
165 HACCEL hAccel;
167 if (ProcessCmdLine(lpCmdLine)) {
168 return 0;
171 /* Initialize global strings */
172 LoadString(hInstance, IDS_APP_TITLE, szTitle, COUNT_OF(szTitle));
173 LoadString(hInstance, IDC_REGEDIT_FRAME, szFrameClass, COUNT_OF(szFrameClass));
174 LoadString(hInstance, IDC_REGEDIT, szChildClass, COUNT_OF(szChildClass));
175 LoadString(hInstance, IDS_REGISTRY_DEFAULT_VALUE, g_pszDefaultValueName, COUNT_OF(g_pszDefaultValueName));
177 /* Store instance handle in our global variable */
178 hInst = hInstance;
180 /* Perform application initialization */
181 if (!InitInstance(hInstance, nCmdShow)) {
182 return FALSE;
184 hAccel = LoadAccelerators(hInstance, (LPCTSTR)IDC_REGEDIT);
186 /* Main message loop */
187 while (GetMessage(&msg, NULL, 0, 0)) {
188 if (!TranslateAccelerator(hFrameWnd, hAccel, &msg)
189 && !TranslateChildTabMessage(&msg)) {
190 TranslateMessage(&msg);
191 DispatchMessage(&msg);
194 ExitInstance();
195 return msg.wParam;