From: Akihiko Odaki <akihiko.odaki@daynix.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Marek Glogowski" <smarkusg@gmail.com>,
"BALATON Zoltan" <balaton@eik.bme.hu>,
"Rene Engel" <ReneEngel80@emailn.de>,
qemu-devel@nongnu.org
Subject: Re: [PATCH v11 6/6] ui/cocoa: Remove stretch_video flag
Date: Sat, 24 Feb 2024 21:59:36 +0900 [thread overview]
Message-ID: <d65d0dea-b76b-4a22-9d71-e60965c5c868@daynix.com> (raw)
In-Reply-To: <CAFEAcA_QUMsOXbwOSAEZu5Qkc+G85DfchunxQQbEhRAEBv+Xqw@mail.gmail.com>
On 2024/02/23 1:53, Peter Maydell wrote:
> On Sat, 17 Feb 2024 at 11:19, Akihiko Odaki <akihiko.odaki@daynix.com> wrote:
>>
>> Evaluate [normalWindow styleMask] & NSWindowStyleMaskResizable instead.
>>
>> Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
>> ---
>> ui/cocoa.m | 11 ++++-------
>> 1 file changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/ui/cocoa.m b/ui/cocoa.m
>> index 81de8d92669b..401ed0c3f1f5 100644
>> --- a/ui/cocoa.m
>> +++ b/ui/cocoa.m
>> @@ -103,7 +103,6 @@ static void cocoa_switch(DisplayChangeListener *dcl,
>> static int left_command_key_enabled = 1;
>> static bool swap_opt_cmd;
>>
>> -static bool stretch_video;
>> static NSTextField *pauseLabel;
>>
>> static bool allow_events;
>> @@ -533,7 +532,7 @@ - (void) resizeWindow
>> {
>> [[self window] setContentAspectRatio:NSMakeSize(screen.width, screen.height)];
>>
>> - if (!stretch_video) {
>> + if (!([[self window] styleMask] & NSWindowStyleMaskResizable)) {
>> [[self window] setContentSize:NSMakeSize(screen.width, screen.height)];
>> [[self window] center];
>> } else if ([[self window] styleMask] & NSWindowStyleMaskFullScreen) {
>> @@ -1296,7 +1295,7 @@ - (BOOL)windowShouldClose:(id)sender
>>
>> - (NSSize) window:(NSWindow *)window willUseFullScreenContentSize:(NSSize)proposedSize
>> {
>> - if (stretch_video) {
>> + if ([normalWindow styleMask] & NSWindowStyleMaskResizable) {
>> return [cocoaView fixZoomedFullScreenSize:proposedSize];
>> }
>>
>> @@ -1377,8 +1376,7 @@ - (void)showQEMUDoc:(id)sender
>> /* Stretches video to fit host monitor size */
>> - (void)zoomToFit:(id) sender
>> {
>> - stretch_video = !stretch_video;
>> - if (stretch_video == true) {
>> + if (([normalWindow styleMask] & NSWindowStyleMaskResizable) == 0) {
>> [normalWindow setStyleMask:[normalWindow styleMask] | NSWindowStyleMaskResizable];
>> [sender setState: NSControlStateValueOn];
>> } else {
>> @@ -1650,7 +1648,7 @@ static void create_initial_menus(void)
>> menu = [[NSMenu alloc] initWithTitle:@"View"];
>> [menu addItem: [[[NSMenuItem alloc] initWithTitle:@"Enter Fullscreen" action:@selector(doToggleFullScreen:) keyEquivalent:@"f"] autorelease]]; // Fullscreen
>> menuItem = [[[NSMenuItem alloc] initWithTitle:@"Zoom To Fit" action:@selector(zoomToFit:) keyEquivalent:@""] autorelease];
>> - [menuItem setState: stretch_video ? NSControlStateValueOn : NSControlStateValueOff];
>> + [menuItem setState: [normalWindow styleMask] & NSWindowStyleMaskResizable ? NSControlStateValueOn : NSControlStateValueOff];
>> [menu addItem: menuItem];
>> menuItem = [[[NSMenuItem alloc] initWithTitle:@"View" action:nil keyEquivalent:@""] autorelease];
>> [menuItem setSubmenu:menu];
>> @@ -2036,7 +2034,6 @@ static void cocoa_display_init(DisplayState *ds, DisplayOptions *opts)
>> }
>>
>> if (opts->u.cocoa.has_zoom_to_fit && opts->u.cocoa.zoom_to_fit) {
>> - stretch_video = true;
>> [normalWindow setStyleMask:[normalWindow styleMask] | NSWindowStyleMaskResizable];
>> }
>
> It's nice to get rid of the boolean, but
> [normalWindow styleMask] & NSWindowStyleMaskResizable
> feels a bit clunky -- maybe we should wrap it in a method with
> a suitable name ? (isZoomToFit, maybe? but I'm not too familiar
> with what cocoa function naming style is.)
I don't think we should have a method for this. It's verbose but the
main reason of that is NSWindowStyleMaskResizable is wordy; otherwise
it's quite a simple. There are few places that use this construct after all.
In any case, I put a bit more effort to simplify style mask references
with v12 so please check it out.
Regards,
Akihiko Odaki
next prev parent reply other threads:[~2024-02-24 13:00 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-17 11:18 [PATCH v11 0/6] ui/cocoa: Use NSWindow's ability to resize Akihiko Odaki
2024-02-17 11:18 ` [PATCH v11 1/6] ui/cocoa: Release specific mouse buttons Akihiko Odaki
2024-02-22 16:40 ` Peter Maydell
2024-02-17 11:18 ` [PATCH v11 2/6] ui/cocoa: Scale with NSView instead of Core Graphics Akihiko Odaki
2024-02-22 16:48 ` Peter Maydell
2024-02-17 11:18 ` [PATCH v11 3/6] ui/cocoa: Let the platform toggle fullscreen Akihiko Odaki
2024-02-22 16:56 ` Peter Maydell
2024-02-24 12:52 ` Akihiko Odaki
2024-02-17 11:18 ` [PATCH v11 4/6] ui/cocoa: Make window resizable Akihiko Odaki
2024-02-22 16:50 ` Peter Maydell
2024-02-17 11:18 ` [PATCH v11 5/6] ui/cocoa: Call console_select() with the BQL Akihiko Odaki
2024-02-22 16:51 ` Peter Maydell
2024-02-17 11:18 ` [PATCH v11 6/6] ui/cocoa: Remove stretch_video flag Akihiko Odaki
2024-02-22 16:53 ` Peter Maydell
2024-02-24 12:59 ` Akihiko Odaki [this message]
2024-02-24 13:04 ` BALATON Zoltan
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=d65d0dea-b76b-4a22-9d71-e60965c5c868@daynix.com \
--to=akihiko.odaki@daynix.com \
--cc=ReneEngel80@emailn.de \
--cc=balaton@eik.bme.hu \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=smarkusg@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).