src/Builder4/WindowState.vala
[roobuilder] / src / Builder4 / WindowState.vala
1 /**
2  * as state management is a bit too complicated inside the builder
3  * it's better to seperate this into this class
4  * 
5  * This class has references to all the Class instances that make up the window..
6  * 
7  */
8 public class WindowState : Object 
9 {
10         public Xcls_MainWindow win;
11  
12         public enum State {
13                 NONE,
14                 PREVIEW,
15                 OBJECT,
16                 PROP,
17                 LISTENER,
18                 CODE,    // code editor.
19                 CODEONLY,
20                 FILES //,
21                 // PROJECTCODEONLY // when editing code...              ??
22                 //PROJECT, // project settings..
23                 //FILEPROJECT, // project when in file mode
24
25         }
26
27         public State state = State.NONE;
28
29         public bool children_loaded = false;
30
31          
32         public Project.Project project;
33         public JsRender.JsRender file;
34          
35         
36         public Xcls_WindowLeftTree  left_tree;
37         public Xcls_WindowAddProp   add_props;
38         public Xcls_LeftProps       left_props;
39         public Xcls_RooProjectSettings roo_projectsettings_pop;
40         public Xcls_ValaProjectSettingsPopover  vala_projectsettings_pop;
41         public Xcls_RightPalete     rightpalete;
42         public Editor               code_editor;    
43         public Xcls_WindowRooView   window_rooview;
44         public Xcls_GtkView         window_gladeview;
45         
46         public Xcls_ClutterFiles     clutterfiles;
47
48         public Xcls_WindowLeftProjects left_projects; // can not see where this is initialized.. 
49         
50         public DialogTemplateSelect template_select; 
51         
52         public Xcls_PopoverFileDetails file_details;
53         
54         
55         public Xcls_ValaCompileResults compile_results;
56         
57         // dialogs??
58         public Xcls_DialogPluginWebkit webkit_plugin;
59         
60         
61         public Palete.ValaSource valasource; // the spawner that runs the vala compiler.
62         public Json.Object last_compile_result;
63         
64         // ctor 
65         public WindowState(Xcls_MainWindow win)
66         {
67                 this.win = win;
68                 // initialize
69
70                 // left elements..
71                 this.leftTreeInit();
72                 this.propsListInit();
73
74                 // on clutter space...
75                 this.projectEditInit();
76                 this.codeEditInit();
77                 this.projectListInit();
78                 this.fileViewInit();
79
80                 // adding stuff
81                 this.objectAddInit();
82                 this.propsAddInit();
83
84
85                 // previews...
86                 this.gtkViewInit();
87                 this.webkitViewInit();
88
89                 // dialogs
90
91                 this.fileDetailsInit();
92
93                 this.webkit_plugin = new Xcls_DialogPluginWebkit();
94                 this.template_select = new DialogTemplateSelect();
95                 this.children_loaded = true;
96                 
97                 
98                 this.valasource = new Palete.ValaSource();
99                 this.valasource.compiled.connect(this.showCompileResult);
100                 
101                 this.compile_results = new  Xcls_ValaCompileResults();
102                 this.compile_results.window = this.win;
103                 this.valasource.compile_output.connect(this.compile_results.addLine);
104                 
105                 this.win.statusbar_compilestatus_label.el.hide();
106                 this.win.statusbar_run.el.hide();
107                 this.win.search_results.el.hide();
108         }
109
110
111         // left tree
112
113         public void leftTreeInit()
114         {
115          
116                 this.left_tree = new Xcls_WindowLeftTree();
117                 this.left_tree.ref();
118                 this.left_tree.main_window = this.win;
119         
120                 this.win.tree.el.pack_start(this.left_tree.el,true, true,0);
121                 this.left_tree.el.show_all();
122                    
123                 this.left_tree.before_node_change.connect(() => {
124                         // if the node change is caused by the editor (code preview)
125                         if (this.left_tree.view.lastEventSource == "editor") {
126                                 return true;
127                         }
128                         return this.leftTreeBeforeChange();
129
130                 });
131                 // node selected -- only by clicking?
132                 this.left_tree.node_selected.connect((sel, source) => {
133                         if (source == "editor") {
134                                 return;
135                         }
136                         if (this.file.xtype == "Roo") { 
137                                 this.window_rooview.sourceview.nodeSelected(sel,true); // foce scroll.
138                         } else {
139                                 this.window_gladeview.sourceview.nodeSelected(sel);
140                         }
141                 });
142                 
143                 this.left_tree.node_selected.connect((sel, source) => {
144                         this.leftTreeNodeSelected(sel, source);
145                 });
146          
147                 this.left_tree.changed.connect(() => {
148                         print("LEFT TREE: Changed fired\n");
149                         this.file.save();
150                         if (this.left_tree.getActiveFile().xtype == "Roo" ) {
151                                    this.window_rooview.requestRedraw();
152                         } else {
153                                   this.window_gladeview.loadFile(this.left_tree.getActiveFile());
154                         }
155                          
156                 });
157                  
158         }
159
160         public bool leftTreeBeforeChange()
161         {
162                 if (this.state != State.CODE) {
163                         this.left_props.finish_editing();
164                         return true;
165                 }
166                 if (!this.code_editor.saveContents()) {
167                         return false;
168                 }
169                 return false;
170         }
171         
172         public void leftTreeNodeSelected(JsRender.Node? sel, string source)
173         {
174
175                 print("node_selected called %s\n", (sel == null) ? "NULL" : "a value");
176
177                 if (sel == null) {
178                         this.left_props.el.hide();
179                 } 
180                 this.left_props.el.show();
181                 this.left_props.load(this.left_tree.getActiveFile(), sel);
182                 switch (this.state) {
183                         
184                         case State.OBJECT: 
185                                   
186                                  if (sel == null) {
187                                         this.rightpalete.clear();
188                                         break;
189                                 }
190                                 this.rightpalete.load(this.left_tree.getActiveFile().palete(), sel.fqn());
191                                 break;
192                                  
193                 
194                    case State.PROP:
195                                 if (sel == null) {
196                                         this.add_props.clear();
197                                         break;
198                                 }
199                                 this.add_props.show(this.left_tree.getActiveFile().palete(), "props", sel.fqn());
200                                 break;
201
202                         case State.LISTENER:
203                            
204                                 if (sel == null) {
205                                         this.add_props.clear();
206                                         break;
207                                 }
208                                 this.add_props.show(this.left_tree.getActiveFile().palete(), "signals", sel.fqn());
209                                 break;
210                                 
211                         case State.CODE:
212                                  this.switchState(State.PREVIEW);
213                          
214                                 break;
215                            
216                                                         
217                 }
218                  
219
220         }
221
222
223
224
225         public void propsListInit()
226         {
227         
228                 this.left_props =new Xcls_LeftProps();
229                 this.left_props.ref();
230                 this.left_props.main_window = this.win;
231                 this.win.props.el.pack_start(this.left_props.el,true, true,0);
232                 this.left_props.el.show_all();
233         
234                 this.left_props.show_editor.connect( (file, node, type,  key) => {
235                         this.switchState(State.CODE);
236                         this.code_editor.show(
237                                 file,
238                                 node,
239                                 type,
240                                 key
241                         );
242                         
243                         
244                 });
245
246    
247                 this.left_props.stop_editor.connect( () => {
248                         if (this.state != State.CODE) {
249                                 return true;
250                         }
251         
252                         var ret =  this.code_editor.saveContents();
253                         if (!ret) {
254                                 return false;
255                         }
256                         this.switchState(State.PREVIEW);
257                         return ret;
258                 });
259         
260                 this.left_props.changed.connect(() => {
261                         if (this.left_tree.getActiveFile().xtype == "Roo" ) {
262                                    this.window_rooview.requestRedraw();
263                         } else {
264                                   this.window_gladeview.loadFile(this.left_tree.getActiveFile());
265                         }
266                         this.left_tree.model.updateSelected();
267                         this.file.save();
268                         if (this.file.xtype=="Gtk") {
269                                 this.valasource.checkFileSpawn(this.file);
270                         }
271                 });
272         
273
274
275         }
276
277         //-------------  projects edit
278
279         public void projectEditInit()
280         {
281                 this.roo_projectsettings_pop  =new Xcls_RooProjectSettings();
282                 this.roo_projectsettings_pop.ref();  /// really?
283         
284                 this.vala_projectsettings_pop  =new Xcls_ValaProjectSettingsPopover();
285                 this.vala_projectsettings_pop.ref();
286                 this.vala_projectsettings_pop.window = this.win;
287         
288                 //((Gtk.Container)(this.win.projecteditview.el.get_widget())).add(this.projectsettings.el);
289  
290  
291                 this.roo_projectsettings_pop.buttonPressed.connect((btn) => {
292                         // in theory active file can only be rooo...
293                          if (this.left_tree.getActiveFile().xtype == "Roo" ) {
294                                 if (btn == "save") {
295                                         this.window_rooview.view.renderJS(true);
296                                         this.roo_projectsettings_pop.el.hide();
297                                 }
298                                 if (btn == "apply") {
299                                         this.window_rooview.view.renderJS(true);
300                                         return;
301                                 }
302                         } else {
303                                 // do nothing for gtk..
304                         }
305                         if (btn == "save" || btn == "apply") {
306                                 this.win.project.save();
307                  
308                         }
309                         //this.switchState (State.PREVIEW); 
310                          
311                  });
312
313         }
314         public void projectPopoverShow(Gtk.Widget btn)
315         {
316                 if (this.left_tree.getActiveFile().xtype == "Roo" ) {
317                         this.roo_projectsettings_pop.show(btn,this.project);
318                         return;
319                 }
320                 // gtk..
321                 this.vala_projectsettings_pop.show(btn,(Project.Gtk)this.project);
322         
323         }
324         
325         
326         // ----------- object adding
327         public void objectAddInit()
328         {
329
330                 this.rightpalete  = new Xcls_RightPalete();
331                 this.rightpalete.ref();  /// really?
332                 ((Gtk.Container)(this.win.objectview.el.get_widget())).add(this.rightpalete.el);
333  
334
335                 var stage = this.win.objectview.el.get_stage();
336                 stage.set_background_color(  Clutter.Color.from_string("#000"));
337                    
338         }
339         
340         // -----------  properties adding list...
341         // listener uses the properties 
342         public void propsAddInit()
343         {
344         // Add properties
345                 this.add_props  = new Xcls_WindowAddProp();
346                 this.add_props.ref();  /// really?
347                 ((Gtk.Container)(this.win.addpropsview.el.get_widget())).add(this.add_props.el);
348  
349
350                 var  stage = this.win.addpropsview.el.get_stage();
351                 stage.set_background_color(  Clutter.Color.from_string("#000"));
352
353
354                 this.add_props.select.connect( (key,type,skel, etype) => {
355                         this.left_props.addProp(etype, key, skel, type);
356                 });
357
358         }
359         public void propsAddShow()
360         {
361
362         }
363         public void propsAddHide()
364         {
365         
366         }
367
368
369
370         
371         // ----------- Add / Edit listener
372         // listener uses the properties 
373         //public void listenerInit()     { }
374         public void listenerShow()
375         {
376
377         }
378         public void listenerHide()
379         {
380         
381         }
382
383         // -------------- codeEditor
384
385         public void codeEditInit()
386         {
387                 this.code_editor  = new  Editor();
388                 //this.code_editor.ref();  /// really?
389                 ((Gtk.Container)(this.win.codeeditview.el.get_widget())).add(this.code_editor.el);
390                 
391                 this.code_editor.window = this.win;
392  
393
394                 var stage = this.win.codeeditview.el.get_stage();
395                 stage.set_background_color(  Clutter.Color.from_string("#000"));
396                 // editor.save...
397
398                 this.code_editor.save.connect( () => {
399                         this.file.save();
400                         this.left_tree.model.updateSelected();
401                         if (this.left_tree.getActiveFile().xtype == "Roo" ) {
402                                    this.window_rooview.requestRedraw();
403                         } else {
404                                   this.window_gladeview.loadFile(this.left_tree.getActiveFile());
405                         }
406                          // we do not need to call spawn... - as it's already called by the editor?
407                          
408                 });
409                 
410         }
411
412         // ----------- list of projects on left
413         public void  projectListInit() 
414         {
415
416                 this.left_projects = new Xcls_WindowLeftProjects();
417                  this.left_projects.ref();
418                  this.win.leftpane.el.pack_start(this.left_projects.el,true, true,0);
419                  this.left_projects.el.show_all();
420                  this.left_projects.project_selected.connect((proj) => {
421                         this.buttonsShowHide();
422                         proj.scanDirs();
423                         this.clutterfiles.loadProject(proj);
424                 
425                  });
426
427         }
428         // ----------- file view
429
430         public void fileViewInit()
431         {
432                 var stage = this.win.rooview.el.get_stage(); // seems odd... 
433                 this.clutterfiles = new Xcls_ClutterFiles();
434                 this.clutterfiles.ref();
435                 stage.add_child(this.clutterfiles.el);
436                 this.clutterfiles.el.show();
437
438
439                 this.clutterfiles.open.connect((file) => { 
440                         this.fileViewOpen(file);
441                 });
442                 this.clutterfiles.el.transitions_completed.connect(() => {
443                         if (this.state == State.FILES) {
444                                 this.win.rooview.el.hide();
445                         } else {
446                                 this.clutterfiles.el.hide();
447                         }
448                         
449                         
450                 });
451
452         }
453  
454         public void fileDetailsInit()
455         {
456                 this.file_details = new Xcls_PopoverFileDetails();
457                 this.file_details.mainwindow = this.win;
458                 // force it modal to the main window..
459                 
460                 this.file_details.success.connect((project,file) =>
461                 {
462                         this.fileViewOpen(file);
463                 });
464
465         }
466         
467         public void fileViewOpen(JsRender.JsRender file, int line = -1)
468         {
469                 this.win.project = file.project;
470                 this.project = file.project;
471                 this.file = file;
472                 
473                 
474                 if (file.xtype == "PlainFile") {
475                         this.switchState (State.CODEONLY); 
476                         file.loadItems();
477                         this.code_editor.show(file, null, "", "");
478                         if (line> -1) {
479                                 this.code_editor.scroll_to_line(line);
480                         }
481                 } else {
482                 
483                         this.switchState (State.PREVIEW); 
484                         // this triggers loadItems..
485                         this.left_tree.model.loadFile(file);
486                         if (file.project.xtype == "Gtk" && line> -1 ) {
487                                 this.window_gladeview.scroll_to_line(line);
488                         }
489
490                 }
491         
492         
493                 var ctr= ((Gtk.Container)(this.win.rooview.el.get_widget()));
494  
495         
496                 if (file.project.xtype == "Roo" ) { 
497                         ctr.foreach( (w) => { ctr.remove(w); });
498  
499                         ctr.add(this.window_rooview.el);
500  
501                         if (file.xtype != "PlainFile") {       
502                                 this.window_rooview.loadFile(file);
503                                 this.window_rooview.el.show_all();
504                         }
505  
506                         
507
508                 } else {
509                         ctr.foreach( (w) => { ctr.remove(w); });
510
511                         ctr.add(this.window_gladeview.el);
512  
513                         if (file.xtype != "PlainFile") {    
514                                 this.window_gladeview.loadFile(file);
515                                 this.window_gladeview.el.show_all();
516                         }
517  
518                 }
519                 print("OPEN : " + file.name);
520                 if (file.xtype != "PlainFile") {    
521                         this.win.editpane.el.set_position(this.win.editpane.el.max_position);
522                 }
523                 this.win.setTitle(file.project.name + " : " + file.name);
524                          
525
526         }
527  
528  
529          /*
530         public void fileViewOpenPlain(string fname)
531         {
532                 
533                 this.switchState (State.CODEONLY); 
534                 this.code_editor.showPlainFile(fname);
535         }
536  */
537          
538         // ---------  webkit view
539         public void webkitViewInit()
540         {
541                 this.window_rooview  =new Xcls_WindowRooView();
542                 this.window_rooview.main_window = this.win;
543                 this.window_rooview.ref();
544                 ((Gtk.Container)(this.win.rooview.el.get_widget())).add(this.window_rooview.el);
545                 this.window_rooview.el.show_all();
546
547                 var stage = this.win.rooview.el.get_stage();
548                 stage.set_background_color(  Clutter.Color.from_string("#000"));
549         }
550
551         // ------ Gtk  - view
552
553         public void gtkViewInit()
554         {
555                 this.window_gladeview  =new Xcls_GtkView();
556                 this.window_gladeview.ref();
557                 this.window_gladeview.main_window = this.win;
558         }
559         
560         public void easingSaveAll()
561         {
562                 this.win.addpropsview.el.save_easing_state();
563                 this.win.codeeditview.el.save_easing_state();
564                 this.win.objectview.el.save_easing_state();
565                 this.win.rooview.el.save_easing_state();
566                 this.clutterfiles.el.save_easing_state();
567                  
568         }
569         public void easingRestoreAll()
570         {
571                 this.win.addpropsview.el.restore_easing_state();
572                 this.win.codeeditview.el.restore_easing_state();
573                 this.win.objectview.el.restore_easing_state();
574                 this.win.rooview.el.restore_easing_state();
575                 this.clutterfiles.el.restore_easing_state();
576                 
577         }
578         public void switchState(State new_state)
579         {
580                 
581                 // if the new state and the old state are the same..
582                 
583                 if (new_state == this.state) {
584                         return;
585                 }
586                 
587                 // stop werid stuff happening
588                 
589                 if (this.state == State.FILES 
590                         //&& new_state == State.FILEPROJECT 
591                         && this.left_projects.getSelectedProject() == null) {
592                         return;
593                 }
594                 // save the easing state of everything..
595                 this.easingSaveAll();
596                 
597                 switch (this.state) {
598
599                         case State.PREVIEW:
600                                 if (this.left_tree.getActiveFile() != null) {
601                                          if (this.left_tree.getActiveFile().xtype == "Roo" ) {
602                                                  this.window_rooview.createThumb();
603                                          } else {
604                                                   this.window_gladeview.createThumb();
605                                           }
606                                 }
607                                 // normally we are going from preview to another state.
608                                 // and different windows hide the preview in differnt ways..
609                                 
610                                 break;
611                                 
612                         
613                    case State.LISTENER:
614                    case State.PROP:
615                                 
616                                 this.win.addpropsview.el.set_scale(0.0f,0.0f);
617                                  break;
618                                 
619                         case State.CODE:
620                                 this.code_editor.saveContents();
621                           
622                                 this.win.codeeditview.el.set_scale(0.0f,0.0f);
623                                 break;
624                                 
625                         case State.CODEONLY:
626                                 // going from codeonly..
627                                 
628                                 // enable re-calc of canvas..
629
630                                 //this.code_editor.saveContents(); << not yet...
631                                 //if (new_state != State.PROJECTCODEONLY) {
632                                 //      this.win.rooview.el.show(); 
633                                 //      this.win.leftpane.el.show();
634                                 //      this.win.codeeditview.el.set_scale(0.0f,0.0f);
635                                 //} else {
636                                         this.win.codeeditview.el.set_pivot_point(0.0f,1.0f); // bottom left
637                                     this.win.codeeditview.el.set_scale(0.5f,0.5f);
638                                 //}     
639                                 
640                             while (Gtk.events_pending()) { 
641                                         Gtk.main_iteration();
642                                 }
643                                 
644                                  // hides it completely...
645                                  
646                                 break;
647
648                          case State.OBJECT:
649                            
650                                 this.win.objectview.el.set_scale(0.0f,0.0f);
651                                  break;
652
653                         /*case State.FILEPROJECT:
654                         //case State.PROJECT:
655                         //case State.PROJECTCODEONLY:
656                                 if (this.win.project.xtype == "Gtk") {
657                                         this.vala_projectsettings.save();
658                                 } 
659                                 if (this.state == State.FILEPROJECT) {
660                                         this.clutterfiles.el.set_scale(1.0f,1.0f);
661                                 
662                                 }
663                                 this.win.projecteditview.el.set_scale(0.0f,0.0f);
664                                 break;
665                         */
666                   case State.FILES: // goes to preview or codeonly...
667                                 // hide files...
668                                 
669                                 
670                                 /*if (new_state == State.FILEPROJECT) {
671                                 
672                                         this.clutterfiles.el.set_easing_duration(1000);
673                                         this.clutterfiles.el.set_pivot_point(0.5f,1.0f);
674                                         this.clutterfiles.el.set_scale(0.5f,0.5f);
675                                         break;
676                                 }
677                                 */
678  
679                                 if (new_state == State.CODEONLY) {
680                                         this.win.rooview.el.hide();
681                                 } else {
682                                         this.win.rooview.el.show();
683                                 }
684                                 
685                                 this.win.rooview.el.set_easing_duration(1000);
686                                 this.win.rooview.el.set_rotation_angle(Clutter.RotateAxis.Y_AXIS, 0.0f);
687                                 this.win.rooview.el.set_scale(1.0f,1.0f);
688                                 this.win.rooview.el.set_pivot_point(0.5f,0.5f);
689                                 this.win.rooview.el.set_opacity(0xff);
690                                 
691                                 this.clutterfiles.el.set_easing_duration(1000);
692                                 this.clutterfiles.el.set_pivot_point(0.5f,0.5f);
693                                 this.clutterfiles.el.set_rotation_angle(Clutter.RotateAxis.Y_AXIS, -180.0f);
694                                 this.clutterfiles.el.set_opacity(0);
695  
696                            
697                                 //this.clutterfiles.el.hide();
698                                  
699
700                                 break;
701
702                                 
703                 }
704            
705                 var oldstate  =this.state;
706                 this.state = new_state;
707                 
708                 
709                                 
710                 this.buttonsShowHide();
711                 
712                 
713                 switch (this.state) {
714                         
715                         case State.PREVIEW:  // this is the default state when working...
716                                  this.win.editpane.el.show(); // holder for tree and properties..
717                                  
718                          
719                                  this.left_projects.el.hide(); 
720                                  if (oldstate != State.FILES) {
721                                         // it's handled above..
722                                         print ("changing state to preview from NOT files..");
723                                          
724  
725                                         this.win.rooview.el.set_scale(1.0f,1.0f);
726                                  }
727                            
728                                 break;
729
730
731                         case State.LISTENER:
732                 // same as prop?
733                         case State.PROP:
734                                 var ae =      this.left_tree.getActiveElement();
735                                 if (ae == null) {
736                                         this.state = oldstate;
737                                         this.buttonsShowHide();
738                                         this.resizeCanvasElements();
739                                         this.easingRestoreAll();
740                                         return;
741                                 }
742                                 this.add_props.el.show_all();
743                                 this.add_props.show(
744                                         Palete.factory(this.win.project.xtype), 
745                                         this.state == State.LISTENER ? "signals" : "props",
746                                         ae.fqn()
747                                 );
748  
749                                         
750  
751                                 
752                                 // -- FIXME? this needs to be State aware?
753                  
754                                 this.win.rooview.el.set_pivot_point(1.0f,0.5f);
755                                   
756                                 this.win.addpropsview.el.set_scale(1.0f,1.0f);
757                                 break;
758                    
759                         case State.OBJECT:
760                                  var n = this.left_tree.getActiveElement();
761
762                                 if (this.file == null) {
763                                         this.state =oldstate;
764                                         this.buttonsShowHide();
765                                         this.resizeCanvasElements();
766                                         this.easingRestoreAll();
767                                         return;
768                                 }
769                                 
770                                 if (n == null && this.file.tree != null) {
771                                         this.state = oldstate;
772                                         this.buttonsShowHide();
773                                         this.resizeCanvasElements();
774                                         this.easingRestoreAll();
775                                         return;
776                                 }
777
778                                 this.rightpalete.el.show_all();
779                                 this.rightpalete.load(this.left_tree.getActiveFile().palete(), n == null ? "*top" : n.fqn());
780
781                                 
782                           
783                                 this.win.rooview.el.set_pivot_point(1.0f,0.5f);
784                                 this.win.objectview.el.set_scale(1.0f,1.0f);
785                                  
786                                 break;
787                    
788                    
789                         case State.CODE:
790                                 this.win.codeeditview.el.show();
791                                 this.code_editor.el.show_all();
792                                 // caller needs to call editor - show....
793                                 this.win.codeeditview.el.set_scale(1.0f,1.0f);
794                                 this.win.rooview.el.set_pivot_point(1.0f,0.5f);
795
796                                 break;
797
798                         case State.CODEONLY:
799                                 // going to codeonly..
800                                 this.win.codeeditview.el.show();
801                                 // recalc canvas...
802                                 //while (Gtk.events_pending()) { 
803                                 //      Gtk.main_iteration();
804                                 //}
805                                 
806                                 this.win.leftpane.el.hide();
807                                 this.win.codeeditview.el.show();
808                                 //while (Gtk.events_pending()) { 
809                                 //      Gtk.main_iteration();
810                                 //}
811                                 
812                                 
813                                 this.code_editor.el.show_all();
814                             
815                                 this.win.codeeditview.el.set_scale(1.0f,1.0f);
816                                 this.win.rooview.el.set_pivot_point(1.0f,0.5f);
817                                 break;
818
819                         /*case State.PROJECTCODEONLY:
820                             // going to project edit (when in code only)
821
822                                 
823                             
824                                 if (this.win.project.xtype == "Roo") {
825                                         this.projectsettings.el.show_all();
826                                         this.projectsettings.show(this.win.project);
827                                 } else {
828                                         this.vala_projectsettings.el.show_all();
829                                         this.vala_projectsettings.show((Project.Gtk)this.win.project);
830                                 }
831  
832                                 this.win.projecteditview.el.set_scale(1.0f,1.0f);
833                                  
834                                 break;
835
836
837                         case State.PROJECT:
838                                 this.win.rooview.el.set_pivot_point(1.0f,1.0f); // bottom right..
839                                 
840                                 if (this.win.project.xtype == "Roo") {
841                                         this.projectsettings.el.show_all();
842                                         this.projectsettings.show(this.win.project);
843                                 } else {
844                                         this.vala_projectsettings.el.show_all();
845                                         this.vala_projectsettings.show((Project.Gtk)this.win.project);
846                                 }
847  
848                                 this.win.projecteditview.el.set_scale(1.0f,1.0f);
849                                  
850                                 break;
851                                 
852                         case State.FILEPROJECT:
853                                 var pr = this.left_projects.getSelectedProject();
854
855                                 this.win.project = pr;
856                                 
857                                 this.attachProjectSettings();
858                                 print("FIlE PROJECT -  show %s\n", pr.xtype);
859                                 
860                                 if (pr.xtype == "Roo") {
861                                         this.projectsettings.el.show_all();
862                                         this.projectsettings.show(this.win.project);
863                                 } else {
864                                         this.vala_projectsettings.el.show_all();
865                                         this.vala_projectsettings.show((Project.Gtk)this.win.project);
866                                 }
867  
868                                 this.win.projecteditview.el.set_scale(1.0f,1.0f);
869                                  
870                                 break;
871                         */
872                    case State.FILES:  // can only get here from PREVIEW (or code-only) state.. in theory..
873                                 
874    
875                                 this.win.editpane.el.hide(); // holder for tree and properties..
876                                 
877                                 this.left_projects.el.show(); 
878                                 
879                                 // rotate the preview to hidden...
880                                 this.win.rooview.el.set_easing_duration(1000);
881                                 this.win.rooview.el.set_pivot_point(0.5f,0.5f);
882                                 this.win.rooview.el.set_rotation_angle(Clutter.RotateAxis.Y_AXIS, 180.0f);
883                                 this.win.rooview.el.set_opacity(0);
884                          
885                                 
886                                 
887          
888                                 if (this.win.project != null) {
889                                         this.left_projects.selectProject(this.win.project);
890                                 }
891                          
892                                 
893                                 this.clutterfiles.el.show();
894                                  
895                                 this.clutterfiles.el.set_easing_duration(1000);
896                                 this.clutterfiles.el.set_pivot_point(0.5f,0.5f);
897                                 this.clutterfiles.el.set_rotation_angle(Clutter.RotateAxis.Y_AXIS, 0.0f);
898                                 this.clutterfiles.el.set_opacity(0xff);
899                                 
900                                  
901                                 
902                                 break;
903
904
905                 }
906                 this.resizeCanvasElements();
907                 this.easingRestoreAll();
908                 
909                 // run the animation.. - then load files...
910                 GLib.Timeout.add(500,  ()  =>{
911                          this.resizeCanvasElements();
912                          return false;
913                 });
914                         
915         }
916         
917         public int redraw_count = 0;
918         public void resizeCanvas() // called by window resize .. delays redraw
919         {
920                 var rc = this.redraw_count;        
921                 this.redraw_count = 2;
922                 if (rc == 0) {
923                         GLib.Timeout.add(100,  ()  =>{
924                                  return this.resizeCanvasQueue();
925                         });
926                 }
927         }
928         public bool  resizeCanvasQueue()
929         {
930                 //print("WindowState.resizeCanvasQueue %d\n", this.redraw_count);        
931
932                 if (this.redraw_count < 1) {
933                         return false; // should not really happen...
934                 }
935
936
937                 this.redraw_count--;
938
939                 if (this.redraw_count > 0) {
940                         return true; // do it again in 1 second...
941                 }
942                 // got down to 0 or -1....
943                 this.redraw_count = 0;
944                 this.resizeCanvasElements();
945                 return false;
946
947         }
948         public void resizeCanvasElements()
949         {
950                 Gtk.Allocation alloc;
951                 this.win.clutterembed.el.get_allocation(out alloc);
952
953            // print("WindowState.resizeCanvasElements\n");
954                 if (!this.children_loaded || this.win.clutterembed == null) {
955                         print("WindowState.resizeCanvasElements = ingnore not loaded or no clutterfiles\n");
956                         return; 
957                 }
958                 
959                 var avail = alloc.width < 50.0f ? 0 :  alloc.width - 50.0f;
960                 var palsize = avail < 300.0f ? avail : 300.0f;
961                    
962  
963                 // -------- code edit min 600
964                 
965                 var codesize = avail < 800.0f ? avail : 800.0f;
966                 
967                 
968                 //print("set code size %f\n", codesize);
969
970                         
971                 
972                 switch ( this.state) {
973                         case State.PREVIEW:
974                                  
975                                 this.win.rooview.el.set_size(alloc.width-50, alloc.height);
976                                 break;
977         
978                         case State.FILES: 
979                                 this.clutterfiles.set_size(alloc.width-50, alloc.height);
980                                 break;
981
982                         /*case State.PROJECT:
983                  
984                                 this.win.projecteditview.el.set_size(alloc.width-50, alloc.height / 2.0f);
985                 
986                            // this.win.rooview.el.save_easing_state();
987                                 //this.win.rooview.el.set_size(alloc.width / 2.0f, alloc.height / 2.0f);
988                                  
989                                 this.win.rooview.el.set_scale(0.5f, 0.5f);
990                                 //this.win.rooview.el.restore_easing_state();
991                                 break;
992                 */
993                         case State.CODE: 
994                                 this.win.codeeditview.el.set_size(codesize, alloc.height);
995                                 var scale = avail > 0.0f ? (avail - codesize -10 ) / avail : 0.0f;
996                                 //this.win.rooview.el.save_easing_state();
997                                  
998                                 this.win.rooview.el.set_scale(scale,scale);
999                            // this.win.rooview.el.restore_easing_state();
1000                                 break;
1001                                 
1002                         case State.CODEONLY: 
1003                                 this.win.codeeditview.el.set_size(codesize, alloc.height);
1004                                 var scale = avail > 0.0f ? (avail - codesize -10 ) / avail : 0.0f;
1005                                 //this.win.rooview.el.save_easing_state();
1006                                 this.win.rooview.el.hide(); 
1007                                 this.win.rooview.el.set_scale(scale,scale);
1008                            // this.win.rooview.el.restore_easing_state();
1009                                 break;  
1010                         case State.PROP:
1011                         case State.LISTENER:
1012                                  this.win.addpropsview.el.set_size(palsize, alloc.height);
1013                                 var scale = avail > 0.0f ? (avail - palsize -10 ) / avail : 0.0f;
1014                                 this.win.rooview.el.set_scale(scale,scale);
1015                                 break;
1016                                 
1017                         case State.OBJECT:  
1018                                 this.win.objectview.el.set_size(palsize, alloc.height);    
1019                                 var scale = avail > 0.0f ? (avail - palsize -10 ) / avail : 0.0f;
1020                                 //this.win.rooview.el.save_easing_state();
1021                                 this.win.rooview.el.set_scale(scale,scale);
1022                            // this.win.rooview.el.restore_easing_state();
1023                                 break;
1024                 }
1025         }
1026
1027         // -- buttons show hide.....
1028
1029         public void buttonsShowHide()
1030         {
1031                 // basically hide everything, then show the relivant..
1032
1033                 // top bar btns
1034                 this.win.openbtn.el.hide();
1035                 this.win.openbackbtn.el.hide();
1036                 
1037                 this.win.backbutton.el.hide();
1038                 
1039
1040                 this.win.editfilebutton.el.hide();
1041                 this.win.projecteditbutton.el.hide();
1042                  
1043                 
1044                 this.win.objectshowbutton.el.hide(); // add objects
1045                 this.win.addpropbutton.el.hide();  
1046                 this.win.addlistenerbutton.el.hide(); 
1047
1048         
1049         
1050                 this.win.addprojectbutton.el.hide();
1051                 this.win.addfilebutton.el.hide();
1052                 this.win.delprojectbutton.el.hide();
1053                 
1054                 this.win.search_entry.el.hide();
1055                 this.win.search_results.el.hide();
1056                 switch (this.state) {
1057                         
1058                         case State.PREVIEW:  // this is the default state when working...
1059                            
1060                                 
1061                                 this.win.editfilebutton.el.show();
1062                                 this.win.projecteditbutton.el.show();
1063                                  
1064                                  
1065                                 
1066                                 this.win.objectshowbutton.el.show(); // add objects
1067                                 this.win.addpropbutton.el.show();  
1068                                 this.win.addlistenerbutton.el.show(); 
1069                                 this.win.search_entry.el.show();
1070                                 
1071                                 this.win.openbtn.el.show();
1072                                 
1073                                 break;
1074                         
1075                         case State.CODEONLY: 
1076                                 this.win.openbtn.el.show();
1077                                 this.win.projecteditbutton.el.show();
1078                                 this.win.search_entry.el.show();
1079                                 break;
1080                    
1081                         case State.CODE: 
1082                                 this.win.search_entry.el.show();
1083                                 this.win.backbutton.el.show();
1084                                 this.win.objectshowbutton.el.show(); // add objects ?? can you do this from here?
1085                                 this.win.addpropbutton.el.show();  
1086                                 this.win.addlistenerbutton.el.show(); 
1087                                 break;
1088                                 // continue thru..
1089                         case State.PROP:
1090                         case State.LISTENER:
1091                         case State.OBJECT:
1092                                 
1093                                 this.win.backbutton.el.show();
1094                                 this.win.objectshowbutton.el.show(); // add objects
1095                                 this.win.addpropbutton.el.show();  
1096                                 this.win.addlistenerbutton.el.show(); 
1097                                 break;
1098                         /*
1099                         case State.PROJECT: 
1100                         case State.FILEPROJECT:
1101                         case State.PROJECTCODEONLY:
1102                                 // anything else?
1103                                 this.win.backbutton.el.show();
1104                                 
1105                                 break;
1106                         */
1107         
1108                         case State.FILES:
1109                                 if (this.left_projects.getSelectedProject() != null ) {
1110                                         if (this.left_tree.getActiveFile() != null) {
1111                                          
1112                                                 this.win.openbackbtn.el.show();
1113                                         }
1114                                         this.win.addfilebutton.el.show();
1115                                         this.win.search_entry.el.show();
1116                                         this.win.projecteditbutton.el.show(); 
1117                                 } 
1118                                 
1119                                          
1120                                 this.win.addprojectbutton.el.show();
1121                                 this.win.delprojectbutton.el.show();
1122                                 
1123                                 
1124                                 
1125                                 
1126                                 break;
1127                 }
1128                 
1129                 
1130
1131         }
1132         
1133         
1134         public void showCompileResult(Json.Object obj)
1135                 {
1136                         // vala has finished compiling...
1137                         print("vala compiled");
1138                         var generator = new Json.Generator ();
1139                         var n  = new Json.Node(Json.NodeType.OBJECT);
1140                         n.init_object(obj);
1141                         generator.set_root (n);
1142                         print("result :%s", generator.to_data (null));
1143                         
1144                         
1145                         var buf = this.code_editor.buffer;
1146                         buf.check_running = false;
1147                         var has_errors = false;
1148                                       
1149                         if (obj.has_member("ERR-TOTAL")) {
1150                                 if (obj.get_int_member("ERR-TOTAL")> 0) {
1151                                         has_errors = true;
1152                                 }
1153                                  this.win.statusbar_errors.setNotices( obj.get_object_member("ERR") , (int) obj.get_int_member("ERR-TOTAL"));
1154                         } else {
1155                                  this.win.statusbar_errors.setNotices( new Json.Object() , 0);
1156                         }    
1157                         
1158                         if (obj.has_member("WARN-TOTAL")) {
1159
1160                                  this.win.statusbar_warnings.setNotices(obj.get_object_member("WARN"), (int) obj.get_int_member("WARN-TOTAL"));
1161                         } else {
1162                                  this.win.statusbar_warnings.setNotices( new Json.Object() , 0);
1163                                  
1164                         }
1165                         if (obj.has_member("DEPR-TOTAL")) {
1166                                 
1167                                  this.win.statusbar_depricated.setNotices( obj.get_object_member("DEPR"),  (int) obj.get_int_member("DEPR-TOTAL"));
1168                                  
1169                         } else {
1170                                 this.win.statusbar_depricated.setNotices( new Json.Object(),0);
1171                         }
1172                         //if (this.state == State.CODE || this.state == State.PROJECTCODEONLY) {
1173                         if (this.state == State.CODE) {
1174                                 buf.highlightErrorsJson("ERR", obj); 
1175                                 buf.highlightErrorsJson("WARN", obj);
1176                                 buf.highlightErrorsJson("DEPR", obj);
1177                         }
1178                         
1179                         this.win.statusbar_compilestatus_label.el.hide();
1180                         this.win.statusbar_run.el.hide();
1181                         if (!has_errors) { 
1182                                 this.win.statusbar_compilestatus_label.el.show();
1183                                 this.win.statusbar_run.el.show();
1184                         }
1185                         if (this.file.xtype == "Gtk") {
1186                                 // not sure how this is working ok? - as highlighting is happening on the vala files at present..
1187                                 var gbuf =   this.window_gladeview.sourceview;
1188                                 gbuf.highlightErrorsJson("ERR", obj);
1189                                 gbuf.highlightErrorsJson("WARN", obj);
1190                                 gbuf.highlightErrorsJson("DEPR", obj);                  
1191                                 
1192                                 if (!has_errors) {
1193                                         this.win.statusbar_run.el.show();
1194                                 }
1195                         
1196                    }
1197                    
1198                    if (this.file.xtype == "Gtk") {
1199                                 // not sure how this is working ok? - as highlighting is happening on the vala files at present..
1200                                 var gbuf =   this.window_rooview.sourceview;
1201                                 gbuf.highlightErrorsJson("ERR", obj);
1202                                 gbuf.highlightErrorsJson("WARN", obj);
1203                                 gbuf.highlightErrorsJson("DEPR", obj);                  
1204                         
1205                    }
1206                    
1207                         this.last_compile_result = obj;
1208                         
1209                         
1210                 }
1211         
1212 }
1213
1214