spicec: Add a --title cmdline option (rhbz#662452)

This commit is contained in:
Hans de Goede 2010-12-13 15:37:37 +01:00
parent 7bbc2ba090
commit e47fb5d74f

View File

@ -2215,6 +2215,7 @@ bool Application::process_cmd_line(int argc, char** argv)
SPICE_OPT_DISPLAY_COLOR_DEPTH,
SPICE_OPT_DISABLE_DISPLAY_EFFECTS,
SPICE_OPT_CONTROLLER,
SPICE_OPT_TITLE,
#ifdef USE_SMARTCARD
SPICE_OPT_SMARTCARD,
SPICE_OPT_NOSMARTCARD,
@ -2279,6 +2280,8 @@ bool Application::process_cmd_line(int argc, char** argv)
parser.add(SPICE_OPT_CONTROLLER, "controller", "enable external controller");
parser.add(SPICE_OPT_TITLE, "title", "set window title", "title", true, 't');
#ifdef USE_SMARTCARD
parser.add(SPICE_OPT_SMARTCARD, "smartcard", "enable smartcard channel");
parser.add(SPICE_OPT_NOSMARTCARD, "nosmartcard", "disable smartcard channel");
@ -2393,6 +2396,9 @@ bool Application::process_cmd_line(int argc, char** argv)
}
_enable_controller = true;
return true;
case SPICE_OPT_TITLE:
set_title(val);
break;
#ifdef USE_SMARTCARD
case SPICE_OPT_SMARTCARD:
_smartcard_options->enable= true;