From: Christian Schoenebeck <qemu_oss@crudebyte.com>
To: qemu-devel@nongnu.org
Cc: "Akihiko Odaki" <akihiko.odaki@gmail.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Gerd Hoffmann" <kraxel@redhat.com>
Subject: Re: [PATCH] ui/cocoa: user friendly characters for release mouse
Date: Thu, 29 Dec 2022 10:24:57 +0100 [thread overview]
Message-ID: <1801592.KYVbd3mLHE@silver> (raw)
In-Reply-To: <E1pAClj-0003Jo-OB@lizzy.crudebyte.com>
[-- Attachment #1: Type: text/plain, Size: 2024 bytes --]
On Tuesday, December 27, 2022 5:15:31 PM CET Christian Schoenebeck wrote:
> While mouse is grabbed, window title contains a hint for the user what
> keyboard keys to press to release the mouse. Make that hint text a bit
> more user friendly for a Mac user:
>
> - Replace "Ctrl" and "Alt" by appropriate symbols for those keyboard
> keys typically displayed for them on a Mac (encode those symbols by
> using UTF-8 characters).
>
> - Drop " + " in between the keys, as that's not common on macOS for
> documenting keyboard shortcuts.
>
> - Convert lower case "g" to upper case "G", as that's common on macOS.
>
> - Add one additional space at start and end of key stroke set, to
> visually separate the key strokes from the rest of the text.
>
> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> ---
> ui/cocoa.m | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
Screenshot attached how title bar looks like (on Mac hosts) after this change.
> diff --git a/ui/cocoa.m b/ui/cocoa.m
> index e915c344a8..289a2b193e 100644
> --- a/ui/cocoa.m
> +++ b/ui/cocoa.m
> @@ -72,6 +72,9 @@
>
> #define cgrect(nsrect) (*(CGRect *)&(nsrect))
>
> +#define UC_CTRL_KEY "\xe2\x8c\x83"
> +#define UC_ALT_KEY "\xe2\x8c\xa5"
> +
> typedef struct {
> int width;
> int height;
> @@ -1135,9 +1138,9 @@ - (void) grabMouse
>
> if (!isFullscreen) {
> if (qemu_name)
> - [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press ctrl + alt + g to release Mouse)", qemu_name]];
> + [normalWindow setTitle:[NSString stringWithFormat:@"QEMU %s - (Press " UC_CTRL_KEY " " UC_ALT_KEY " G to release Mouse)", qemu_name]];
> else
> - [normalWindow setTitle:@"QEMU - (Press ctrl + alt + g to release Mouse)"];
> + [normalWindow setTitle:@"QEMU - (Press " UC_CTRL_KEY " " UC_ALT_KEY " G to release Mouse)"];
> }
> [self hideCursor];
> CGAssociateMouseAndMouseCursorPosition(isAbsoluteEnabled);
>
[-- Attachment #2: mac_release_mouse.jpg --]
[-- Type: image/jpeg, Size: 136650 bytes --]
next prev parent reply other threads:[~2022-12-29 9:28 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-27 16:15 [PATCH] ui/cocoa: user friendly characters for release mouse Christian Schoenebeck
2022-12-29 9:24 ` Christian Schoenebeck [this message]
2022-12-29 12:31 ` Philippe Mathieu-Daudé
2022-12-30 14:01 ` Christian Schoenebeck
2023-02-27 11:28 ` Christian Schoenebeck
2023-03-13 12:26 ` Christian Schoenebeck
2023-03-13 13:42 ` BALATON Zoltan
2023-03-13 13:53 ` Christian Schoenebeck
2023-03-13 14:38 ` Philippe Mathieu-Daudé
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1801592.KYVbd3mLHE@silver \
--to=qemu_oss@crudebyte.com \
--cc=akihiko.odaki@gmail.com \
--cc=kraxel@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.