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 */
29 #define REGEDIT_DECLARE_FUNCTIONS
32 TCHAR g_pszDefaultValueName
[64];
34 BOOL
ProcessCmdLine(LPSTR lpCmdLine
);
37 /*******************************************************************************
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 const TCHAR szFrameClass
[] = {'R','E','G','E','D','I','T','_','F','R','A','M','E',0};
53 const TCHAR szChildClass
[] = {'R','E','G','E','D','I','T',0};
56 /*******************************************************************************
59 * FUNCTION: InitInstance(HANDLE, int)
61 * PURPOSE: Saves instance handle and creates main window
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
= {
73 CS_HREDRAW
| CS_VREDRAW
/*style*/,
78 LoadIcon(hInstance
, MAKEINTRESOURCE(IDI_REGEDIT
)),
79 LoadCursor(0, IDC_ARROW
),
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
= {
90 CS_HREDRAW
| CS_VREDRAW
/*style*/,
93 sizeof(HANDLE
)/*cbWndExtra*/,
95 LoadIcon(hInstance
, MAKEINTRESOURCE(IDI_REGEDIT
)),
96 LoadCursor(0, IDC_ARROW
),
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 */
116 nClipboardFormat
= RegisterClipboardFormat(strClipboardFormat
);
117 /* if (nClipboardFormat == 0) {
118 DWORD dwError = GetLastError();
121 hFrameWnd
= CreateWindowEx(0, MAKEINTRESOURCE(hFrameWndClass
), szTitle
,
122 WS_OVERLAPPEDWINDOW
| WS_EX_CLIENTEDGE
,
123 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
124 NULL
, hMenuFrame
, hInstance
, NULL
/*lpParam*/);
130 /* Create the status bar */
131 hStatusBar
= CreateStatusWindow(WS_VISIBLE
|WS_CHILD
|WS_CLIPSIBLINGS
|SBT_NOBORDERS
,
132 _T(""), hFrameWnd
, STATUS_WINDOW
);
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
);
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);
159 int APIENTRY
WinMain(HINSTANCE hInstance
,
160 HINSTANCE hPrevInstance
,
167 if (ProcessCmdLine(lpCmdLine
)) {
171 /* Initialize global strings */
172 LoadString(hInstance
, IDS_APP_TITLE
, szTitle
, COUNT_OF(szTitle
));
173 LoadString(hInstance
, IDS_REGISTRY_DEFAULT_VALUE
, g_pszDefaultValueName
, COUNT_OF(g_pszDefaultValueName
));
175 /* Store instance handle in our global variable */
178 /* Perform application initialization */
179 if (!InitInstance(hInstance
, nCmdShow
)) {
182 hAccel
= LoadAccelerators(hInstance
, (LPCTSTR
)IDC_REGEDIT
);
184 /* Main message loop */
185 while (GetMessage(&msg
, NULL
, 0, 0)) {
186 if (!TranslateAccelerator(hFrameWnd
, hAccel
, &msg
)
187 && !TranslateChildTabMessage(&msg
)) {
188 TranslateMessage(&msg
);
189 DispatchMessage(&msg
);