src/Builder4/DialogPluginWebkit.bjs
[app.Builder.js] / src / Builder4 / DialogPluginWebkit.vala
1 static DialogPluginWebkit  _DialogPluginWebkit;
2
3 public class DialogPluginWebkit : Object 
4 {
5     public Gtk.Dialog el;
6     private DialogPluginWebkit  _this;
7
8     public static DialogPluginWebkit singleton()
9     {
10         if (_DialogPluginWebkit == null) {
11             _DialogPluginWebkit= new DialogPluginWebkit();
12         }
13         return _DialogPluginWebkit;
14     }
15     public Xcls_patchview patchview;
16
17         // my vars (def)
18
19     // ctor 
20     public DialogPluginWebkit()
21     {
22         _this = this;
23         this.el = new Gtk.Dialog();
24
25         // my vars (dec)
26
27         // set gobject values
28         var child_0 = new Xcls_VBox2( _this );
29         child_0.ref();
30         this.el.get_content_area().add (  child_0.el  );
31     }
32
33     // user defined functions 
34     public class Xcls_VBox2 : Object 
35     {
36         public Gtk.VBox el;
37         private DialogPluginWebkit  _this;
38
39
40             // my vars (def)
41
42         // ctor 
43         public Xcls_VBox2(DialogPluginWebkit _owner )
44         {
45             _this = _owner;
46             this.el = new Gtk.VBox( true, 0 );
47
48             // my vars (dec)
49
50             // set gobject values
51             var child_0 = new Xcls_ScrolledWindow3( _this );
52             child_0.ref();
53             this.el.pack_end (  child_0.el , true,true,0 );
54         }
55
56         // user defined functions 
57     }
58     public class Xcls_ScrolledWindow3 : Object 
59     {
60         public Gtk.ScrolledWindow el;
61         private DialogPluginWebkit  _this;
62
63
64             // my vars (def)
65
66         // ctor 
67         public Xcls_ScrolledWindow3(DialogPluginWebkit _owner )
68         {
69             _this = _owner;
70             this.el = new Gtk.ScrolledWindow( null, null );
71
72             // my vars (dec)
73
74             // set gobject values
75             var child_0 = new Xcls_patchview( _this );
76             child_0.ref();
77             this.el.add (  child_0.el  );
78
79             // init method 
80
81             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
82         }
83
84         // user defined functions 
85     }
86     public class Xcls_patchview : Object 
87     {
88         public WebKit.WebView el;
89         private DialogPluginWebkit  _this;
90
91
92             // my vars (def)
93
94         // ctor 
95         public Xcls_patchview(DialogPluginWebkit _owner )
96         {
97             _this = _owner;
98             _this.patchview = this;
99             this.el = new WebKit.WebView();
100
101             // my vars (dec)
102
103             // set gobject values
104         }
105
106         // user defined functions 
107     }
108 }