summaryrefslogtreecommitdiffstats
path: root/virt-ctrl/vc_connection_dlg.mli
diff options
context:
space:
mode:
Diffstat (limited to 'virt-ctrl/vc_connection_dlg.mli')
-rw-r--r--virt-ctrl/vc_connection_dlg.mli22
1 files changed, 21 insertions, 1 deletions
diff --git a/virt-ctrl/vc_connection_dlg.mli b/virt-ctrl/vc_connection_dlg.mli
index bfd7ba4..0102713 100644
--- a/virt-ctrl/vc_connection_dlg.mli
+++ b/virt-ctrl/vc_connection_dlg.mli
@@ -20,4 +20,24 @@
*)
(** The connection dialog. *)
-val open_connection : unit -> unit
+val open_connection : GWindow.window -> unit -> unit
+
+(** Quick connect to local Xen. *)
+val open_local_xen : unit -> unit
+
+(** Quick connect to local QEMU or KVM. *)
+val open_local_qemu : unit -> unit
+
+type name = string
+type uri = string
+type service = name * uri
+
+(** Hook to find libvirtd network services with zeroconf using some
+ external method, eg. D-Bus or Avahi. *)
+val find_libvirtd_with_zeroconf : (unit -> service list) ref
+
+(** Hooks for icons. *)
+val icon_16x16_devices_computer_png : GdkPixbuf.pixbuf option ref
+val icon_24x24_devices_computer_png : GdkPixbuf.pixbuf option ref
+val icon_32x32_devices_computer_png : GdkPixbuf.pixbuf option ref
+val icon_48x48_devices_computer_png : GdkPixbuf.pixbuf option ref