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
c166cb38
Commit
c166cb38
authored
Apr 20, 2010
by
Joel Holdsworth
Committed by
Alexandre Julliard
Apr 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Installed a Tango compliant application icon.
parent
c2ebd0d5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
1 deletion
+12
-1
Makefile.in
programs/winecfg/Makefile.in
+3
-0
main.c
programs/winecfg/main.c
+5
-1
resource.h
programs/winecfg/resource.h
+1
-0
winecfg.ico
programs/winecfg/winecfg.ico
+0
-0
winecfg.rc
programs/winecfg/winecfg.rc
+3
-0
winecfg.svg
programs/winecfg/winecfg.svg
+0
-0
No files found.
programs/winecfg/Makefile.in
View file @
c166cb38
...
...
@@ -44,4 +44,7 @@ RC_SRCS = \
Zh.rc
\
winecfg.rc
SVG_SRCS
=
\
winecfg.svg
@MAKE_PROG_RULES@
programs/winecfg/main.c
View file @
c166cb38
...
...
@@ -48,6 +48,10 @@ PropSheetCallback (HWND hWnd, UINT uMsg, LPARAM lParam)
break
;
case
PSCB_INITIALIZED
:
/* Set the window icon */
SendMessageW
(
hWnd
,
WM_SETICON
,
ICON_BIG
,
(
LPARAM
)
LoadIconW
(
(
HINSTANCE
)
GetWindowLongPtrW
(
hWnd
,
GWLP_HINSTANCE
),
MAKEINTRESOURCEW
(
IDI_WINECFG
)
));
break
;
default:
...
...
@@ -218,7 +222,7 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
psh
.
dwFlags
=
PSH_PROPSHEETPAGE
|
PSH_USEICONID
|
PSH_USECALLBACK
;
psh
.
hwndParent
=
hOwner
;
psh
.
hInstance
=
hInstance
;
psh
.
u
.
pszIcon
=
NULL
;
psh
.
u
.
pszIcon
=
MAKEINTRESOURCEW
(
IDI_WINECFG
)
;
psh
.
pszCaption
=
load_string
(
IDS_WINECFG_TITLE
);
psh
.
nPages
=
NUM_PROPERTY_PAGES
;
psh
.
u3
.
ppsp
=
psp
;
...
...
programs/winecfg/resource.h
View file @
c166cb38
...
...
@@ -45,6 +45,7 @@
#define IDS_SHELL_FOLDER 16
#define IDS_LINKS_TO 17
#define IDS_WINECFG_TITLE_APP 18
/* App specific title */
#define IDI_WINECFG 100
#define IDD_MAINDLG 101
#define IDB_WINE 104
#define IDD_ABOUTCFG 107
...
...
programs/winecfg/winecfg.ico
0 → 100644
View file @
c166cb38
24.6 KB
programs/winecfg/winecfg.rc
View file @
c166cb38
...
...
@@ -23,6 +23,9 @@
#include "config.h" /* Needed for the PACKAGE_STRING definition */
#include "resource.h"
/* @makedep: winecfg.ico */
IDI_WINECFG ICON winecfg.ico
/* @makedep: idb_wine.bmp */
IDB_WINE BITMAP idb_wine.bmp
...
...
programs/winecfg/winecfg.svg
0 → 100644
View file @
c166cb38
This diff is collapsed.
Click to expand it.
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