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
22 #include "wine/unicode.h"
25 static const WCHAR wszRegEdit
[] = { '\\','r','e','g','e','d','i','t','.','e','x','e','\0' };
26 static WCHAR wszFormat
[] = { '<','o','b','j','e','c','t','\n',' ',' ',' ',
27 'c','l','a','s','s','i','d','=','\"','c','l','s','i','d',':','%','s','\"','\n',
28 '>','\n','<','/','o','b','j','e','c','t','>','\0' };
30 static INT_PTR CALLBACK
SysConfProc(HWND hDlgWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
33 WCHAR buffer
[MAX_LOAD_STRING
];
36 WCHAR wszReg
[] = { 'S','o','f','t','w','a','r','e','\\',
37 'M','i','c','r','o','s','o','f','t','\\','O','L','E','\\','\0' };
38 WCHAR wszEnableDCOM
[] = { 'E','n','a','b','l','e','D','C','O','M','\0' };
39 WCHAR wszEnableRemote
[] = { 'E','n','a','b','l','e',
40 'R','e','m','o','t','e','C','o','n','n','e','c','t','\0' };
41 WCHAR wszYes
[] = { 'Y', '\0' };
42 WCHAR wszNo
[] = { 'N', '\0' };
47 if(RegOpenKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
) != ERROR_SUCCESS
)
48 RegCreateKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
);
50 bufSize
= sizeof(buffer
);
51 if(RegGetValueW(hKey
, NULL
, wszEnableDCOM
, RRF_RT_REG_SZ
,
52 NULL
, buffer
, &bufSize
) != ERROR_SUCCESS
)
54 bufSize
= sizeof(wszYes
);
55 RegSetValueExW(hKey
, wszEnableDCOM
, 0, REG_SZ
, (BYTE
*)wszYes
, bufSize
);
58 CheckDlgButton(hDlgWnd
, IDC_ENABLEDCOM
,
59 buffer
[0]=='Y' ? BST_CHECKED
: BST_UNCHECKED
);
61 bufSize
= sizeof(buffer
);
62 if(RegGetValueW(hKey
, NULL
, wszEnableRemote
, RRF_RT_REG_SZ
,
63 NULL
, buffer
, &bufSize
) != ERROR_SUCCESS
)
65 bufSize
= sizeof(wszYes
);
66 RegSetValueExW(hKey
, wszEnableRemote
, 0, REG_SZ
, (BYTE
*)wszYes
, bufSize
);
69 CheckDlgButton(hDlgWnd
, IDC_ENABLEREMOTE
,
70 buffer
[0]=='Y' ? BST_CHECKED
: BST_UNCHECKED
);
75 switch(LOWORD(wParam
)) {
77 bufSize
= sizeof(wszYes
);
79 RegOpenKeyW(HKEY_LOCAL_MACHINE
, wszReg
, &hKey
);
81 RegSetValueExW(hKey
, wszEnableDCOM
, 0, REG_SZ
,
82 IsDlgButtonChecked(hDlgWnd
, IDC_ENABLEDCOM
) == BST_CHECKED
?
83 (BYTE
*)wszYes
: (BYTE
*)wszNo
, bufSize
);
85 RegSetValueExW(hKey
, wszEnableRemote
, 0, REG_SZ
,
86 IsDlgButtonChecked(hDlgWnd
, IDC_ENABLEREMOTE
) == BST_CHECKED
?
87 (BYTE
*)wszYes
: (BYTE
*)wszNo
, bufSize
);
91 EndDialog(hDlgWnd
, IDOK
);
94 EndDialog(hDlgWnd
, IDCANCEL
);
102 static INT_PTR CALLBACK
CreateInstOnProc(HWND hDlgWnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
109 switch(LOWORD(wParam
)) {
111 memset(globals
.wszMachineName
, 0, sizeof(WCHAR
[MAX_LOAD_STRING
]));
112 hEdit
= GetDlgItem(hDlgWnd
, IDC_MACHINE
);
114 if (GetWindowTextLengthW(hEdit
)>0)
115 GetWindowTextW(hEdit
, globals
.wszMachineName
, MAX_LOAD_STRING
);
117 EndDialog(hDlgWnd
, IDOK
);
120 EndDialog(hDlgWnd
, IDCANCEL
);
128 static void InitOpenFileName(HWND hWnd
, OPENFILENAMEW
*pofn
, WCHAR
*wszFilter
,
129 WCHAR
*wszTitle
, WCHAR
*wszFileName
)
131 memset(pofn
, 0, sizeof(OPENFILENAMEW
));
132 pofn
->lStructSize
= sizeof(OPENFILENAMEW
);
133 pofn
->hwndOwner
= hWnd
;
134 pofn
->hInstance
= globals
.hMainInst
;
136 pofn
->lpstrTitle
= wszTitle
;
137 pofn
->lpstrFilter
= wszFilter
;
138 pofn
->nFilterIndex
= 0;
139 pofn
->lpstrFile
= wszFileName
;
140 pofn
->nMaxFile
= MAX_LOAD_STRING
;
141 pofn
->Flags
= OFN_HIDEREADONLY
| OFN_ENABLESIZING
;
144 static void CopyClsid(HTREEITEM item
)
148 memset(&tvi
, 0, sizeof(TVITEMW
));
150 tvi
.cchTextMax
= MAX_LOAD_STRING
;
151 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
153 if(OpenClipboard(globals
.hMainWnd
) && EmptyClipboard() && tvi
.lParam
)
155 HANDLE hClipData
= GlobalAlloc(GHND
, sizeof(WCHAR
[MAX_LOAD_STRING
]));
156 LPVOID pLoc
= GlobalLock(hClipData
);
158 lstrcpyW(pLoc
, ((ITEM_INFO
*)tvi
.lParam
)->clsid
);
159 GlobalUnlock(hClipData
);
160 hClipData
= SetClipboardData(CF_UNICODETEXT
, hClipData
);
165 static void CopyHTMLTag(HTREEITEM item
)
169 memset(&tvi
, 0, sizeof(TVITEMW
));
171 tvi
.cchTextMax
= MAX_LOAD_STRING
;
172 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
174 if(OpenClipboard(globals
.hMainWnd
) && EmptyClipboard() && tvi
.lParam
)
176 HANDLE hClipData
= GlobalAlloc(GHND
, sizeof(WCHAR
[MAX_LOAD_STRING
]));
177 LPVOID pLoc
= GlobalLock(hClipData
);
178 int clsidLen
= lstrlenW(((ITEM_INFO
*)tvi
.lParam
)->clsid
)-1;
180 ((ITEM_INFO
*)tvi
.lParam
)->clsid
[clsidLen
] = '\0';
181 wsprintfW(pLoc
, wszFormat
, ((ITEM_INFO
*)tvi
.lParam
)->clsid
+1);
182 ((ITEM_INFO
*)tvi
.lParam
)->clsid
[clsidLen
] = '}';
184 GlobalUnlock(hClipData
);
185 hClipData
= SetClipboardData(CF_UNICODETEXT
, hClipData
);
190 static void ResizeChild(void)
192 RECT client
, stat
, tool
;
194 MoveWindow(globals
.hStatusBar
, 0, 0, 0, 0, TRUE
);
195 MoveWindow(globals
.hToolBar
, 0, 0, 0, 0, TRUE
);
197 if(IsWindowVisible(globals
.hStatusBar
))
198 GetClientRect(globals
.hStatusBar
, &stat
);
199 else stat
.bottom
= 0;
201 if(IsWindowVisible(globals
.hToolBar
))
203 GetClientRect(globals
.hToolBar
, &tool
);
206 else tool
.bottom
= 0;
208 GetClientRect(globals
.hMainWnd
, &client
);
209 MoveWindow(globals
.hPaneWnd
, 0, tool
.bottom
,
210 client
.right
, client
.bottom
-tool
.bottom
-stat
.bottom
, TRUE
);
213 void RefreshMenu(HTREEITEM item
)
217 HMENU hMenu
= GetMenu(globals
.hMainWnd
);
219 memset(&tvi
, 0, sizeof(TVITEMW
));
221 SendMessageW(globals
.hTree
, TVM_GETITEMW
, 0, (LPARAM
)&tvi
);
223 parent
= (HTREEITEM
)SendMessageW(globals
.hTree
, TVM_GETNEXTITEM
,
224 TVGN_PARENT
, (LPARAM
)item
);
226 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_CREATEINST
, FALSE
);
227 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_RELEASEINST
, FALSE
);
228 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_VIEW
, FALSE
);
230 if(tvi
.lParam
&& ((ITEM_INFO
*)tvi
.lParam
)->cFlag
&SHOWALL
)
232 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
233 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_ENABLED
);
234 EnableMenuItem(hMenu
, IDM_VIEW
, MF_GRAYED
);
236 if(!((ITEM_INFO
*)tvi
.lParam
)->loaded
)
238 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_ENABLED
);
239 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_ENABLED
);
240 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
241 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_CREATEINST
, TRUE
);
245 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
246 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
247 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_ENABLED
);
248 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_RELEASEINST
, TRUE
);
251 else if(tvi
.lParam
&&
252 (((ITEM_INFO
*)tvi
.lParam
)->cFlag
&INTERFACE
|| parent
==tree
.hTL
))
254 EnableMenuItem(hMenu
, IDM_TYPEINFO
, MF_GRAYED
);
255 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
256 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
257 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
258 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
259 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_GRAYED
);
260 EnableMenuItem(hMenu
, IDM_VIEW
, MF_ENABLED
);
261 SendMessageW(globals
.hToolBar
, TB_ENABLEBUTTON
, IDM_VIEW
, TRUE
);
265 EnableMenuItem(hMenu
, IDM_TYPEINFO
, MF_GRAYED
);
266 EnableMenuItem(hMenu
, IDM_CREATEINST
, MF_GRAYED
);
267 EnableMenuItem(hMenu
, IDM_CREATEINSTON
, MF_GRAYED
);
268 EnableMenuItem(hMenu
, IDM_RELEASEINST
, MF_GRAYED
);
269 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_GRAYED
);
270 EnableMenuItem(hMenu
, IDM_HTMLTAG
, MF_GRAYED
);
271 EnableMenuItem(hMenu
, IDM_VIEW
, MF_GRAYED
);
274 if(parent
==tree
.hAID
|| parent
==tree
.hGBCC
)
275 EnableMenuItem(hMenu
, IDM_COPYCLSID
, MF_ENABLED
);
278 static int MenuCommand(WPARAM wParam
, HWND hWnd
)
282 WCHAR wszAbout
[MAX_LOAD_STRING
];
283 WCHAR wszAboutVer
[MAX_LOAD_STRING
];
288 LoadStringW(globals
.hMainInst
, IDS_ABOUT
, wszAbout
,
289 sizeof(wszAbout
)/sizeof(wszAbout
[0]));
290 LoadStringW(globals
.hMainInst
, IDS_ABOUTVER
, wszAboutVer
,
291 sizeof(wszAboutVer
)/sizeof(wszAboutVer
[0]));
292 ShellAboutW(hWnd
, wszAbout
, wszAboutVer
, NULL
);
295 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
296 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
300 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
301 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
302 CopyHTMLTag(hSelect
);
305 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
306 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
307 CreateInst(hSelect
, NULL
);
308 SendMessageW(globals
.hTree
, TVM_EXPAND
, TVE_EXPAND
, (LPARAM
)hSelect
);
310 case IDM_CREATEINSTON
:
311 if(DialogBoxW(0, MAKEINTRESOURCEW(DLG_CREATEINSTON
),
312 hWnd
, CreateInstOnProc
) == IDCANCEL
) break;
313 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
314 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
315 CreateInst(hSelect
, globals
.wszMachineName
);
316 SendMessageW(globals
.hTree
, TVM_EXPAND
, TVE_EXPAND
, (LPARAM
)hSelect
);
318 case IDM_RELEASEINST
:
319 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
320 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
321 ReleaseInst(hSelect
);
322 RefreshMenu(hSelect
);
323 RefreshDetails(hSelect
);
326 globals
.bExpert
= !globals
.bExpert
;
327 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
328 globals
.bExpert
? MF_CHECKED
: MF_UNCHECKED
);
330 if(globals
.bExpert
) AddTreeEx();
332 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
333 TVM_GETNEXTITEM
, TVGN_CHILD
, (LPARAM
)TVI_ROOT
);
334 SendMessageW(globals
.hTree
, TVM_SELECTITEM
, 0, (LPARAM
)hSelect
);
335 RefreshMenu(hSelect
);
337 case IDM_FLAG_INSERV
:
338 vis
= globals
.dwClsCtx
&CLSCTX_INPROC_SERVER
;
339 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_INPROC_SERVER
);
340 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_INPROC_SERVER
);
341 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
342 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
343 vis
? MF_UNCHECKED
: MF_CHECKED
);
345 case IDM_FLAG_INHANDL
:
346 vis
= globals
.dwClsCtx
&CLSCTX_INPROC_HANDLER
;
347 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_INPROC_HANDLER
);
348 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_INPROC_HANDLER
);
349 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
350 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
351 vis
? MF_UNCHECKED
: MF_CHECKED
);
353 case IDM_FLAG_LOCSERV
:
354 vis
= globals
.dwClsCtx
&CLSCTX_LOCAL_SERVER
;
355 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_LOCAL_SERVER
);
356 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_LOCAL_SERVER
);
357 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
358 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
359 vis
? MF_UNCHECKED
: MF_CHECKED
);
361 case IDM_FLAG_REMSERV
:
362 vis
= globals
.dwClsCtx
&CLSCTX_REMOTE_SERVER
;
363 globals
.dwClsCtx
= globals
.dwClsCtx
&(~CLSCTX_REMOTE_SERVER
);
364 globals
.dwClsCtx
= globals
.dwClsCtx
|((~vis
)&CLSCTX_REMOTE_SERVER
);
365 if(!globals
.dwClsCtx
) globals
.dwClsCtx
= vis
;
366 else CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
367 vis
? MF_UNCHECKED
: MF_CHECKED
);
371 if(globals
.bExpert
) AddTreeEx();
373 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
374 TVM_GETNEXTITEM
, TVGN_CHILD
, (LPARAM
)TVI_ROOT
);
375 SendMessageW(globals
.hTree
, TVM_SELECTITEM
, 0, (LPARAM
)hSelect
);
376 RefreshMenu(hSelect
);
381 PROCESS_INFORMATION pi
;
384 GetWindowsDirectoryW( app
, MAX_PATH
- sizeof(wszRegEdit
)/sizeof(WCHAR
) );
385 lstrcatW( app
, wszRegEdit
);
386 memset(&si
, 0, sizeof(si
));
388 if (CreateProcessW(app
, app
, NULL
, NULL
, FALSE
, 0, NULL
, NULL
, &si
, &pi
))
390 CloseHandle(pi
.hProcess
);
391 CloseHandle(pi
.hThread
);
396 vis
= IsWindowVisible(globals
.hStatusBar
);
397 ShowWindow(globals
.hStatusBar
, vis
? SW_HIDE
: SW_SHOW
);
398 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
399 vis
? MF_UNCHECKED
: MF_CHECKED
);
403 DialogBoxW(0, MAKEINTRESOURCEW(DLG_SYSCONF
), hWnd
, SysConfProc
);
406 vis
= IsWindowVisible(globals
.hToolBar
);
407 ShowWindow(globals
.hToolBar
, vis
? SW_HIDE
: SW_SHOW
);
408 CheckMenuItem(GetMenu(hWnd
), LOWORD(wParam
),
409 vis
? MF_UNCHECKED
: MF_CHECKED
);
414 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};
416 static WCHAR wszTitle
[MAX_LOAD_STRING
];
417 static WCHAR wszName
[MAX_LOAD_STRING
];
418 WCHAR filter_typelib
[MAX_LOAD_STRING
], filter_all
[MAX_LOAD_STRING
], filter
[MAX_PATH
];
420 LoadStringW(globals
.hMainInst
, IDS_OPEN
, wszTitle
, sizeof(wszTitle
)/sizeof(wszTitle
[0]));
421 LoadStringW(globals
.hMainInst
, IDS_OPEN_FILTER_TYPELIB
, filter_typelib
, sizeof(filter_typelib
)/sizeof(WCHAR
));
422 LoadStringW(globals
.hMainInst
, IDS_OPEN_FILTER_ALL
, filter_all
, sizeof(filter_all
)/sizeof(WCHAR
));
423 snprintfW( filter
, MAX_PATH
, filterW
, filter_typelib
, 0, 0, filter_all
, 0, 0 );
424 InitOpenFileName(hWnd
, &ofn
, filter
, wszTitle
, wszName
);
425 if(GetOpenFileNameW(&ofn
)) CreateTypeLibWindow(globals
.hMainInst
, wszName
);
429 hSelect
= (HTREEITEM
)SendMessageW(globals
.hTree
,
430 TVM_GETNEXTITEM
, TVGN_CARET
, 0);
431 if(IsInterface(hSelect
)) InterfaceViewer(hSelect
);
432 else CreateTypeLibWindow(globals
.hMainInst
, NULL
);
441 static void UpdateStatusBar(int itemID
)
443 WCHAR info
[MAX_LOAD_STRING
];
445 if(!LoadStringW(globals
.hMainInst
, itemID
, info
, sizeof(info
)/sizeof(info
[0])))
446 LoadStringW(globals
.hMainInst
, IDS_READY
, info
, sizeof(info
)/sizeof(info
[0]));
448 SendMessageW(globals
.hStatusBar
, SB_SETTEXTW
, 0, (LPARAM
)info
);
451 static LRESULT CALLBACK
WndProc(HWND hWnd
, UINT uMsg
,
452 WPARAM wParam
, LPARAM lParam
)
458 PaneRegisterClassW();
459 TypeLibRegisterClassW();
460 if(!CreatePanedWindow(hWnd
, &globals
.hPaneWnd
, globals
.hMainInst
))
462 SetLeft(globals
.hPaneWnd
, CreateTreeWindow(globals
.hMainInst
));
463 SetRight(globals
.hPaneWnd
, CreateDetailsWindow(globals
.hMainInst
));
464 SetFocus(globals
.hTree
);
467 MenuCommand(LOWORD(wParam
), hWnd
);
475 UpdateStatusBar(LOWORD(wParam
));
478 SetFocus(globals
.hTree
);
481 if(wParam
== SIZE_MINIMIZED
) break;
485 return DefWindowProcW(hWnd
, uMsg
, wParam
, lParam
);
490 static BOOL
InitApplication(HINSTANCE hInst
)
493 WCHAR wszAppName
[MAX_LOAD_STRING
];
495 LoadStringW(hInst
, IDS_APPNAME
, wszAppName
, sizeof(wszAppName
)/sizeof(wszAppName
[0]));
497 memset(&wc
, 0, sizeof(WNDCLASSW
));
498 wc
.lpfnWndProc
= WndProc
;
499 wc
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
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
)
561 if(!InitApplication(hInst
))
565 if(!InitInstance(hInst
, nCmdShow
))
568 hAccelTable
= LoadAcceleratorsW(hInst
, MAKEINTRESOURCEW(IDA_OLEVIEW
));
570 while(GetMessageW(&msg
, NULL
, 0, 0))
572 if(TranslateAcceleratorW(globals
.hMainWnd
, hAccelTable
, &msg
)) continue;
574 TranslateMessage(&msg
);
575 DispatchMessageW(&msg
);