src/Builder4/DialogPluginWebkit.bjs
[app.Builder.js] / src / Builder4 / DialogPluginWebkit.vala
1 static Xcls_DialogPluginWebkit  _DialogPluginWebkit;
2
3 public class Xcls_DialogPluginWebkit : Object 
4 {
5     public Gtk.Dialog el;
6     private Xcls_DialogPluginWebkit  _this;
7
8     public static Xcls_DialogPluginWebkit singleton()
9     {
10         if (_DialogPluginWebkit == null) {
11             _DialogPluginWebkit= new Xcls_DialogPluginWebkit();
12         }
13         return _DialogPluginWebkit;
14     }
15     public Xcls_webview webview;
16
17         // my vars (def)
18     public string tmpjs;
19
20     // ctor 
21     public Xcls_DialogPluginWebkit()
22     {
23         _this = this;
24         this.el = new Gtk.Dialog();
25
26         // my vars (dec)
27
28         // set gobject values
29         this.el.title = "Add / Edit Component";
30         this.el.default_height = 500;
31         this.el.default_width = 500;
32         this.el.deletable = true;
33         this.el.modal = true;
34         var child_0 = new Xcls_VBox2( _this );
35         child_0.ref();
36         this.el.get_content_area().add (  child_0.el  );
37         var child_1 = new Xcls_Button5( _this );
38         child_1.ref();
39         this.el.add_action_widget (  child_1.el , 3 );
40         var child_2 = new Xcls_Button6( _this );
41         child_2.ref();
42         this.el.add_action_widget (  child_2.el , 0 );
43         var child_3 = new Xcls_Button7( _this );
44         child_3.ref();
45         this.el.add_action_widget (  child_3.el , 1 );
46
47         // listeners 
48         this.el.delete_event.connect( (self, event) => {
49             this.el.hide();
50             return true; 
51             //test  
52         });
53     }
54
55     // user defined functions 
56     public string show (Gtk.Window ?parent, string text) {// JsRender.Node node) {
57      
58         if (parent  != null) {
59             this.el.set_transient_for(parent);
60             this.el.modal = true;
61         }
62            var db = new JsRender.RooDatabase.from_cfg ("MySQL", "hydra", "root", "");
63          
64         
65          this.el.show_all();
66          var   ret = "";
67         while (true) {
68         
69             var runhtml = "<script type=\"text/javascript\">\n" ;
70             string builderhtml;
71             
72             
73             GLib.FileUtils.get_contents(BuilderApplication.configDirectory() + "/resources/roo.builder.js", out builderhtml);
74     
75             runhtml += builderhtml + "\n";
76             
77             
78                runhtml += "\n" +
79                 "Builder.saveHTML = function() {};\n" + 
80             "Roo.onReady(function() {\n" +
81     
82             "Roo.XComponent.build();\n" +
83             "});\n";
84         
85         
86             
87     
88             var ar = db.readForeignKeys("Person");
89             var  generator = new Json.Generator ();
90             var  root = new Json.Node(Json.NodeType.OBJECT);
91             root.init_object(ar);
92             generator.set_root (root);
93             
94             generator.pretty = true;
95             generator.indent = 4;
96             
97             runhtml += "\n" +
98             " Roo.XComponent.on('buildcomplete', function() {\n" +
99              "    Editor.Roo.grid.Grid.panel.loadData(" + generator.to_data (null) + "); " +
100             "});\n";
101     
102             
103         
104         
105     
106             runhtml += "</script>\n" ;
107     
108             print(runhtml);
109             // fix to make sure they are the same..
110             
111             // need to modify paths
112     
113             string inhtml;
114             
115             GLib.FileUtils.get_contents(
116                 BuilderApplication.configDirectory() + "/resources/roo.builder.html"
117                     , out inhtml);
118             
119             
120             // fetch the json from the database...
121             
122             //print(runhtml);
123             
124             var html = inhtml.replace("</head>", runhtml + // + this.runhtml + 
125                 "<script type=\"text/javascript\" src=\"xhttp://localhost/app.Builder.js/resources/Editors/Editor.Roo.grid.Grid.js\"></script>" + 
126           //      "<script type=\"text/javascript\" src=\"xhttp://localhost" + fc.fname + "\"></script>" +   
127                   //  "<script type=\"text/javascript\">\n" +
128                   //  js_src + "\n" + 
129                   //  "</script>" + 
130                             
131             "</head>");
132             //print("LOAD HTML " + html);
133             
134              //var rootURL = _this.file.project.rootURL;
135        
136             
137             
138             this.webview.el.load_html( html , 
139                 //fixme - should be a config option!
140                 "xhttp://localhost/app.Builder.js/"
141             );
142         
143             
144         
145        
146             var response_id = this.el.run();
147             
148              if (response_id == 3) {
149                  continue;
150              }
151             if (response_id < 1) {
152                 this.el.hide();
153                  return "";
154             }
155             // keep showing...?
156             break;
157         }
158         
159         // now we save it..
160         this.el.hide();
161         
162         return ret;
163         
164         
165         
166     }
167     public class Xcls_VBox2 : Object 
168     {
169         public Gtk.VBox el;
170         private Xcls_DialogPluginWebkit  _this;
171
172
173             // my vars (def)
174
175         // ctor 
176         public Xcls_VBox2(Xcls_DialogPluginWebkit _owner )
177         {
178             _this = _owner;
179             this.el = new Gtk.VBox( false, 0 );
180
181             // my vars (dec)
182
183             // set gobject values
184             var child_0 = new Xcls_ScrolledWindow3( _this );
185             child_0.ref();
186             this.el.pack_start (  child_0.el , false,true,3 );
187         }
188
189         // user defined functions 
190     }
191     public class Xcls_ScrolledWindow3 : Object 
192     {
193         public Gtk.ScrolledWindow el;
194         private Xcls_DialogPluginWebkit  _this;
195
196
197             // my vars (def)
198
199         // ctor 
200         public Xcls_ScrolledWindow3(Xcls_DialogPluginWebkit _owner )
201         {
202             _this = _owner;
203             this.el = new Gtk.ScrolledWindow( null, null );
204
205             // my vars (dec)
206
207             // set gobject values
208             this.el.expand = true;
209             var child_0 = new Xcls_webview( _this );
210             child_0.ref();
211             this.el.add (  child_0.el  );
212
213             // init method 
214
215             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
216         }
217
218         // user defined functions 
219     }
220     public class Xcls_webview : Object 
221     {
222         public WebKit.WebView el;
223         private Xcls_DialogPluginWebkit  _this;
224
225
226             // my vars (def)
227
228         // ctor 
229         public Xcls_webview(Xcls_DialogPluginWebkit _owner )
230         {
231             _this = _owner;
232             _this.webview = this;
233             this.el = new WebKit.WebView();
234
235             // my vars (dec)
236
237             // set gobject values
238
239             // init method 
240
241             {
242                 // this may not work!?
243                 var settings =  this.el.get_settings();
244                 settings.enable_write_console_messages_to_stdout = true;
245                  
246                 var fs= new FakeServer(this.el);
247                 fs.ref();
248                 // this was an attempt to change the url perms.. did not work..
249                 // settings.enable_file_access_from_file_uris = true;
250                 // settings.enable_offline_web_application_cache - true;
251                 // settings.enable_universal_access_from_file_uris = true;
252                
253                  
254                 
255                 
256                 
257             
258                  // FIXME - base url of script..
259                  // we need it so some of the database features work.
260                 this.el.load_html( "Render not ready" , 
261                         //fixme - should be a config option!
262                         // or should we catch stuff and fix it up..
263                         "xhttp://localhost/app.Builder/"
264                 );
265                     
266                     
267                 
268                 
269             }
270
271             // listeners 
272             this.el.script_dialog.connect( (dialog) => {
273                 if (this.el == null) {
274                     return true;
275                 }
276                 
277                  var msg = dialog.get_message();
278                  if (msg.length < 4) {
279                     return false;
280                  }
281                  if (msg.substring(0,4) != "IPC:") {
282                      return false;
283                  }
284                  var ar = msg.split(":", 3);
285                 if (ar.length < 3) {
286                     return false;
287                 }
288                 print("CMD: %s\n",ar[1]);
289                     print("ARGS: %s\n",ar[2]);
290                 switch(ar[1]) {
291                     case "SAVEHTML":
292                       print("%sw",ar[2]);
293                       //  _this.file.saveHTML(ar[2]);
294                         return true;
295                     default:
296                         return true;
297                 }
298                 
299             });
300         }
301
302         // user defined functions 
303     }
304     public class Xcls_Button5 : Object 
305     {
306         public Gtk.Button el;
307         private Xcls_DialogPluginWebkit  _this;
308
309
310             // my vars (def)
311
312         // ctor 
313         public Xcls_Button5(Xcls_DialogPluginWebkit _owner )
314         {
315             _this = _owner;
316             this.el = new Gtk.Button();
317
318             // my vars (dec)
319
320             // set gobject values
321             this.el.label = "Reload";
322         }
323
324         // user defined functions 
325     }
326     public class Xcls_Button6 : Object 
327     {
328         public Gtk.Button el;
329         private Xcls_DialogPluginWebkit  _this;
330
331
332             // my vars (def)
333
334         // ctor 
335         public Xcls_Button6(Xcls_DialogPluginWebkit _owner )
336         {
337             _this = _owner;
338             this.el = new Gtk.Button();
339
340             // my vars (dec)
341
342             // set gobject values
343             this.el.label = "Cancel";
344         }
345
346         // user defined functions 
347     }
348     public class Xcls_Button7 : Object 
349     {
350         public Gtk.Button el;
351         private Xcls_DialogPluginWebkit  _this;
352
353
354             // my vars (def)
355
356         // ctor 
357         public Xcls_Button7(Xcls_DialogPluginWebkit _owner )
358         {
359             _this = _owner;
360             this.el = new Gtk.Button();
361
362             // my vars (dec)
363
364             // set gobject values
365             this.el.label = "OK";
366         }
367
368         // user defined functions 
369     }
370 }