slave: Use slightly modified event_callback.
[guestfs-browser.git] / menu_about.ml
1 (* Guestfs Browser.
2  * Copyright (C) 2011 Red Hat Inc.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *)
18
19 open Utils
20
21 open Printf
22
23 let license =
24   "\
25 This program is free software; you can redistribute it and/or modify
26 it under the terms of the GNU General Public License as published by
27 the Free Software Foundation; either version 2 of the License, or
28 (at your option) any later version.
29
30 This program is distributed in the hope that it will be useful,
31 but WITHOUT ANY WARRANTY; without even the implied warranty of
32 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33 GNU General Public License for more details.
34
35 You should have received a copy of the GNU General Public License along
36 with this program; if not, write to the Free Software Foundation, Inc.,
37 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."
38
39 let authors = [
40   "Richard W.M. Jones"
41 ]
42
43 let logo =
44   let rec loop = function
45     | [] -> None
46     | filename :: rest ->
47         try Some (GdkPixbuf.from_file_at_size ~width:100 ~height:100 filename)
48         with _ -> loop rest
49   in
50   loop [Config.icondir ^ "/guestfs-browser.svg";
51         "guestfs-browser.svg"]
52
53 let open_about_dialog w () =
54   let d = GWindow.about_dialog
55     ~name:"Guest filesystem browser"
56     ~version:Config.version
57     ?logo
58     ~authors
59     ~copyright:(utf8_copyright ^ " 2010-2011 Red Hat Inc.")
60     ~license
61     ~website:"http://people.redhat.com/~rjones/guestfs-browser/"
62     ~website_label:"Visit the guestfs-browser website"
63     ~modal:true
64     () in
65
66   ignore (d#run ());
67   d#destroy ()