From: Gerd Hoffmann <kraxel@redhat.com>
To: Programmingkid <programmingkidx@gmail.com>
Cc: qemu-devel@nongnu.org, Anthony Liguori <aliguori@amazon.com>
Subject: Re: [Qemu-devel] [PATCH] console/gtk: add qemu_console_get_label
Date: Wed, 18 Feb 2015 09:18:17 +0100 [thread overview]
Message-ID: <1424247497.6014.44.camel@nilsson.home.kraxel.org> (raw)
In-Reply-To: <528329A9-EA6C-4207-A03B-ED9D92E53E62@gmail.com>
Hi,
> Thanks for this code. Is this how I should display the Serial console?
> void myDisplaySerialConsole()
> {
> QemuConsole *con;
> char *name;
> int index = 0;
>
> con = qemu_console_lookup_by_index(0);
> while(con != NULL) {
> name = qemu_console_get_label(con);
>
> /* If we found the console */
> if (strstr(name, "Serial")) {
> console_select(index);
> break;
> }
> index++;
> con = qemu_console_lookup_by_index(index);
This mixes up several things.
When initializing the UI you'll loop over the consoles, like this:
QemuConsole *con;
int i;
for (i = 0;; i++) {
con = qemu_console_lookup_by_index(i);
if (!con) {
break;
}
/*
* add a menu entry for the console here,
* using qemu_console_get_label() to get
* the text for the menu entry
*/
}
When the menu entry is activated by the user use console_select() to
switch.
cheers,
Gerd
prev parent reply other threads:[~2015-02-18 8:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-17 9:44 [Qemu-devel] [PATCH] console/gtk: add qemu_console_get_label Gerd Hoffmann
2015-02-17 16:39 ` Programmingkid
2015-02-18 8:18 ` Gerd Hoffmann [this message]
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=1424247497.6014.44.camel@nilsson.home.kraxel.org \
--to=kraxel@redhat.com \
--cc=aliguori@amazon.com \
--cc=programmingkidx@gmail.com \
--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 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).