Removed $Id$ everywhere.
[virt-top.git] / mlvirtmanager / mlvirtmanager_mainwindow.mli
1 (* virt-manager-like graphical management tool.
2    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
3    http://libvirt.org/
4
5    Make the main window.
6 *)
7
8 (** This function creates the main window.  You have to pass in
9     callback functions to wire everything up.
10 *)
11 val make : open_connection:(unit -> unit) ->
12   start_domain:(GTree.view -> GTree.tree_store -> Mlvirtmanager_connections.columns -> unit -> unit) ->
13   pause_domain:(GTree.view -> GTree.tree_store -> Mlvirtmanager_connections.columns -> unit -> unit) ->
14   resume_domain:(GTree.view -> GTree.tree_store -> Mlvirtmanager_connections.columns -> unit -> unit) ->
15   shutdown_domain:(GTree.view -> GTree.tree_store -> Mlvirtmanager_connections.columns -> unit -> unit) -> unit