updated xobject , clutter base objects started
[app.Builder.js] / Builder / About.js
1 Gtk = imports.gi.Gtk;
2 Gdk = imports.gi.Gdk;
3 Pango = imports.gi.Pango;
4 GLib = imports.gi.GLib;
5 Gio = imports.gi.Gio;
6 GObject = imports.gi.GObject;
7 GtkSource = imports.gi.GtkSource;
8 WebKit = imports.gi.WebKit;
9 Vte = imports.gi.Vte;
10 GtkClutter = imports.gi.GtkClutter;
11 console = imports.console;
12 XObject = imports.XObject.XObject;
13 About=new XObject({
14     xtype: Gtk.AboutDialog,
15     authors : "Alan Knowles",
16     copyright : "LGPL",
17     license : "LGPL",
18     program_name : "app.Builder.js",
19     modal : true,
20     website : "http://www.akbkhome.com/blog.php",
21     listeners : {
22         response : function (self, response_id) {
23             this.el.hide();
24         },
25         delete_event : function (self, event) {
26             this.el.hide();
27             return true;
28         }
29     }
30 });
31 About.init();
32 XObject.cache['/About'] = About;