diff mbox series

ui: Mark the '-no-quit' option as deprecated

Message ID 20210630092127.374720-1-thuth@redhat.com (mailing list archive)
State New, archived
Headers show
Series ui: Mark the '-no-quit' option as deprecated | expand

Commit Message

Thomas Huth June 30, 2021, 9:21 a.m. UTC
It's just a cumbersome wrapper around the -display ...,window_close=off
parameter, so we should rather tell our users to use that instead.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 docs/system/deprecated.rst | 6 ++++++
 qemu-options.hx            | 5 +++--
 softmmu/vl.c               | 2 ++
 3 files changed, 11 insertions(+), 2 deletions(-)

Comments

Daniel P. Berrangé June 30, 2021, 9:24 a.m. UTC | #1
On Wed, Jun 30, 2021 at 11:21:27AM +0200, Thomas Huth wrote:
> It's just a cumbersome wrapper around the -display ...,window_close=off
> parameter, so we should rather tell our users to use that instead.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  docs/system/deprecated.rst | 6 ++++++
>  qemu-options.hx            | 5 +++--
>  softmmu/vl.c               | 2 ++
>  3 files changed, 11 insertions(+), 2 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>

libvirt does not use this option


Regards,
Daniel
Peter Maydell June 30, 2021, 10:01 a.m. UTC | #2
On Wed, 30 Jun 2021 at 10:22, Thomas Huth <thuth@redhat.com> wrote:
>
> It's just a cumbersome wrapper around the -display ...,window_close=off
> parameter, so we should rather tell our users to use that instead.

This is an interesting definition of "cumbersome" -- personally
I would say the long -display option is the cumbersome one :-)

-- PMM
Daniel P. Berrangé June 30, 2021, 10:07 a.m. UTC | #3
On Wed, Jun 30, 2021 at 11:01:06AM +0100, Peter Maydell wrote:
> On Wed, 30 Jun 2021 at 10:22, Thomas Huth <thuth@redhat.com> wrote:
> >
> > It's just a cumbersome wrapper around the -display ...,window_close=off
> > parameter, so we should rather tell our users to use that instead.
> 
> This is an interesting definition of "cumbersome" -- personally
> I would say the long -display option is the cumbersome one :-)

I'd say the primary benefit of the new syntax is that it is obvious
that it only applies when using the SDL option. The '-no-quit' option
sonds like it ought to be applicable to any use of qemu, but isn't
actually once you read its description.


Regards,
Daniel
Thomas Huth June 30, 2021, 10:16 a.m. UTC | #4
On 30/06/2021 12.01, Peter Maydell wrote:
> On Wed, 30 Jun 2021 at 10:22, Thomas Huth <thuth@redhat.com> wrote:
>>
>> It's just a cumbersome wrapper around the -display ...,window_close=off
>> parameter, so we should rather tell our users to use that instead.
> 
> This is an interesting definition of "cumbersome" -- personally
> I would say the long -display option is the cumbersome one :-)

The cumbersome was rather meant from a code / maintenance side of view. But 
I think the naming of this parameter is also quite misleading. It really 
just blocks the closing button of the window, you can still quit QEMU by 
other means (e.g. with the "Quit" menu item in the GTK menu or by shutting 
down the guest), so the "window_close=off" wording is certainly more 
understandable.

... and by the way, I think the documentation in qemu-options.hx is 
inaccurate, too, it only talks about SDL, but it seems like this option is 
also available with GTK. So this -no-quit option really seems like old cruft 
to me which we should try to get rid of...

  Thomas
Thomas Huth June 30, 2021, 10:45 a.m. UTC | #5
On 30/06/2021 12.16, Thomas Huth wrote:
> On 30/06/2021 12.01, Peter Maydell wrote:
>> On Wed, 30 Jun 2021 at 10:22, Thomas Huth <thuth@redhat.com> wrote:
>>>
>>> It's just a cumbersome wrapper around the -display ...,window_close=off
>>> parameter, so we should rather tell our users to use that instead.
>>
>> This is an interesting definition of "cumbersome" -- personally
>> I would say the long -display option is the cumbersome one :-)
> 
> The cumbersome was rather meant from a code / maintenance side of view. But 
> I think the naming of this parameter is also quite misleading. It really 
> just blocks the closing button of the window, you can still quit QEMU by 
> other means (e.g. with the "Quit" menu item in the GTK menu or by shutting 
> down the guest), so the "window_close=off" wording is certainly more 
> understandable.
> 
> ... and by the way, I think the documentation in qemu-options.hx is 
> inaccurate, too, it only talks about SDL, but it seems like this option is 
> also available with GTK. So this -no-quit option really seems like old cruft 
> to me which we should try to get rid of...

Drat. It's either "-display sdl,window_close=off" or
"-display gtk,window-close=off" (note the underscore vs. minus between 
"window" and "close"). Please disregard this patch, that "underscore vs. 
minus" problem should get fixed first, so we can point the users to the 
parameter with the right syntax. I'll try to come up with some patches...

  Thomas
diff mbox series

Patch

diff --git a/docs/system/deprecated.rst b/docs/system/deprecated.rst
index e2e0090878..c76da98761 100644
--- a/docs/system/deprecated.rst
+++ b/docs/system/deprecated.rst
@@ -126,6 +126,12 @@  other options have been processed.  This will either have no effect (if
 if they were not given.  The property is therefore useless and should not be
 specified.
 
+``-no-quit`` (since 6.1.0)
+''''''''''''''''''''''''''
+
+The ``-no-quit`` is a synonym for ``-display ...,window_close=off`` which
+should be used instead.
+
 
 QEMU Machine Protocol (QMP) commands
 ------------------------------------
diff --git a/qemu-options.hx b/qemu-options.hx
index ba3ca9da1d..9fdd823c1b 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -1910,10 +1910,11 @@  SRST
 ERST
 
 DEF("no-quit", 0, QEMU_OPTION_no_quit,
-    "-no-quit        disable SDL window close capability\n", QEMU_ARCH_ALL)
+    "-no-quit        disable SDL window close capability (deprecated)\n", QEMU_ARCH_ALL)
 SRST
 ``-no-quit``
-    Disable SDL window close capability.
+    Disable SDL window close capability. This option is deprecated, please
+    use ``-display ...,window_close=off`` instead.
 ERST
 
 DEF("sdl", 0, QEMU_OPTION_sdl,
diff --git a/softmmu/vl.c b/softmmu/vl.c
index cee6339580..3f79b9c8a3 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -3232,6 +3232,8 @@  void qemu_init(int argc, char **argv, char **envp)
             case QEMU_OPTION_no_quit:
                 dpy.has_window_close = true;
                 dpy.window_close = false;
+                warn_report("-no-quit is deprecated, please use "
+                            "-display ...,window_close=off instead.");
                 break;
             case QEMU_OPTION_sdl:
 #ifdef CONFIG_SDL