Re: [PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-05-17 Thread Markus Armbruster
Gerd Hoffmann writes: > On Mon, May 09, 2022 at 02:31:05PM -0700, Dongwon Kim wrote: >> Daniel, >> >> I found a way to make the monitor arguments in array type (['uint32']). >> And I know how to retrieve monitor values from it but I could not find >> how to pass the monitor values when starting

Re: [PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-05-10 Thread Gerd Hoffmann
On Mon, May 09, 2022 at 02:31:05PM -0700, Dongwon Kim wrote: > Daniel, > > I found a way to make the monitor arguments in array type (['uint32']). > And I know how to retrieve monitor values from it but I could not find > how to pass the monitor values when starting qemu. Like, > > qemu-system-x8

Re: [PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-05-09 Thread Dongwon Kim
Daniel, I found a way to make the monitor arguments in array type (['uint32']). And I know how to retrieve monitor values from it but I could not find how to pass the monitor values when starting qemu. Like, qemu-system-x86_64 . gtk,gl=on.monitor= I tried several different things but

Re: [PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-05-03 Thread Dongwon Kim
On Tue, May 03, 2022 at 10:15:13AM +0100, Daniel P. Berrangé wrote: > On Thu, Apr 28, 2022 at 04:13:02PM -0700, Dongwon Kim wrote: > > Introducing a new integer parameter to specify the monitor where the > > Qemu window is placed upon launching. > > > > Monitor can be any number between 0 and (tot

Re: [PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-05-03 Thread Daniel P . Berrangé
On Thu, Apr 28, 2022 at 04:13:02PM -0700, Dongwon Kim wrote: > Introducing a new integer parameter to specify the monitor where the > Qemu window is placed upon launching. > > Monitor can be any number between 0 and (total number of monitors - 1). > > It can be used together with full-screen=on,

[PATCH 1/3] ui/gtk: new param monitor to specify target monitor for launching QEMU

2022-04-28 Thread Dongwon Kim
Introducing a new integer parameter to specify the monitor where the Qemu window is placed upon launching. Monitor can be any number between 0 and (total number of monitors - 1). It can be used together with full-screen=on, which will make the QEMU window full-screened on the targeted monitor. v