4 * Copyright 2006 Piotr Caban
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
24 #include "wine/unicode.h"
27 static const WCHAR wszRegEdit
[] = { '\\','r','e','g','e','d','i','t','.','e','x','e','\0' };
28 static const WCHAR wszFormat
[] = { '<','o','b','j','e','c','t','\n',' ',' ',' ',
29 'c','l','a','s','s','i','d','=','\"','c','l','s','i','d',':','%','s','\"','\n',
30 '>','\n','<','/','o','b','j','e','c','t','>','\0' };
32 static INT_PTR CALLBACK
SysConfProc(HWND hDlgWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
35 WCHAR buffer
[MAX_LOAD_STRING
];
38 WCHAR wszReg
[] = { 'S','o','f','t','w','a','r','e','\\',
39 'M','i','c','r','o','s','o','f','t','\\','O','L','E','\\','\0' };
40 WCHAR wszEnableDCOM
[] = { 'E','n','a','b','l','e','D','C','O','M','\0' };
41 WCHAR wszEnableRemote
[] = { 'E','n','a','b','l','e',
42 'R','e','m','o','t','e','C','o','n','n','e','c','t','\0' };
43 WCHAR wszYes
[] = { 'Y', '\0' };
44 WCHAR wszNo
[] = { 'N', '\0' };
49 if(RegOpenKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
) != ERROR_SUCCESS
)
50 RegCreateKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
);
52 bufSize
= sizeof(buffer
);
53 if(RegGetValueW(hKey
, NULL
, wszEnableDCOM
, RRF_RT_REG_SZ
,
54 NULL
, buffer
, &bufSize
) != ERROR_SUCCESS
)
56 bufSize
= sizeof(wszYes
);
57 RegSetValueExW(hKey
, wszEnableDCOM
, 0, REG_SZ
, (BYTE
*)wszYes
, bufSize
);
60 CheckDlgButton(hDlgWnd
, IDC_ENABLEDCOM
,
61 buffer
[0]=='Y' ? BST_CHECKED
: BST_UNCHECKED
);
63 bufSize
= sizeof(buffer
);
64 if(RegGetValueW(hKey
, NULL
, wszEnableRemote
, RRF_RT_REG_SZ
,
65 NULL
, buffer
, &bufSize
) != ERROR_SUCCESS
)
67 bufSize
= sizeof(wszYes
);
68 RegSetValueExW(hKey
, wszEnableRemote
, 0, REG_SZ
, (BYTE
*)wszYes
, bufSize
);
71 CheckDlgButton(hDlgWnd
, IDC_ENABLEREMOTE
,
72 buffer
[0]=='Y' ? BST_CHECKED
: BST_UNCHECKED
);
77 switch(LOWORD(wParam
)) {
79 bufSize
= sizeof(wszYes
);
81 RegOpenKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
);
83 RegSetValueExW(hKey
, wszEnableDCOM
, 0, REG_SZ
,
84 IsDlgButtonChecked(hDlgWnd
, IDC_ENABLEDCOM
) == BST_CHECKED
?
85 (BYTE
*)wszYes
: (BYTE
*)wszNo
, bufSize
);
87 RegSetValueExW(hKey
, wszEnableRemote
, 0, REG_SZ
,
88 IsDlgButtonChecked(hDlgWnd
, IDC_ENABLEREMOTE
) == BST_CHECKED
?
89 (BYTE
*)wszYes
: (BYTE
*)wszNo
, bufSize
);
93 EndDialog(hDlgWnd
, IDOK
);
96 EndDialog(hDlgWnd
, IDCANCEL
);
104 static INT_PTR CALLBACK
CreateInstOnProc(HWND hDlgWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
111 switch(LOWORD(wParam
)) {
113 memset(globals
.wszMachineName
, 0, sizeof(WCHAR
[MAX_LOAD_STRING
]));
114 hEdit
= GetDlgItem(hDlgWnd
, IDC_MACHINE
);
116 if (GetWindowTextLengthW(hEdit
)>0)
117 GetWindowTextW(hEdit
, globals
.wszMachineName
, MAX_LOAD_STRING
);
119 EndDialog(hDlgWnd
, IDOK
);
122 EndDialog(hDlgWnd
, IDCANCEL
);
130 static void InitOpenFileName(HWND hWnd
, OPENFILENAMEW
*pofn
, WCHAR
*wszFilter
,
131 WCHAR
*wszTitle
, WCHAR
*wszFileName
)
133 memset(pofn
, 0, sizeof(OPENFILENAMEW
));
134 pofn
->lStructSize
= sizeof(OPENFILENAMEW
);
135 pofn
->hwndOwner
= hWnd
;
136 pofn
->hInstance
= globals
.hMainInst
;
138 pofn
->lpstrTitle
= wszTitle
;
139 pofn
->lpstrFilter
= wszFilter
;
140 pofn
->nFilterIndex
= 0;
141 pofn
->lpstrFile
= wszFileName
;
142 pofn
->nMaxFile
= MAX_LOAD_STRING
;
143 pofn
->Flags
= OFN_HIDEREADONLY
| OFN_ENABLESIZING
;
146 static void CopyClsid(HTREEITEM item
)
150 memset(&tvi
, 0, sizeof(TVITEMW
));
152 tvi
.cchTextMax
= MAX_LOAD_STRING
;
153 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
155 if(OpenClipboard(globals
.hMainWnd
) && EmptyClipboard() && tvi
.lParam
)
157 HANDLE hClipData
= GlobalAlloc(GHND
, sizeof(WCHAR
[MAX_LOAD_STRING
]));
158 LPVOID pLoc
= GlobalLock(hClipData
);
160 lstrcpyW(pLoc
, ((ITEM_INFO
*)tvi
.lParam
)->clsid
);
161 GlobalUnlock(hClipData
);
162 SetClipboardData(CF_UNICODETEXT
, hClipData
);
167 static void CopyHTMLTag(HTREEITEM item
)
171 memset(&tvi
, 0, sizeof(TVITEMW
));
173 tvi
.cchTextMax
= MAX_LOAD_STRING
;
174 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
176 if(OpenClipboard(globals
.hMainWnd
) && EmptyClipboard() && tvi
.lParam
)
178 HANDLE hClipData
= GlobalAlloc(GHND
, sizeof(WCHAR
[MAX_LOAD_STRING
]));
179 LPVOID pLoc
= GlobalLock(hClipData
);
180 int clsidLen
= lstrlenW(((ITEM_INFO
*)tvi
.lParam
)->clsid
)-1;
182 ((ITEM_INFO
*)tvi
.lParam
)->clsid
[clsidLen
] = '\0';
183 wsprintfW(pLoc
, wszFormat
, ((ITEM_INFO
*)tvi
.lParam
)->clsid
+1);
184 ((ITEM_INFO
*)tvi
.lParam
)->clsid
[clsidLen
] = '}';
186 GlobalUnlock(hClipData
);
187 SetClipboardData(CF_UNICODETEXT
, hClipData
);
192 static void ResizeChild(void)
194 RECT client
, stat
, tool
;
196 MoveWindow(globals
.hStatusBar
, 0, 0, 0, 0, TRUE
);
197 MoveWindow(globals
.hToolBar
, 0, 0, 0, 0, TRUE
);
199 if(IsWindowVisible(globals
.hStatusBar
))
200 GetClientRect(globals
.hStatusBar
, &stat
);
201 else stat
.bottom
= 0;
203 if(IsWindowVisible(globals
.hToolBar
))
205 GetClientRect(globals
.hToolBar
, &tool
);
208 else tool
.bottom
= 0;
210 GetClientRect(globals
.hMainWnd
, &client
);
211 MoveWindow(globals
.hPaneWnd
, 0, tool
.bottom
,
212 client
.right
, client
.bottom
-tool
.bottom
-stat
.bottom
, TRUE
);
215 void RefreshMenu(HTREEITEM item
)
219 HMENU hMenu
= GetMenu(globals
.hMainWnd
);
221 memset(&tvi
, 0, sizeof(TVITEMW
));
223 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
225 parent
= (HTREEITEM
)SendMessageW(globals
.hTree
, TVM_GETNEXTITEM
,
226 TVGN_PARENT
, (LPARAM
)item
);
228 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_CREATEINST
, FALSE
);
229 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_RELEASEINST
, FALSE
);
230 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_VIEW
, FALSE
);
232 if(tvi
.lParam
&& ((ITEM_INFO
*)tvi
.lParam
)->cFlag
&SHOWALL
)
234 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
235 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_ENABLED
);
236 EnableMenuItem(hMenu
, IDM_VIEW
, MF_GRAYED
);
238 if(!((ITEM_INFO
*)tvi
.lParam
)->loaded
)
240 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_ENABLED
);
241 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_ENABLED
);
242 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
243 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_CREATEINST
, TRUE
);
247 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
248 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
249 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_ENABLED
);
250 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_RELEASEINST
, TRUE
);
253 else if(tvi
.lParam
&&
254 (((ITEM_INFO
*)tvi
.lParam
)->cFlag
&INTERFACE
|| parent
==tree
.hTL
))
256 EnableMenuItem(hMenu
, IDM_TYPEINFO
, MF_GRAYED
);
257 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
258 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
259 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
260 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
261 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_GRAYED
);
262 EnableMenuItem(hMenu
, IDM_VIEW
, MF_ENABLED
);
263 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_VIEW
, TRUE
);
267 EnableMenuItem(hMenu
, IDM_TYPEINFO
, MF_GRAYED
);
268 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
269 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
270 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
271 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_GRAYED
);
272 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_GRAYED
);
273 EnableMenuItem(hMenu
, IDM_VIEW
, MF_GRAYED
);
276 if(parent
==tree
.hAID
|| parent
==tree
.hGBCC
)
277 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
280 static int MenuCommand(WPARAM wParam
, HWND hWnd
)
284 WCHAR wszAbout
[MAX_LOAD_STRING
];
289 LoadStringW(globals
.hMainInst
, IDS_ABOUT
, wszAbout
,
290 sizeof(wszAbout
)/sizeof(wszAbout
[0]));
291 ShellAboutW(hWnd
, wszAbout
, NULL
, NULL
);
294 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
295 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
299 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
300 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
301 CopyHTMLTag(hSelect
);
304 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
305 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
306 CreateInst(hSelect
, NULL
);
307 SendMessageW(globals
.hTree
, TVM_EXPAND
, TVE_EXPAND
, (LPARAM
)hSelect
);
309 case IDM_CREATEINSTON
:
310 if(DialogBoxW(0, MAKEINTRESOURCEW(DLG_CREATEINSTON
),
311 hWnd
, CreateInstOnProc
) == IDCANCEL
) break;
312 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
313 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
314 CreateInst(hSelect
, globals
.wszMachineName
);
315 SendMessageW(globals
.hTree
, TVM_EXPAND
, TVE_EXPAND
, (LPARAM
)hSelect
);
317 case IDM_RELEASEINST
:
318 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
319 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
320 ReleaseInst(hSelect
);
321 RefreshMenu(hSelect
);
322 RefreshDetails(hSelect
);
325 globals
.bExpert
= !globals
.bExpert
;
326 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
327 globals
.bExpert
? MF_CHECKED
: MF_UNCHECKED
);
329 if(globals
.bExpert
) AddTreeEx();
331 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
332 TVM_GETNEXTITEM
, TVGN_CHILD
, (LPARAM
)TVI_ROOT
);
333 SendMessageW(globals
.hTree
, TVM_SELECTITEM
, 0, (LPARAM
)hSelect
);
334 RefreshMenu(hSelect
);
336 case IDM_FLAG_INSERV
:
337 vis
= globals
.dwClsCtx
&CLSCTX_INPROC_SERVER
;
338 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_INPROC_SERVER
);
339 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_INPROC_SERVER
);
340 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
341 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
342 vis
? MF_UNCHECKED
: MF_CHECKED
);
344 case IDM_FLAG_INHANDL
:
345 vis
= globals
.dwClsCtx
&CLSCTX_INPROC_HANDLER
;
346 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_INPROC_HANDLER
);
347 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_INPROC_HANDLER
);
348 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
349 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
350 vis
? MF_UNCHECKED
: MF_CHECKED
);
352 case IDM_FLAG_LOCSERV
:
353 vis
= globals
.dwClsCtx
&CLSCTX_LOCAL_SERVER
;
354 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_LOCAL_SERVER
);
355 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_LOCAL_SERVER
);
356 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
357 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
358 vis
? MF_UNCHECKED
: MF_CHECKED
);
360 case IDM_FLAG_REMSERV
:
361 vis
= globals
.dwClsCtx
&CLSCTX_REMOTE_SERVER
;
362 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_REMOTE_SERVER
);
363 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_REMOTE_SERVER
);
364 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
365 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
366 vis
? MF_UNCHECKED
: MF_CHECKED
);
370 if(globals
.bExpert
) AddTreeEx();
372 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
373 TVM_GETNEXTITEM
, TVGN_CHILD
, (LPARAM
)TVI_ROOT
);
374 SendMessageW(globals
.hTree
, TVM_SELECTITEM
, 0, (LPARAM
)hSelect
);
375 RefreshMenu(hSelect
);
380 PROCESS_INFORMATION pi
;
383 GetWindowsDirectoryW( app
, MAX_PATH
- sizeof(wszRegEdit
)/sizeof(WCHAR
) );
384 lstrcatW( app
, wszRegEdit
);
385 memset(&si
, 0, sizeof(si
));
387 if (CreateProcessW(app
, app
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &si
, &pi
))
389 CloseHandle(pi
.hProcess
);
390 CloseHandle(pi
.hThread
);
395 vis
= IsWindowVisible(globals
.hStatusBar
);
396 ShowWindow(globals
.hStatusBar
, vis
? SW_HIDE
: SW_SHOW
);
397 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
398 vis
? MF_UNCHECKED
: MF_CHECKED
);
402 DialogBoxW(0, MAKEINTRESOURCEW(DLG_SYSCONF
), hWnd
, SysConfProc
);
405 vis
= IsWindowVisible(globals
.hToolBar
);
406 ShowWindow(globals
.hToolBar
, vis
? SW_HIDE
: SW_SHOW
);
407 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
408 vis
? MF_UNCHECKED
: MF_CHECKED
);
413 static const WCHAR filterW
[] = {'%','s','%','c','*','.','t','l','b',';','*','.','o','l','b',';','*','.','d','l','l',';','*','.','o','c','x',';','*','.','e','x','e','%','c','%','s','%','c','*','.','*','%','c',0};
415 static WCHAR wszTitle
[MAX_LOAD_STRING
];
416 static WCHAR wszName
[MAX_LOAD_STRING
];
417 WCHAR filter_typelib
[MAX_LOAD_STRING
], filter_all
[MAX_LOAD_STRING
], filter
[MAX_PATH
];
419 LoadStringW(globals
.hMainInst
, IDS_OPEN
, wszTitle
, sizeof(wszTitle
)/sizeof(wszTitle
[0]));
420 LoadStringW(globals
.hMainInst
, IDS_OPEN_FILTER_TYPELIB
, filter_typelib
, sizeof(filter_typelib
)/sizeof(WCHAR
));
421 LoadStringW(globals
.hMainInst
, IDS_OPEN_FILTER_ALL
, filter_all
, sizeof(filter_all
)/sizeof(WCHAR
));
422 wsprintfW( filter
, filterW
, filter_typelib
, 0, 0, filter_all
, 0, 0 );
423 InitOpenFileName(hWnd
, &ofn
, filter
, wszTitle
, wszName
);
424 if(GetOpenFileNameW(&ofn
)) CreateTypeLibWindow(globals
.hMainInst
, wszName
);
428 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
429 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
430 if(IsInterface(hSelect
)) InterfaceViewer(hSelect
);
431 else CreateTypeLibWindow(globals
.hMainInst
, NULL
);
440 static void UpdateStatusBar(int itemID
)
442 WCHAR info
[MAX_LOAD_STRING
];
444 if(!LoadStringW(globals
.hMainInst
, itemID
, info
, sizeof(info
)/sizeof(info
[0])))
445 LoadStringW(globals
.hMainInst
, IDS_READY
, info
, sizeof(info
)/sizeof(info
[0]));
447 SendMessageW(globals
.hStatusBar
, SB_SETTEXTW
, 0, (LPARAM
)info
);
450 static LRESULT CALLBACK
WndProc(HWND hWnd
, UINT uMsg
,
451 WPARAM wParam
, LPARAM lParam
)
457 PaneRegisterClassW();
458 TypeLibRegisterClassW();
459 if(!CreatePanedWindow(hWnd
, &globals
.hPaneWnd
, globals
.hMainInst
))
461 SetLeft(globals
.hPaneWnd
, CreateTreeWindow(globals
.hMainInst
));
462 SetRight(globals
.hPaneWnd
, CreateDetailsWindow(globals
.hMainInst
));
463 SetFocus(globals
.hTree
);
466 MenuCommand(LOWORD(wParam
), hWnd
);
474 UpdateStatusBar(LOWORD(wParam
));
477 SetFocus(globals
.hTree
);
480 if(wParam
== SIZE_MINIMIZED
) break;
484 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
489 static BOOL
InitApplication(HINSTANCE hInst
)
492 WCHAR wszAppName
[MAX_LOAD_STRING
];
494 LoadStringW(hInst
, IDS_APPNAME
, wszAppName
, sizeof(wszAppName
)/sizeof(wszAppName
[0]));
496 memset(&wc
, 0, sizeof(WNDCLASSW
));
497 wc
.lpfnWndProc
= WndProc
;
498 wc
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
499 wc
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
500 wc
.lpszMenuName
= MAKEINTRESOURCEW(IDM_MENU
);
501 wc
.lpszClassName
= wszAppName
;
503 if(!RegisterClassW(&wc
))
509 static BOOL
InitInstance(HINSTANCE hInst
, int nCmdShow
)
512 WCHAR wszAppName
[MAX_LOAD_STRING
];
513 WCHAR wszTitle
[MAX_LOAD_STRING
];
515 {0, 0, 0, BTNS_SEP
, {0, 0}, 0, 0},
516 {0, IDM_BIND
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
517 {1, IDM_TYPELIB
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
518 {0, 0, 0, BTNS_SEP
, {0, 0}, 0, 0},
519 {2, IDM_REGEDIT
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
520 {0, 0, 0, BTNS_SEP
, {0, 0}, 0, 0},
521 {3, IDM_CREATEINST
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
522 {4, IDM_RELEASEINST
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
523 {0, 0, 0, BTNS_SEP
, {0, 0}, 0, 0},
524 {5, IDM_VIEW
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0}
527 LoadStringW(hInst
, IDS_APPNAME
, wszAppName
, sizeof(wszAppName
)/sizeof(wszAppName
[0]));
528 LoadStringW(hInst
, IDS_APPTITLE
, wszTitle
, sizeof(wszTitle
)/sizeof(wszTitle
[0]));
530 hWnd
= CreateWindowW(wszAppName
, wszTitle
, WS_OVERLAPPEDWINDOW
,
531 CW_USEDEFAULT
, 0, CW_USEDEFAULT
, 0, NULL
, NULL
, hInst
, NULL
);
532 if(!hWnd
) return FALSE
;
534 globals
.hStatusBar
= CreateStatusWindowW(WS_VISIBLE
|WS_CHILD
,
537 globals
.hToolBar
= CreateToolbarEx(hWnd
, WS_CHILD
|WS_VISIBLE
, 0, 1, hInst
,
538 IDB_TOOLBAR
, tB
, 10, 16, 16, 16, 16, sizeof(TBBUTTON
));
539 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_CREATEINST
, FALSE
);
540 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_RELEASEINST
, FALSE
);
541 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_VIEW
, FALSE
);
543 globals
.hMainWnd
= hWnd
;
544 globals
.hMainInst
= hInst
;
545 globals
.bExpert
= TRUE
;
546 globals
.dwClsCtx
= CLSCTX_INPROC_SERVER
|CLSCTX_LOCAL_SERVER
;
548 ShowWindow(hWnd
, nCmdShow
);
554 int APIENTRY
WinMain(HINSTANCE hInst
, HINSTANCE hPrevInst
, LPSTR lpCmdLine
, int nCmdShow
)
559 if(!InitApplication(hInst
))
562 if(!InitInstance(hInst
, nCmdShow
))
565 hAccelTable
= LoadAcceleratorsW(hInst
, MAKEINTRESOURCEW(IDA_OLEVIEW
));
567 while(GetMessageW(&msg
, NULL
, 0, 0))
569 if(TranslateAcceleratorW(globals
.hMainWnd
, hAccelTable
, &msg
)) continue;
571 TranslateMessage(&msg
);
572 DispatchMessageW(&msg
);