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