Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
102e1f46
Commit
102e1f46
authored
Jun 26, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Jun 26, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kind of implemented OleMetaFilePictFromIconAndLabel.
parent
74e77c27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
1 deletion
+45
-1
ole2.spec
if1632/ole2.spec
+1
-1
ole2.c
ole/ole2.c
+44
-0
No files found.
if1632/ole2.spec
View file @
102e1f46
...
...
@@ -56,7 +56,7 @@ type win16
53 stub OLEGETICONOFCLASS
54 stub CREATEILOCKBYTESONHGLOBAL
55 stub GETHGLOBALFROMILOCKBYTES
56
stub OLEMETAFILEPICTFROMICONANDLABEL
56
pascal16 OleMetaFilePictFromIconAndLabel(word str str word) OleMetaFilePictFromIconAndLabel16
57 stub GETCLASSFILE
58 stub OLEDRAW
59 stub OLECREATEDEFAULTHANDLER
...
...
ole/ole2.c
View file @
102e1f46
...
...
@@ -17,6 +17,7 @@
#include "hook.h"
#include "commctrl.h"
#include "wine/obj_clientserver.h"
#include "wine/wingdi16.h"
#include "debug.h"
#include "ole2ver.h"
#include "winreg.h"
...
...
@@ -2100,3 +2101,46 @@ static void OLEUTL_ReadRegistryDWORDValue(
}
}
/******************************************************************************
* OleMetaFilePictFromIconAndLabel
*
* Returns a global memory handle to a metafile which contains the icon and
* label given.
* I guess the result of that should look somehow like desktop icons.
* If no hIcon is given, we load the icon via lpszSourceFile and iIconIndex.
* This code might be wrong at some places.
*/
HGLOBAL16
WINAPI
OleMetaFilePictFromIconAndLabel16
(
HICON
hIcon
,
LPOLESTR
lpszLabel
,
LPOLESTR
lpszSourceFile
,
UINT16
iIconIndex
)
{
METAFILEPICT16
*
mf
;
HGLOBAL16
hmf
;
HDC16
hdc
;
FIXME
(
ole
,
"(%04x, '%s', '%s', %d): incorrect metrics, please try to correct them !
\n\n\n
"
,
hIcon
,
(
LPCSTR
)
lpszLabel
,
(
LPCSTR
)
lpszSourceFile
,
iIconIndex
);
if
(
!
hIcon
)
{
if
(
lpszSourceFile
)
{
HINSTANCE16
hInstance
=
LoadLibrary16
((
LPCSTR
)
lpszSourceFile
);
/* load the icon at index from lpszSourceFile */
hIcon
=
(
HICON16
)
LoadIconA
(
hInstance
,
(
LPCSTR
)(
DWORD
)
iIconIndex
);
FreeLibrary16
(
hInstance
);
}
else
return
(
HGLOBAL
)
NULL
;
}
hdc
=
CreateMetaFile16
(
NULL
);
DrawIcon
(
hdc
,
0
,
0
,
hIcon
);
/* FIXME */
TextOut16
(
hdc
,
0
,
0
,
(
LPCSTR
)
lpszLabel
,
1
);
/* FIXME */
hmf
=
GlobalAlloc16
(
0
,
sizeof
(
METAFILEPICT16
));
mf
=
(
METAFILEPICT16
*
)
GlobalLock16
(
hmf
);
mf
->
mm
=
MM_ANISOTROPIC
;
mf
->
xExt
=
20
;
/* FIXME: bogus */
mf
->
yExt
=
20
;
/* dito */
mf
->
hMF
=
CloseMetaFile16
(
hdc
);
return
hmf
;
}
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