Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2571da61
Commit
2571da61
authored
Jun 14, 2006
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleview: Added details window base.
parent
4cfa6a15
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
189 additions
and
2 deletions
+189
-2
En.rc
programs/oleview/En.rc
+5
-1
Makefile.in
programs/oleview/Makefile.in
+1
-0
details.c
programs/oleview/details.c
+160
-0
main.h
programs/oleview/main.h
+15
-1
oleview.c
programs/oleview/oleview.c
+2
-0
resource.h
programs/oleview/resource.h
+4
-0
tree.c
programs/oleview/tree.c
+2
-0
No files found.
programs/oleview/En.rc
View file @
2571da61
...
...
@@ -74,7 +74,7 @@ IDM_MENU MENU
STRINGTABLE
{
IDS_APPNAME "OleView"
IDS_APPTITLE "
Wine
OleView"
IDS_APPTITLE "OleView"
IDS_READY "Ready"
IDS_ABOUT "OleView - OLE/COM Object Viewer"
IDS_ABOUTVER "version 1.0"
...
...
@@ -110,6 +110,10 @@ STRINGTABLE
IDS_TL_VER, "ver."
IDS_TREE_I, "Interfaces"
IDS_TAB_REG, "Registry"
IDS_TAB_IMPL, "Implementation"
IDS_TAB_ACTIV, "Activation"
IDS_CGCOFAIL, "CoGetClassObject failed."
IDS_ERROR_UNKN, "Unknown error"
}
programs/oleview/Makefile.in
View file @
2571da61
...
...
@@ -9,6 +9,7 @@ EXTRALIBS = -luuid
EXTRADEFS
=
-DUNICODE
C_SRCS
=
\
details.c
\
oleview.c
\
pane.c
\
tree.c
...
...
programs/oleview/details.c
0 → 100644
View file @
2571da61
/*
* OleView (details.c)
*
* Copyright 2006 Piotr Caban
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "main.h"
DETAILS
details
;
void
RefreshDetails
(
HTREEITEM
item
)
{
TVITEM
tvi
;
WCHAR
wszBuf
[
MAX_LOAD_STRING
];
WCHAR
wszStaticText
[
MAX_LOAD_STRING
];
const
WCHAR
wszFormat
[]
=
{
'%'
,
's'
,
'\n'
,
'%'
,
's'
,
'\0'
};
BOOL
show
;
memset
(
&
tvi
,
0
,
sizeof
(
TVITEM
));
memset
(
&
wszStaticText
,
0
,
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]));
tvi
.
mask
=
TVIF_TEXT
;
tvi
.
hItem
=
item
;
tvi
.
pszText
=
wszBuf
;
tvi
.
cchTextMax
=
MAX_LOAD_STRING
;
SendMessage
(
globals
.
hTree
,
TVM_GETITEM
,
0
,
(
LPARAM
)
&
tvi
);
if
(
tvi
.
lParam
)
wsprintfW
(
wszStaticText
,
wszFormat
,
tvi
.
pszText
,
((
ITEM_INFO
*
)
tvi
.
lParam
)
->
clsid
);
else
strcpyW
(
wszStaticText
,
tvi
.
pszText
);
SetWindowText
(
details
.
hStatic
,
wszStaticText
);
SendMessage
(
details
.
hTab
,
TCM_SETCURSEL
,
0
,
0
);
if
(
tvi
.
lParam
&&
((
ITEM_INFO
*
)
tvi
.
lParam
)
->
cFlag
&
SHOWALL
)
{
if
(
TabCtrl_GetItemCount
(
details
.
hTab
)
==
1
)
{
TCITEM
tci
;
memset
(
&
tci
,
0
,
sizeof
(
TCITEM
));
tci
.
mask
=
TCIF_TEXT
;
tci
.
pszText
=
wszBuf
;
tci
.
cchTextMax
=
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]);
LoadString
(
globals
.
hMainInst
,
IDS_TAB_IMPL
,
wszBuf
,
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]));
SendMessage
(
details
.
hTab
,
TCM_INSERTITEM
,
1
,
(
LPARAM
)
&
tci
);
LoadString
(
globals
.
hMainInst
,
IDS_TAB_ACTIV
,
wszBuf
,
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]));
SendMessage
(
details
.
hTab
,
TCM_INSERTITEM
,
2
,
(
LPARAM
)
&
tci
);
}
}
else
{
SendMessage
(
details
.
hTab
,
TCM_DELETEITEM
,
2
,
0
);
SendMessage
(
details
.
hTab
,
TCM_DELETEITEM
,
1
,
0
);
}
show
=
CreateRegPath
(
item
,
wszBuf
,
MAX_LOAD_STRING
);
ShowWindow
(
details
.
hTab
,
show
?
SW_SHOW
:
SW_HIDE
);
/* FIXME Next line deals with TreeView_EnsureVisible bug */
SendMessage
(
details
.
hReg
,
TVM_ENSUREVISIBLE
,
0
,
SendMessage
(
details
.
hReg
,
TVM_GETNEXTITEM
,
TVGN_CHILD
,
(
LPARAM
)
TVI_ROOT
));
SendMessage
(
details
.
hReg
,
TVM_DELETEITEM
,
0
,
(
LPARAM
)
TVI_ROOT
);
}
void
CreateTabCtrl
(
HWND
hWnd
)
{
TCITEM
tci
;
WCHAR
buffer
[
MAX_LOAD_STRING
];
memset
(
&
tci
,
0
,
sizeof
(
TCITEM
));
tci
.
mask
=
TCIF_TEXT
;
tci
.
pszText
=
buffer
;
tci
.
cchTextMax
=
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]);
details
.
hTab
=
CreateWindow
(
WC_TABCONTROL
,
NULL
,
WS_CHILD
|
WS_VISIBLE
,
0
,
0
,
0
,
0
,
hWnd
,
(
HMENU
)
TAB_WINDOW
,
globals
.
hMainInst
,
NULL
);
ShowWindow
(
details
.
hTab
,
SW_HIDE
);
LoadString
(
globals
.
hMainInst
,
IDS_TAB_REG
,
buffer
,
sizeof
(
WCHAR
[
MAX_LOAD_STRING
]));
SendMessage
(
details
.
hTab
,
TCM_INSERTITEM
,
0
,
(
LPARAM
)
&
tci
);
details
.
hReg
=
CreateWindowEx
(
WS_EX_CLIENTEDGE
,
WC_TREEVIEW
,
NULL
,
WS_CHILD
|
WS_VISIBLE
|
TVS_HASLINES
,
0
,
0
,
0
,
0
,
details
.
hTab
,
NULL
,
globals
.
hMainInst
,
NULL
);
}
LRESULT
CALLBACK
DetailsProc
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
int
sel
;
switch
(
uMsg
)
{
case
WM_CREATE
:
{
const
WCHAR
wszStatic
[]
=
{
'S'
,
't'
,
'a'
,
't'
,
'i'
,
'c'
,
'\0'
};
details
.
hStatic
=
CreateWindow
(
wszStatic
,
NULL
,
WS_CHILD
|
WS_VISIBLE
,
0
,
0
,
0
,
0
,
hWnd
,
NULL
,
globals
.
hMainInst
,
NULL
);
CreateTabCtrl
(
hWnd
);
}
break
;
case
WM_SIZE
:
MoveWindow
(
details
.
hStatic
,
0
,
0
,
LOWORD
(
lParam
),
40
,
TRUE
);
MoveWindow
(
details
.
hTab
,
3
,
40
,
LOWORD
(
lParam
)
-
6
,
HIWORD
(
lParam
)
-
43
,
TRUE
);
MoveWindow
(
details
.
hReg
,
10
,
34
,
LOWORD
(
lParam
)
-
26
,
HIWORD
(
lParam
)
-
87
,
TRUE
);
break
;
case
WM_NOTIFY
:
if
((
int
)
wParam
!=
TAB_WINDOW
)
break
;
switch
(((
LPNMHDR
)
lParam
)
->
code
)
{
case
TCN_SELCHANGE
:
ShowWindow
(
details
.
hReg
,
SW_HIDE
);
sel
=
TabCtrl_GetCurSel
(
details
.
hTab
);
if
(
sel
==
0
)
ShowWindow
(
details
.
hReg
,
SW_SHOW
);
break
;
}
break
;
default:
return
DefWindowProc
(
hWnd
,
uMsg
,
wParam
,
lParam
);
}
return
0
;
}
HWND
CreateDetailsWindow
(
HINSTANCE
hInst
)
{
WNDCLASS
wcd
;
const
WCHAR
wszDetailsClass
[]
=
{
'D'
,
'E'
,
'T'
,
'A'
,
'I'
,
'L'
,
'S'
,
'\0'
};
memset
(
&
wcd
,
0
,
sizeof
(
WNDCLASS
));
wcd
.
lpfnWndProc
=
DetailsProc
;
wcd
.
lpszClassName
=
wszDetailsClass
;
wcd
.
hbrBackground
=
(
HBRUSH
)
COLOR_WINDOW
;
if
(
!
RegisterClass
(
&
wcd
))
return
NULL
;
globals
.
hDetails
=
CreateWindowEx
(
WS_EX_CLIENTEDGE
,
wszDetailsClass
,
NULL
,
WS_CHILD
|
WS_VISIBLE
,
0
,
0
,
0
,
0
,
globals
.
hPaneWnd
,
NULL
,
hInst
,
NULL
);
return
globals
.
hDetails
;
}
programs/oleview/main.h
View file @
2571da61
...
...
@@ -33,6 +33,7 @@
#define STATUS_WINDOW 2000
#define TREE_WINDOW 2001
#define TAB_WINDOW 2002
/*ItemInfo flags */
#define REGTOP 1
...
...
@@ -44,9 +45,10 @@ typedef struct
{
HWND
hMainWnd
;
HWND
hPaneWnd
;
HWND
hTree
;
HWND
hStatusBar
;
HWND
hToolBar
;
HWND
hTree
;
HWND
hDetails
;
HINSTANCE
hMainInst
;
BOOL
bExpert
;
DWORD
dwClsCtx
;
...
...
@@ -85,10 +87,21 @@ typedef struct
IUnknown
*
pU
;
}
ITEM_INFO
;
typedef
struct
{
HWND
hStatic
;
HWND
hTab
;
HWND
hReg
;
}
DETAILS
;
extern
GLOBALS
globals
;
extern
TREE
tree
;
/* Predefinitions: */
/* details.c */
HWND
CreateDetailsWindow
(
HINSTANCE
hInst
);
void
RefreshDetails
(
HTREEITEM
item
);
/* oleview.c */
void
RefreshMenu
(
HTREEITEM
item
);
...
...
@@ -102,5 +115,6 @@ void EmptyTree(void);
void
AddTreeEx
(
void
);
void
AddTree
(
void
);
HWND
CreateTreeWindow
(
HINSTANCE
hInst
);
BOOL
CreateRegPath
(
HTREEITEM
item
,
WCHAR
*
buffer
,
int
bufSize
);
void
CreateInst
(
HTREEITEM
item
);
void
ReleaseInst
(
HTREEITEM
item
);
programs/oleview/oleview.c
View file @
2571da61
...
...
@@ -132,6 +132,7 @@ int MenuCommand(WPARAM wParam, HWND hWnd)
hSelect
=
TreeView_GetSelection
(
globals
.
hTree
);
ReleaseInst
(
hSelect
);
RefreshMenu
(
hSelect
);
RefreshDetails
(
hSelect
);
break
;
case
IDM_EXPERT
:
globals
.
bExpert
=
!
globals
.
bExpert
;
...
...
@@ -238,6 +239,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg,
if
(
!
CreatePanedWindow
(
hWnd
,
&
globals
.
hPaneWnd
,
globals
.
hMainInst
))
PostQuitMessage
(
0
);
SetLeft
(
globals
.
hPaneWnd
,
CreateTreeWindow
(
globals
.
hMainInst
));
SetRight
(
globals
.
hPaneWnd
,
CreateDetailsWindow
(
globals
.
hMainInst
));
SetFocus
(
globals
.
hTree
);
break
;
case
WM_COMMAND
:
...
...
programs/oleview/resource.h
View file @
2571da61
...
...
@@ -61,5 +61,9 @@
#define IDS_TL_VER 221
#define IDS_TREE_I 230
#define IDS_TAB_REG 250
#define IDS_TAB_IMPL 251
#define IDS_TAB_ACTIV 252
#define IDS_CGCOFAIL 300
#define IDS_ERROR_UNKN 301
programs/oleview/tree.c
View file @
2571da61
...
...
@@ -161,6 +161,7 @@ void CreateInst(HTREEITEM item)
}
RefreshMenu
(
item
);
RefreshDetails
(
item
);
}
void
ReleaseInst
(
HTREEITEM
item
)
...
...
@@ -640,6 +641,7 @@ LRESULT CALLBACK TreeProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
break
;
case
TVN_SELCHANGED
:
RefreshMenu
(((
NMTREEVIEW
*
)
lParam
)
->
itemNew
.
hItem
);
RefreshDetails
(((
NMTREEVIEW
*
)
lParam
)
->
itemNew
.
hItem
);
break
;
}
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment