manager: Add File->New Virtual Machine (bz 871682)

This commit is contained in:
Cole Robinson 2014-02-01 13:36:02 -05:00
parent ba0c84ec76
commit 7057afba56
2 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.16.1 -->
<interface>
<!-- interface-requires gtk+ 3.0 -->
<requires lib="gtk+" version="3.0"/>
<object class="GtkAccelGroup" id="accelgroup1"/>
<object class="GtkImage" id="image2">
<property name="visible">True</property>
@ -56,6 +57,15 @@
<signal name="activate" handler="on_menu_file_add_connection_activate" swapped="no"/>
</object>
</child>
<child>
<object class="GtkMenuItem" id="menu-new-vm">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">_New Virtual Machine</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_menu_new_vm_activate" swapped="no"/>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="separatormenuitem1">
<property name="visible">True</property>
@ -353,6 +363,7 @@
</object>
<packing>
<property name="expand">False</property>
<property name="homogeneous">False</property>
</packing>
</child>
</object>

View File

@ -145,6 +145,7 @@ class vmmManager(vmmGObjectUI):
"on_vm_manager_delete_event": self.close,
"on_vmm_manager_configure_event": self.window_resized,
"on_menu_file_add_connection_activate": self.new_conn,
"on_menu_new_vm_activate": self.new_vm,
"on_menu_file_quit_activate": self.exit_app,
"on_menu_file_close_activate": self.close,
"on_vmm_close_clicked": self.close,