[Spice-devel] [PATCH spice 1/4] spicec: Add a --title cmdline option (rhbz#662452)

Hans de Goede hdegoede at redhat.com
Wed Dec 15 07:50:06 PST 2010


---
 client/application.cpp |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/client/application.cpp b/client/application.cpp
index 8f41ccf..1bd3ff4 100644
--- a/client/application.cpp
+++ b/client/application.cpp
@@ -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;
-- 
1.7.3.2



More information about the Spice-devel mailing list