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
917e86dd
Commit
917e86dd
authored
Sep 08, 2017
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemenubuilder: Set StartupWMClass for shortcuts to exe files.
Signed-off-by:
Vincent Povirk
<
vincent@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
50b03369
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
14 deletions
+30
-14
winemenubuilder.c
programs/winemenubuilder/winemenubuilder.c
+30
-14
No files found.
programs/winemenubuilder/winemenubuilder.c
View file @
917e86dd
...
@@ -1446,13 +1446,14 @@ static DWORD register_menus_entry(const char *unix_file, const char *windows_fil
...
@@ -1446,13 +1446,14 @@ static DWORD register_menus_entry(const char *unix_file, const char *windows_fil
static
BOOL
write_desktop_entry
(
const
char
*
unix_link
,
const
char
*
location
,
const
char
*
linkname
,
static
BOOL
write_desktop_entry
(
const
char
*
unix_link
,
const
char
*
location
,
const
char
*
linkname
,
const
char
*
path
,
const
char
*
args
,
const
char
*
descr
,
const
char
*
path
,
const
char
*
args
,
const
char
*
descr
,
const
char
*
workdir
,
const
char
*
icon
)
const
char
*
workdir
,
const
char
*
icon
,
const
char
*
wmclass
)
{
{
FILE
*
file
;
FILE
*
file
;
WINE_TRACE
(
"(%s,%s,%s,%s,%s,%s,%s,%s)
\n
"
,
wine_dbgstr_a
(
unix_link
),
wine_dbgstr_a
(
location
),
WINE_TRACE
(
"(%s,%s,%s,%s,%s,%s,%s,%s
,%s
)
\n
"
,
wine_dbgstr_a
(
unix_link
),
wine_dbgstr_a
(
location
),
wine_dbgstr_a
(
linkname
),
wine_dbgstr_a
(
path
),
wine_dbgstr_a
(
args
),
wine_dbgstr_a
(
linkname
),
wine_dbgstr_a
(
path
),
wine_dbgstr_a
(
args
),
wine_dbgstr_a
(
descr
),
wine_dbgstr_a
(
workdir
),
wine_dbgstr_a
(
icon
));
wine_dbgstr_a
(
descr
),
wine_dbgstr_a
(
workdir
),
wine_dbgstr_a
(
icon
),
wine_dbgstr_a
(
wmclass
));
file
=
fopen
(
location
,
"w"
);
file
=
fopen
(
location
,
"w"
);
if
(
file
==
NULL
)
if
(
file
==
NULL
)
...
@@ -1470,6 +1471,8 @@ static BOOL write_desktop_entry(const char *unix_link, const char *location, con
...
@@ -1470,6 +1471,8 @@ static BOOL write_desktop_entry(const char *unix_link, const char *location, con
fprintf
(
file
,
"Path=%s
\n
"
,
workdir
);
fprintf
(
file
,
"Path=%s
\n
"
,
workdir
);
if
(
icon
&&
lstrlenA
(
icon
))
if
(
icon
&&
lstrlenA
(
icon
))
fprintf
(
file
,
"Icon=%s
\n
"
,
icon
);
fprintf
(
file
,
"Icon=%s
\n
"
,
icon
);
if
(
wmclass
&&
lstrlenA
(
wmclass
))
fprintf
(
file
,
"StartupWMClass=%s
\n
"
,
wmclass
);
fclose
(
file
);
fclose
(
file
);
...
@@ -1615,7 +1618,7 @@ end:
...
@@ -1615,7 +1618,7 @@ end:
}
}
static
BOOL
write_menu_entry
(
const
char
*
unix_link
,
const
char
*
link
,
const
char
*
path
,
const
char
*
args
,
static
BOOL
write_menu_entry
(
const
char
*
unix_link
,
const
char
*
link
,
const
char
*
path
,
const
char
*
args
,
const
char
*
descr
,
const
char
*
workdir
,
const
char
*
icon
)
const
char
*
descr
,
const
char
*
workdir
,
const
char
*
icon
,
const
char
*
wmclass
)
{
{
const
char
*
linkname
;
const
char
*
linkname
;
char
*
desktopPath
=
NULL
;
char
*
desktopPath
=
NULL
;
...
@@ -1623,9 +1626,9 @@ static BOOL write_menu_entry(const char *unix_link, const char *link, const char
...
@@ -1623,9 +1626,9 @@ static BOOL write_menu_entry(const char *unix_link, const char *link, const char
char
*
filename
=
NULL
;
char
*
filename
=
NULL
;
BOOL
ret
=
TRUE
;
BOOL
ret
=
TRUE
;
WINE_TRACE
(
"(%s, %s, %s, %s, %s, %s, %s)
\n
"
,
wine_dbgstr_a
(
unix_link
),
wine_dbgstr_a
(
link
),
WINE_TRACE
(
"(%s, %s, %s, %s, %s, %s, %s
, %s
)
\n
"
,
wine_dbgstr_a
(
unix_link
),
wine_dbgstr_a
(
link
),
wine_dbgstr_a
(
path
),
wine_dbgstr_a
(
args
),
wine_dbgstr_a
(
descr
),
wine_dbgstr_a
(
path
),
wine_dbgstr_a
(
args
),
wine_dbgstr_a
(
descr
),
wine_dbgstr_a
(
workdir
),
wine_dbgstr_a
(
icon
));
wine_dbgstr_a
(
workdir
),
wine_dbgstr_a
(
icon
)
,
wine_dbgstr_a
(
wmclass
)
);
linkname
=
strrchr
(
link
,
'/'
);
linkname
=
strrchr
(
link
,
'/'
);
if
(
linkname
==
NULL
)
if
(
linkname
==
NULL
)
...
@@ -1649,7 +1652,7 @@ static BOOL write_menu_entry(const char *unix_link, const char *link, const char
...
@@ -1649,7 +1652,7 @@ static BOOL write_menu_entry(const char *unix_link, const char *link, const char
goto
end
;
goto
end
;
}
}
*
desktopDir
=
'/'
;
*
desktopDir
=
'/'
;
if
(
!
write_desktop_entry
(
unix_link
,
desktopPath
,
linkname
,
path
,
args
,
descr
,
workdir
,
icon
))
if
(
!
write_desktop_entry
(
unix_link
,
desktopPath
,
linkname
,
path
,
args
,
descr
,
workdir
,
icon
,
wmclass
))
{
{
WINE_WARN
(
"couldn't make desktop entry %s
\n
"
,
wine_dbgstr_a
(
desktopPath
));
WINE_WARN
(
"couldn't make desktop entry %s
\n
"
,
wine_dbgstr_a
(
desktopPath
));
ret
=
FALSE
;
ret
=
FALSE
;
...
@@ -2771,9 +2774,10 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2771,9 +2774,10 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
'\\'
,
's'
,
't'
,
'a'
,
'r'
,
't'
,
'.'
,
'e'
,
'x'
,
'e'
,
0
};
'\\'
,
's'
,
't'
,
'a'
,
'r'
,
't'
,
'.'
,
'e'
,
'x'
,
'e'
,
0
};
char
*
link_name
=
NULL
,
*
icon_name
=
NULL
,
*
work_dir
=
NULL
;
char
*
link_name
=
NULL
,
*
icon_name
=
NULL
,
*
work_dir
=
NULL
;
char
*
escaped_path
=
NULL
,
*
escaped_args
=
NULL
,
*
description
=
NULL
;
char
*
escaped_path
=
NULL
,
*
escaped_args
=
NULL
,
*
description
=
NULL
;
char
*
wmclass
=
NULL
;
WCHAR
szTmp
[
INFOTIPSIZE
];
WCHAR
szTmp
[
INFOTIPSIZE
];
WCHAR
szDescription
[
INFOTIPSIZE
],
szPath
[
MAX_PATH
],
szWorkDir
[
MAX_PATH
];
WCHAR
szDescription
[
INFOTIPSIZE
],
szPath
[
MAX_PATH
],
szWorkDir
[
MAX_PATH
];
WCHAR
szArgs
[
INFOTIPSIZE
],
szIconPath
[
MAX_PATH
];
WCHAR
szArgs
[
INFOTIPSIZE
],
szIconPath
[
MAX_PATH
]
,
szWMClass
[
MAX_PATH
]
;
int
iIconId
=
0
,
r
=
-
1
;
int
iIconId
=
0
,
r
=
-
1
;
DWORD
csidl
=
-
1
;
DWORD
csidl
=
-
1
;
HANDLE
hsem
=
NULL
;
HANDLE
hsem
=
NULL
;
...
@@ -2818,6 +2822,8 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2818,6 +2822,8 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
ExpandEnvironmentStringsW
(
szTmp
,
szIconPath
,
MAX_PATH
);
ExpandEnvironmentStringsW
(
szTmp
,
szIconPath
,
MAX_PATH
);
WINE_TRACE
(
"icon file : %s
\n
"
,
wine_dbgstr_w
(
szIconPath
)
);
WINE_TRACE
(
"icon file : %s
\n
"
,
wine_dbgstr_w
(
szIconPath
)
);
szWMClass
[
0
]
=
0
;
if
(
!
szPath
[
0
]
)
if
(
!
szPath
[
0
]
)
{
{
LPITEMIDLIST
pidl
=
NULL
;
LPITEMIDLIST
pidl
=
NULL
;
...
@@ -2880,6 +2886,14 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2880,6 +2886,14 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
GetWindowsDirectoryW
(
szPath
,
MAX_PATH
);
GetWindowsDirectoryW
(
szPath
,
MAX_PATH
);
lstrcatW
(
szPath
,
startW
);
lstrcatW
(
szPath
,
startW
);
}
}
else
{
/* FIXME: Use AppUserModelID if present. */
WCHAR
*
p
=
PathFindFileNameW
(
szPath
);
lstrcpyW
(
szWMClass
,
p
);
CharLowerW
(
szWMClass
);
}
/* convert app working dir */
/* convert app working dir */
if
(
szWorkDir
[
0
])
if
(
szWorkDir
[
0
])
...
@@ -2897,7 +2911,8 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2897,7 +2911,8 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
escaped_path
=
escape
(
szPath
);
escaped_path
=
escape
(
szPath
);
escaped_args
=
escape
(
szArgs
);
escaped_args
=
escape
(
szArgs
);
description
=
wchars_to_utf8_chars
(
szDescription
);
description
=
wchars_to_utf8_chars
(
szDescription
);
if
(
escaped_path
==
NULL
||
escaped_args
==
NULL
||
description
==
NULL
)
wmclass
=
wchars_to_utf8_chars
(
szWMClass
);
if
(
escaped_path
==
NULL
||
escaped_args
==
NULL
||
description
==
NULL
||
wmclass
==
NULL
)
{
{
WINE_ERR
(
"out of memory allocating/escaping parameters
\n
"
);
WINE_ERR
(
"out of memory allocating/escaping parameters
\n
"
);
goto
cleanup
;
goto
cleanup
;
...
@@ -2936,12 +2951,12 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2936,12 +2951,12 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
if
(
link_arg
)
if
(
link_arg
)
{
{
r
=
!
write_desktop_entry
(
unix_link
,
location
,
lastEntry
,
r
=
!
write_desktop_entry
(
unix_link
,
location
,
lastEntry
,
start_path
,
link_arg
,
description
,
work_dir
,
icon_name
);
start_path
,
link_arg
,
description
,
work_dir
,
icon_name
,
wmclass
);
HeapFree
(
GetProcessHeap
(),
0
,
link_arg
);
HeapFree
(
GetProcessHeap
(),
0
,
link_arg
);
}
}
}
}
else
else
r
=
!
write_desktop_entry
(
NULL
,
location
,
lastEntry
,
escaped_path
,
escaped_args
,
description
,
work_dir
,
icon_name
);
r
=
!
write_desktop_entry
(
NULL
,
location
,
lastEntry
,
escaped_path
,
escaped_args
,
description
,
work_dir
,
icon_name
,
wmclass
);
if
(
r
==
0
)
if
(
r
==
0
)
chmod
(
location
,
0755
);
chmod
(
location
,
0755
);
HeapFree
(
GetProcessHeap
(),
0
,
location
);
HeapFree
(
GetProcessHeap
(),
0
,
location
);
...
@@ -2952,7 +2967,7 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
...
@@ -2952,7 +2967,7 @@ static BOOL InvokeShellLinker( IShellLinkW *sl, LPCWSTR link, BOOL bWait )
char
*
link_arg
=
escape_unix_link_arg
(
unix_link
);
char
*
link_arg
=
escape_unix_link_arg
(
unix_link
);
if
(
link_arg
)
if
(
link_arg
)
{
{
r
=
!
write_menu_entry
(
unix_link
,
link_name
,
start_path
,
link_arg
,
description
,
work_dir
,
icon_name
);
r
=
!
write_menu_entry
(
unix_link
,
link_name
,
start_path
,
link_arg
,
description
,
work_dir
,
icon_name
,
wmclass
);
HeapFree
(
GetProcessHeap
(),
0
,
link_arg
);
HeapFree
(
GetProcessHeap
(),
0
,
link_arg
);
}
}
}
}
...
@@ -2967,6 +2982,7 @@ cleanup:
...
@@ -2967,6 +2982,7 @@ cleanup:
HeapFree
(
GetProcessHeap
(),
0
,
escaped_args
);
HeapFree
(
GetProcessHeap
(),
0
,
escaped_args
);
HeapFree
(
GetProcessHeap
(),
0
,
escaped_path
);
HeapFree
(
GetProcessHeap
(),
0
,
escaped_path
);
HeapFree
(
GetProcessHeap
(),
0
,
description
);
HeapFree
(
GetProcessHeap
(),
0
,
description
);
HeapFree
(
GetProcessHeap
(),
0
,
wmclass
);
HeapFree
(
GetProcessHeap
(),
0
,
unix_link
);
HeapFree
(
GetProcessHeap
(),
0
,
unix_link
);
HeapFree
(
GetProcessHeap
(),
0
,
start_path
);
HeapFree
(
GetProcessHeap
(),
0
,
start_path
);
...
@@ -3102,14 +3118,14 @@ static BOOL InvokeShellLinkerForURL( IUniformResourceLocatorW *url, LPCWSTR link
...
@@ -3102,14 +3118,14 @@ static BOOL InvokeShellLinkerForURL( IUniformResourceLocatorW *url, LPCWSTR link
location
=
heap_printf
(
"%s/%s.desktop"
,
xdg_desktop_dir
,
lastEntry
);
location
=
heap_printf
(
"%s/%s.desktop"
,
xdg_desktop_dir
,
lastEntry
);
if
(
location
)
if
(
location
)
{
{
r
=
!
write_desktop_entry
(
NULL
,
location
,
lastEntry
,
start_path
,
escaped_urlPath
,
NULL
,
NULL
,
icon_name
);
r
=
!
write_desktop_entry
(
NULL
,
location
,
lastEntry
,
start_path
,
escaped_urlPath
,
NULL
,
NULL
,
icon_name
,
NULL
);
if
(
r
==
0
)
if
(
r
==
0
)
chmod
(
location
,
0755
);
chmod
(
location
,
0755
);
HeapFree
(
GetProcessHeap
(),
0
,
location
);
HeapFree
(
GetProcessHeap
(),
0
,
location
);
}
}
}
}
else
else
r
=
!
write_menu_entry
(
unix_link
,
link_name
,
start_path
,
escaped_urlPath
,
NULL
,
NULL
,
icon_name
);
r
=
!
write_menu_entry
(
unix_link
,
link_name
,
start_path
,
escaped_urlPath
,
NULL
,
NULL
,
icon_name
,
NULL
);
ret
=
(
r
==
0
);
ret
=
(
r
==
0
);
ReleaseSemaphore
(
hSem
,
1
,
NULL
);
ReleaseSemaphore
(
hSem
,
1
,
NULL
);
...
...
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