c381b78f9b66038eab562e750c6419ac77691ff1
[app.Builder.js] / Builder4 / WindowLeftTree.vala
1 static Xcls_WindowLeftTree  _WindowLeftTree;
2
3 public class Xcls_WindowLeftTree : Object 
4 {
5     public Gtk.ScrolledWindow el;
6     private Xcls_WindowLeftTree  _this;
7
8     public static Xcls_WindowLeftTree singleton()
9     {
10         if (_WindowLeftTree == null) {
11             _WindowLeftTree= new Xcls_WindowLeftTree();
12         }
13         return _WindowLeftTree;
14     }
15     public Xcls_view view;
16     public Xcls_model model;
17     public Xcls_renderer renderer;
18     public Xcls_LeftTreeMenu LeftTreeMenu;
19
20         // my vars (def)
21     public signal bool before_node_change (JsRender.Node? node);
22     public signal void changed ();
23     public signal void node_selected (JsRender.Node? node);
24     public Xcls_MainWindow main_window;
25
26     // ctor 
27     public Xcls_WindowLeftTree()
28     {
29         _this = this;
30         this.el = new Gtk.ScrolledWindow( null, null );
31
32         // my vars (dec)
33         this.main_window = null;
34
35         // set gobject values
36         this.el.shadow_type = Gtk.ShadowType.IN;
37         var child_0 = new Xcls_view( _this );
38         child_0.ref();
39         this.el.add (  child_0.el  );
40         var child_1 = new Xcls_LeftTreeMenu( _this );
41         child_1.ref();
42
43         // init method 
44
45         this.el.set_policy (Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);    }
46
47     // user defined functions 
48     public           JsRender.Node? getActiveElement () { // return path to actie node.
49     
50          var path = this.getActivePath();
51          if (path.length < 1) {
52             return null;
53          }
54          return _this.model.pathToNode(path);
55          
56     }
57     public           JsRender.JsRender getActiveFile () {
58         return this.model.file;
59     }
60     public           string getActivePath () {
61         var model = this.model;
62         var view = this.view.el;
63         if (view.get_selection().count_selected_rows() < 1) {
64             return "";
65         }
66         Gtk.TreeIter iter;
67         Gtk.TreeModel mod;
68         view.get_selection().get_selected(out mod, out iter);
69         return mod.get_path(iter).to_string();
70     }
71     public class Xcls_view : Object 
72     {
73         public Gtk.TreeView el;
74         private Xcls_WindowLeftTree  _this;
75
76
77             // my vars (def)
78         public string dragData;
79         public int drag_x;
80         public string[] dropList;
81         public int drag_y;
82         public bool drag_in_motion;
83         public bool blockChanges;
84
85         // ctor 
86         public Xcls_view(Xcls_WindowLeftTree _owner )
87         {
88             _this = _owner;
89             _this.view = this;
90             this.el = new Gtk.TreeView();
91
92             // my vars (dec)
93             this.blockChanges = false;
94
95             // set gobject values
96             this.el.tooltip_column = 1;
97             this.el.enable_tree_lines = true;
98             this.el.headers_visible = false;
99             var child_0 = new Xcls_model( _this );
100             child_0.ref();
101             this.el.set_model (  child_0.el  );
102             var child_1 = new Xcls_TreeViewColumn4( _this );
103             child_1.ref();
104             this.el.append_column (  child_1.el  );
105
106             // init method 
107
108             {
109                 var description = new Pango.FontDescription();
110                 description.set_size(8000);
111                 this.el.modify_font(description);
112             
113                 var selection = this.el.get_selection();
114                 selection.set_mode( Gtk.SelectionMode.SINGLE);
115             
116             
117                 // is this really needed??
118                 /*
119                 this.selection.signal['changed'].connect(function() {
120                     _this.get('/LeftTree.view').listeners.cursor_changed.apply(
121                         _this.get('/LeftTree.view'), [ _this.get('/LeftTree.view'), '']
122                     );
123                 });
124                 */
125                 Gtk.drag_source_set (
126                     this.el,            /* widget will be drag-able */
127                     Gdk.ModifierType.BUTTON1_MASK,       /* modifier that will start a drag */
128                     Builder4.Application.targetList,            /* lists of target to support */
129                     Gdk.DragAction.COPY   | Gdk.DragAction.MOVE    |  Gdk.DragAction.LINK           /* what to do with data after dropped */
130                 );
131             
132                 // ?? needed??
133                 //Gtk.drag_source_add_text_targets(this.el); 
134             
135                 Gtk.drag_dest_set
136                 (
137                     this.el,              /* widget that will accept a drop */
138                     Gtk.DestDefaults.MOTION  | Gtk.DestDefaults.HIGHLIGHT,
139                     Builder4.Application.targetList,            /* lists of target to support */
140                     Gdk.DragAction.COPY   | Gdk.DragAction.MOVE   | Gdk.DragAction.LINK     /* what to do with data after dropped */
141                 );
142             
143                 //Gtk.drag_dest_set_target_list(this.el, Builder.Application.targetList);
144                 //Gtk.drag_dest_add_text_targets(this.el);
145             }
146             // listeners 
147             this.el.button_press_event.connect( ( ev) => {
148                 //console.log("button press?");
149                 if (! _this.before_node_change(null) ) {
150                    return true;
151                 }
152             
153                 
154                 if (ev.type != Gdk.EventType.BUTTON_PRESS  || ev.button != 3) {
155                     //print("click" + ev.type);
156                     return false;
157                 }
158                 Gtk.TreePath res;
159                 if (!_this.view.el.get_path_at_pos((int)ev.x,(int)ev.y, out res, null, null, null) ) {
160                     return true;
161                 }
162                  
163                 this.el.get_selection().select_path(res);
164                  
165                   //if (!this.get('/LeftTreeMenu').el)  { 
166                   //      this.get('/LeftTreeMenu').init(); 
167                   //  }
168                     
169                  _this.LeftTreeMenu.el.set_screen(Gdk.Screen.get_default());
170                  _this.LeftTreeMenu.el.show_all();
171                   _this.LeftTreeMenu.el.popup(null, null, null,  3, ev.time);
172                  //   print("click:" + res.path.to_string());
173                   return true;
174             });
175             this.el.drag_begin.connect( ( ctx)  => {
176                 //print('SOURCE: drag-begin');
177                     
178                     
179                     //this.targetData = "";
180                     
181                     // find what is selected in our tree...
182                     
183                     var s = _this.view.el.get_selection();
184                     if (s.count_selected_rows() < 1) {
185                         return;
186                     }
187                     Gtk.TreeIter iter;
188                     Gtk.TreeModel mod;
189                     s.get_selected(out mod, out iter);
190             
191                     
192             
193                     // set some properties of the tree for use by the dropped element.
194                     GLib.Value value;
195                     _this.model.el.get_value(iter, 2, out value);
196                     var tp = mod.get_path(iter).to_string();
197                     var data = (JsRender.Node)(value.dup_object());
198                     var xname = data.fqn();
199                     print ("XNAME  IS " + xname+ "\n");
200                     this.dragData = tp;
201                     this.dropList = _this.model.file.palete().getDropList(xname);
202                     
203                     print ("DROP LIST IS " + string.joinv(", ", this.dropList) + "\n");
204                     
205             
206                     // make the drag icon a picture of the node that was selected
207                 
208                     
209                 // by default returns the path..
210                    var path = _this.model.el.get_path(iter);
211             
212                      
213                     var pix = this.el.create_row_drag_icon ( path);
214                     
215                     Gtk.drag_set_icon_surface (ctx, pix) ;
216                     
217                     return;
218             });
219             this.el.cursor_changed.connect( ( ) => {
220             
221             
222                  if (this.blockChanges) { // probably not needed.. 
223                    return  ;
224                  }
225                   if (!_this.before_node_change(null) ) {
226                      this.blockChanges = true;
227                      this.el.get_selection().unselect_all();
228                      this.blockChanges = false;
229                      return;
230                  }
231                  if (_this.model.file == null) {
232                      return;
233                  } 
234                  
235                  //var render = this.get('/LeftTree').getRenderer();                
236                 print("LEFT TREE -> view -> selection changed called\n");
237                 
238                 
239                 // -- it appears that the selection is not updated.
240                 
241                 GLib.Timeout.add_full(GLib.Priority.DEFAULT,10 , () => {
242                      
243             
244                         if (this.el.get_selection().count_selected_rows() < 1) {
245             
246                             print("selected rows < 1\n");
247                             //??this.model.load( false);
248                             _this.node_selected(null);
249                             
250                             return false ;
251                         }
252                             
253                             //console.log('changed');
254                         var s = this.el.get_selection();
255                          Gtk.TreeIter iter;
256                          Gtk.TreeModel mod;
257                         s.get_selected(out mod, out iter);
258                         
259                         
260                         // var val = "";
261                         GLib.Value value;
262                         _this.model.el.get_value(iter, 2, out value);
263                         _this.model.activePath = mod.get_path(iter).to_string();
264                         
265                         var node = (JsRender.Node)value.dup_object();
266                         _this.node_selected(node);
267                         return false;
268                   });  
269                 //_this.after_node_change(node);
270             
271             //        _this.model.file.changed(node, "tree");
272                
273                 //Seed.print( value.get_string());
274                 return  ;
275                             
276             });
277             this.el.drag_end.connect( (drag_context) => {
278                 //Seed.print('LEFT-TREE: drag-end');
279                     this.dragData = "";
280                     this.dropList = null;
281             //        this.targetData = "";
282                     this.highlightDropPath("",0);
283             //        return true;
284             });
285             this.el.drag_motion.connect( ( ctx, x, y, time)  => {
286                print("got drag motion\n");
287                 var src = Gtk.drag_get_source_widget(ctx);
288                this.drag_x = x;
289                this.drag_y = y;     
290             
291                if (src != this.el) {
292                
293              
294              
295                 // the point of this is to detect where an item could be dropped..
296                     print("requesting drag data\n");
297                    this.drag_in_motion = true;
298                    
299                         // request data that will be recieved by the recieve...              
300                     Gtk.drag_get_data
301                     (
302                             this.el,         // will receive 'drag-data-received' signal 
303                             ctx,        // represents the current state of the DnD 
304                             Gdk.Atom.intern("STRING",true),    // the target type we want 
305                             time            // time stamp 
306                     );
307                     return true;
308               }    
309             
310             
311               print("action: %d\n", ctx.get_actions());
312              //print("GETTING POS");
313                 var  targetData = "";
314             
315                 Gtk.TreePath path;
316                 Gtk.TreeViewDropPosition pos;
317                 var isOver = _this.view.el.get_dest_row_at_pos(this.drag_x,this.drag_y, out path, out pos);
318             
319                 // if there are not items in the tree.. the we have to set isOver to true for anything..
320                 var isEmpty = false;
321                 if (_this.model.el.iter_n_children(null) < 1) {
322                     print("got NO children?\n");
323                     isOver = true; //??? 
324                     isEmpty = true;
325                     pos = Gtk.TreeViewDropPosition.INTO_OR_AFTER;
326                 }
327             
328             
329                 // ------------- a drag from self..
330             
331             
332                 //var action = Gdk.DragAction.COPY;
333                     // unless we are copying!!! ctl button..
334                 
335                 var action = (ctx.get_actions() & Gdk.DragAction.MOVE) > 0 ?
336                              Gdk.DragAction.COPY  : Gdk.DragAction.MOVE ;
337                             // Gdk.DragAction.MOVE : Gdk.DragAction.COPY ;
338             
339             
340                 if (_this.model.el.iter_n_children(null) < 1) {
341                     // no children.. -- asume it's ok..
342                     
343                     targetData = "|%d|".printf((int)Gtk.TreeViewDropPosition.INTO_OR_AFTER);
344                        
345                     this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);        
346                     Gdk.drag_status(ctx, action ,time);
347                     return true;
348                     
349                     // continue through to allow drop...
350             
351                 } 
352                     
353                     
354             
355                 
356                 
357                 //print("ISOVER? " + isOver);
358                 if (!isOver) {
359               
360                     Gdk.drag_status(ctx, 0 ,time);
361                      this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);                    
362                      return false;
363             
364                 }
365                         
366                 // drag node is parent of child..
367                 //console.log("SRC TREEPATH: " + src.treepath);
368                 //console.log("TARGET TREEPATH: " + data.path.to_string());
369                 
370                 // nned to check a  few here..
371                 //Gtk.TreeViewDropPosition.INTO_OR_AFTER
372                 //Gtk.TreeViewDropPosition.INTO_OR_BEFORE
373                 //Gtk.TreeViewDropPosition.AFTER
374                 //Gtk.TreeViewDropPosition.BEFORE
375                 
376                 // locally dragged items to not really use the 
377                 var selection_text = this.dragData;
378                 
379                         
380                         
381                 if (selection_text == null || selection_text.length < 1) {
382                             //print("Error  - drag selection text returned NULL");
383                          Gdk.drag_status(ctx, 0 ,time);
384                         this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);
385                          return false;
386                  }
387                                    
388                         
389                         // see if we are dragging into ourself?
390                 var target_path = path.to_string();            
391                 print ("Drag  %s onto %s--%d\n ", selection_text, target_path, pos);
392                 
393                 // pos : 3 = ontop - 0 = after, 1 = before
394                 //print("target_path="+target_path);
395             
396                 // 
397                 if (selection_text  == target_path) {
398                     print("self drag ?? == we should perhaps allow copy onto self..\n");
399                             
400                      Gdk.drag_status(ctx, 0 ,time);
401                       this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);
402                       return false;
403             //                 -- fixme -- this is not really correct..
404             
405                 }
406                         
407                 // check that 
408                 //print("DUMPING DATA");
409                 //console.dump(data);
410                 // path, pos
411                 
412                 //print(data.path.to_string() +' => '+  data.pos);
413                 
414                 // dropList is a list of xtypes that this node could be dropped on.
415                 // it is set up when we start to drag..
416                 
417                 
418                 targetData = _this.model.findDropNodeByPath( path.to_string(), this.dropList, pos);
419                     
420                 print("targetDAta: " + targetData +"\n");
421                 
422                 if (targetData.length < 1) {
423                     //print("Can not find drop node path");
424                    
425                     Gdk.drag_status(ctx, 0, time);
426                     this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);
427                     return false;
428                 }
429                 
430                 var td_ar = targetData.split("|");
431                   
432                 
433             
434                 Gdk.drag_status(ctx, action ,time);
435                 this.highlightDropPath(td_ar[0], (Gtk.TreeViewDropPosition)int.parse(td_ar[1]));
436                 return true;
437                    
438                    
439             });
440             this.el.drag_data_get.connect( ( drag_context, data, info, time) => {
441                         
442                         
443                              //print("drag-data-get");
444                              var s = this.el.get_selection();
445                              if (s.count_selected_rows() < 1) {
446                                     data.set_text("",0);     
447                                      print("return empty string - no selection..");
448                                     return;
449                                 }
450                              
451                              Gtk.TreeIter iter;
452                              Gtk.TreeModel mod;
453                              
454                              s.get_selected(out mod, out iter);
455                              
456                             
457                             
458                              GLib.Value value;
459                              _this.model.el.get_value(iter, 2, out value);
460                              var ndata = (JsRender.Node)(value.dup_object());
461                              var xname = ndata.fqn();
462                             
463                             
464                             var tp = mod.get_path(iter).to_string();
465                             // by default returns the path..
466                             
467                            if ( info != Gdk.Atom.intern("STRING",true) ) {
468                                 tp = ndata.toJsonString();
469                            }   
470                            
471                            //data.set_text(tp,tp.length);   
472                             
473                             data.set (data.get_target (), 8, (uchar[]) tp.to_utf8 ());
474                         
475                             
476                            //  print("return " + tp);
477                         });
478             this.el.drag_data_received.connect( (ctx, x, y, sel, info, time)  => {
479               
480                     // THIS CODE ONLY RELATES TO drag  or drop of "NEW" elements or "FROM another tree.."
481               
482               
483                     //  print("Tree: drag-data-received\n");
484                     var selection_text = (string)sel.get_data();
485                     //print("selection_text= %s\n",selection_text);
486             
487                     var is_drag = this.drag_in_motion;
488                 
489                     
490             
491                     print("Is Drag %s\n", is_drag ? "Y": "N");
492                     var  targetData = "";
493                     
494                     Gtk.TreePath path;
495                     Gtk.TreeViewDropPosition pos;
496                     var isOver = _this.view.el.get_dest_row_at_pos(this.drag_x,this.drag_y, out path, out pos);
497                     
498                     // if there are not items in the tree.. the we have to set isOver to true for anything..
499                     var isEmpty = false;
500                     if (_this.model.el.iter_n_children(null) < 1) {
501                         print("got NO children?\n");
502                         isOver = true; //??? 
503                         isEmpty = true;
504                         pos = Gtk.TreeViewDropPosition.INTO_OR_AFTER;
505                     }
506                     
507                  
508                     //console.log("LEFT-TREE: drag-motion");
509                     var src = Gtk.drag_get_source_widget(ctx);
510                     
511                     // a drag from self - this should be handled by drop and motion.
512                     if (src == this.el) {
513                         print("Source == this element should not happen.. ? \n");
514                         return;
515                     }
516                     //print("drag_data_recieved from another element");
517                     
518                      
519                     
520                     
521                     if (selection_text == null || selection_text.length < 1 || !isOver) {
522                         // nothing valid foudn to drop...
523                            print("empty sel text or not over");
524                         if (is_drag) {
525                             Gdk.drag_status(ctx, 0, time);
526                             this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);
527                             return;
528                         }
529                         Gtk.drag_finish (ctx, false, false, time);        // drop failed..
530                         // no drop action...
531                         return;            
532                     
533                     }
534                     var dropNode = new JsRender.Node(); 
535                     
536                     var dropNodeType  = selection_text;
537                     var show_templates = true;
538                     // for drop
539                     if (dropNodeType[0] == '{') {
540                         var pa = new Json.Parser();
541                         pa.load_from_data(dropNodeType);
542                          
543                         dropNode.loadFromJson( pa.get_root().get_object(), 2);
544                         dropNodeType = dropNode.fqn();
545                         show_templates = false;
546                         
547                         
548                     } else {
549             
550                         dropNode.setFqn(selection_text);
551                     }
552             
553                      
554                     // dropList --- need to gather this ... 
555                     print("get dropList for : %s\n",dropNodeType);            
556                     var dropList = _this.model.file.palete().getDropList(dropNodeType);
557                     
558                     print("dropList: %s\n", string.joinv(" , ", dropList));
559                     
560                     // if drag action is link ... then we can drop it anywahere...
561                      if ((ctx.get_actions() & Gdk.DragAction.LINK) > 0) {
562                              targetData = path.to_string() + "";
563                      } else {
564                     
565                     
566                         targetData = _this.model.findDropNodeByPath( isEmpty ? "" : path.to_string(), dropList, pos);
567                     }
568                     
569                     
570                         
571                     print("targetDAta: " + targetData +"\n");
572                     
573                     if (targetData.length < 1) {
574                      
575                         // invalid drop path..
576                         if (this.drag_in_motion) {
577                             Gdk.drag_status(ctx, 0, time);
578                             this.highlightDropPath("", (Gtk.TreeViewDropPosition)0);
579                             return;
580                         }
581                         Gtk.drag_finish (ctx, false, false, time);        // drop failed..
582                         // no drop action...
583                         return;
584                     }
585                     // valid drop path..
586                     
587                       var td_ar = targetData.split("|");
588                       
589                     
590                     if (this.drag_in_motion) { 
591                         Gdk.drag_status(ctx, Gdk.DragAction.COPY ,time);
592             
593                         this.highlightDropPath(  td_ar[0]  , (Gtk.TreeViewDropPosition)int.parse(td_ar[1]));
594                         return;
595                     }
596                     // continue on to allow drop..
597                 
598             
599                     // at this point, drag is not in motion... -- as checked above... - so it's a real drop event..
600                     
601             
602                     _this.model.dropNode(targetData, dropNode, show_templates);
603                     print("ADD new node!!!\n");
604                         
605                     ///Xcls_DialogTemplateSelect.singleton().show( _this.model.file.palete(), node);
606                     
607                     Gtk.drag_finish (ctx, false, false,time);
608                     
609                     
610                         
611                         
612                   
613             });
614             this.el.drag_drop.connect( (  ctx, x, y, time)  => {
615                   //Seed.print("TARGET: drag-drop");
616                
617                
618                 var src = Gtk.drag_get_source_widget(ctx);
619                  
620                if (src != this.el) {
621                
622                 
623                    
624                    this.drag_in_motion = false;   
625                         // request data that will be recieved by the recieve...              
626                     Gtk.drag_get_data
627                     (
628                             this.el,         // will receive 'drag-data-received' signal 
629                             ctx,        // represents the current state of the DnD 
630                             Gdk.Atom.intern("application/json",true),    // the target type we want 
631                             time            // time stamp 
632                     );
633             
634                      
635                     // No target offered by source => error
636                
637             
638                      return  false;
639                  }
640                  
641                  // handle drop around self..
642                  
643                               
644                         
645                 //print("GETTING POS");
646                 var  targetData = "";
647                 
648                 Gtk.TreePath path;
649                 Gtk.TreeViewDropPosition pos;
650                 var isOver = _this.view.el.get_dest_row_at_pos(this.drag_x,this.drag_y, out path, out pos);
651                 
652                 // if there are not items in the tree.. the we have to set isOver to true for anything..
653                 var isEmpty = false;
654                 if (_this.model.el.iter_n_children(null) < 1) {
655                     print("got NO children?\n");
656                     isOver = true; //??? 
657                     isEmpty = true;
658                     pos = Gtk.TreeViewDropPosition.INTO_OR_AFTER;
659                 }
660                 
661                  
662                  
663                 //var action = Gdk.DragAction.COPY;
664                     // unless we are copying!!! ctl button..
665                 
666                 var action = (ctx.get_actions() & Gdk.DragAction.MOVE) > 0 ?
667                              Gdk.DragAction.COPY  : Gdk.DragAction.MOVE ;
668                             // Gdk.DragAction.MOVE : Gdk.DragAction.COPY ;
669             
670                   
671                 if (_this.model.el.iter_n_children(null) < 1) {
672                     // no children.. -- asume it's ok..
673                     
674                     targetData = "|%d|".printf((int)Gtk.TreeViewDropPosition.INTO_OR_AFTER);
675                      
676                     // continue through to allow drop...
677             
678                 } else {
679                             
680                             
681                 
682                             
683                             
684                             //print("ISOVER? " + isOver);
685                     if (!isOver) {
686                         
687                         Gtk.drag_finish (ctx, false, false, time);        // drop failed..
688                         return true; // not over apoint!?! - no action on drop or motion..
689                     }
690                             
691                     // drag node is parent of child..
692                     //console.log("SRC TREEPATH: " + src.treepath);
693                     //console.log("TARGET TREEPATH: " + data.path.to_string());
694                     
695                     // nned to check a  few here..
696                     //Gtk.TreeViewDropPosition.INTO_OR_AFTER
697                     //Gtk.TreeViewDropPosition.INTO_OR_BEFORE
698                     //Gtk.TreeViewDropPosition.AFTER
699                     //Gtk.TreeViewDropPosition.BEFORE
700                     
701                     // locally dragged items to not really use the 
702                     var selection_text = this.dragData;
703                     
704                     
705                     
706                     if (selection_text == null || selection_text.length < 1) {
707                         //print("Error  - drag selection text returned NULL");
708                       
709                          Gtk.drag_finish (ctx, false, false, time);        // drop failed..
710                          return true; /// -- fixme -- this is not really correct..
711                     }                
712                             
713                             // see if we are dragging into ourself?
714                             print ("got selection text of  " + selection_text);
715                     
716                     var target_path = path.to_string();
717                     //print("target_path="+target_path);
718             
719                     // 
720                     if (selection_text  == target_path) {
721                         print("self drag ?? == we should perhaps allow copy onto self..\n");
722                         
723                          Gtk.drag_finish (ctx, false, false, time);        // drop failed..
724             
725                          return true; /// -- fixme -- this is not really correct..
726             
727                     }
728                             
729                     // check that 
730                     //print("DUMPING DATA");
731                     //console.dump(data);
732                     // path, pos
733                     
734                     //print(data.path.to_string() +' => '+  data.pos);
735                     
736                     // dropList is a list of xtypes that this node could be dropped on.
737                     // it is set up when we start to drag..
738                     
739                     
740                     targetData = _this.model.findDropNodeByPath( path.to_string(), this.dropList, pos);
741                         
742                     print("targetDAta: " + targetData +"\n");
743                     
744                     if (targetData.length < 1) {
745                         //print("Can not find drop node path");
746                          
747                         Gtk.drag_finish (ctx, false, false, time);        // drop failed..
748                         return true;
749                     }
750                     
751                     var td_ar = targetData.split("|");
752                               
753                             
754                             
755                             // continue on to allow drop..
756               }
757                     // at this point, drag is not in motion... -- as checked above... - so it's a real drop event..
758             
759             
760                  var delete_selection_data = false;
761                     
762                 if (action == Gdk.DragAction.ASK)  {
763                     /* Ask the user to move or copy, then set the ctx action. */
764                 }
765             
766                 if (action == Gdk.DragAction.MOVE) {
767                     delete_selection_data = true;
768                 }
769                   
770                             // drag around.. - reorder..
771                 _this.model.moveNode(targetData, action);
772                     
773                    
774                     
775                     
776                     
777                     // we can send stuff to souce here...
778             
779             
780             // do we always say failure, so we handle the reall drop?
781                 Gtk.drag_finish (ctx, false, false,time); //delete_selection_data, time);
782             
783                 return true;
784              
785              
786              
787              
788              
789              
790             });
791         }
792
793         // user defined functions 
794         public           void highlightDropPath ( string treepath, Gtk.TreeViewDropPosition pos) {
795         
796                 // highlighting for drag/drop
797                 if (treepath.length > 0) {
798                     this.el.set_drag_dest_row(  new  Gtk.TreePath.from_string( treepath ), pos);
799                   } else {
800                     this.el.set_drag_dest_row(null, Gtk.TreeViewDropPosition.INTO_OR_AFTER);
801                  }
802                      
803         }
804         public           void selectNode (string treepath_str) {
805             //this.selection.select_path(new  Gtk.TreePath.from_string( treepath_str));
806              var tp = new Gtk.TreePath.from_string(treepath_str);
807              
808              this.el.set_cursor(tp, null, false);  
809              this.el.scroll_to_cell(tp, null, false, 0,0);
810         }
811     }
812     public class Xcls_model : Object 
813     {
814         public Gtk.TreeStore el;
815         private Xcls_WindowLeftTree  _this;
816
817
818             // my vars (def)
819         public DialogTemplateSelect template_select;
820         public JsRender.JsRender? file;
821         public string activePath;
822         public Project.Project? project;
823
824         // ctor 
825         public Xcls_model(Xcls_WindowLeftTree _owner )
826         {
827             _this = _owner;
828             _this.model = this;
829             this.el = new Gtk.TreeStore( 3, typeof(string),typeof(string),typeof(Object) );
830
831             // my vars (dec)
832             this.template_select = null;
833             this.file = null;
834             this.activePath = "";
835             this.project = null;
836
837             // set gobject values
838
839             // init method 
840
841             print("model initialized");        }
842
843         // user defined functions 
844         public           string findDropNode (string treepath_str, string[] targets) {
845         
846             // this is used by the dragdrop code in the roo version AFAIR..
847         
848             //var path = treepath_str.replace(/^builder-/, '');
849             // treemap is depreciated... - should really check if model has any entries..
850         
851             if (this.el.iter_n_children(null) < 1) {
852                 //print("NO KEYS");
853                 return "|%d".printf((int)Gtk.TreeViewDropPosition.INTO_OR_AFTER);
854             }
855             //print("FIND treepath: " + path);
856             //console.dump(this.treemap);
857             
858             //if (!treepath_str.match(/^builder-/)) {
859             //    return []; // nothing!
860             //}
861             if (targets.length > 0 && targets[0] == "*") {
862                 return  treepath_str;
863             }
864             return this.findDropNodeByPath(treepath_str,targets, -1);
865         }
866         public           void loadFile (JsRender.JsRender f) {
867             //console.dump(f);
868             this.el.clear();
869             this.file = f;
870             
871             
872         //    if (!f) {
873         //        console.log('missing file');
874         //        return;
875         //    }
876             
877             // load the file if not loaded..
878             if (f.tree == null) {
879                 f.loadItems( );
880             }
881             // if it's still null?
882             if (f.tree == null) {
883                 return;
884             }
885             
886             /// this.get('/Window').setTitle(f.project.getName() + ' - ' + f.name);
887             
888             //if (f.items.length && typeof(f.items[0]) == 'string') {
889             
890                 //this.get('/RightEditor').el.show();
891                 //this.get('/RightEditor.view').load( f.items[0]);
892             //    return;
893             //}
894             //print("LOAD");
895             //print(JSON.stringify(f.items, null,4));
896             //console.dump(f.items);
897             var o = new Gee.ArrayList<JsRender.Node>();
898             o.add(f.tree);
899             this.load(o,null);
900             
901             _this.view.el.expand_all();
902         
903             if (f.tree.items.size < 1) {
904                 // single item..
905                 
906                 //this.get('/Window.leftvpaned').el.set_position(80);
907                 // select first...
908                 _this.view.el.set_cursor( 
909                     new  Gtk.TreePath.from_string("0"), null, false);
910                 
911                 
912             } else {
913                   //this.get('/Window.leftvpaned').el.set_position(200);
914             }
915             
916             return;
917             /*    
918             
919             //print("hide right editior");
920             //this.get('/RightEditor').el.hide();
921             //this.get('/Editor').el.hide();
922             //print("set current tree");
923             //this.currentTree = this.toJS(false, false)[0];
924             //console.dump(this.currentTree);
925             //this.currentTree = this.currentTree || { items: [] };
926             //_this.renderView();
927             //console.dump(this.map);
928             //var RightPalete     = imports.Builder.RightPalete.RightPalete;
929             
930             
931             var pm = this.get('/RightPalete.model');
932             // set up provider..
933             
934             this.get('/RightPalete').provider = this.get('/LeftTree').getPaleteProvider();
935             
936             if (!this.get('/RightPalete').provider) {
937                 print ("********* PALETE PROVIDER MISSING?!!");
938             }
939             this.get('/LeftTree').renderView();
940             
941             pm.load( this.get('/LeftTree').getPaleteProvider().gatherList(this.listAllTypes()));
942             
943             
944                     
945             this.get('/Window.view-notebook').el.set_current_page(
946                 this.get('/LeftTree.model').file.getType()== 'Roo' ? 0 : -1);
947                 */
948                     
949         }
950         public    void updateSelected () {
951           
952            
953             var s = _this.view.el.get_selection();
954             
955              Gtk.TreeIter iter;
956             Gtk.TreeModel mod;
957             
958             
959             
960             if (!s.get_selected(out mod, out iter)) {
961                 return; // nothing seleted..
962             }
963           
964           GLib.Value value;
965             this.el.get_value(iter, 2, out value);
966             var node = (JsRender.Node)(value.get_object());
967             
968               this.el.set(iter, 0, node.nodeTitle(),
969                         1, node.nodeTip(), -1
970                 );
971         }
972         public           string findDropNodeByPath (string treepath_str, string[] targets, int in_pref = -1) {
973         
974             var path = treepath_str; // dupe it..
975             
976             int pref = in_pref < 0  ?  Gtk.TreeViewDropPosition.INTO_OR_AFTER : in_pref;
977             
978             var last = "";
979             
980             //console.dump(this.treemap);
981             
982             print("findDropNodeByPath : got path length %d / %s\n", path.length, path);
983             
984             if (path.length == 0) {
985                 // top drop. // just return empty..
986                 return "|%d".printf((int)pref) ;
987                 
988             }
989             
990             
991             while (path.length > 0) {
992                 //print("LOOKING FOR PATH: " + path);
993                 var node_data = this.pathToNode(path);
994                 
995                 if (node_data == null) {
996                     print("node not found");
997                     return null;
998                 }
999                 
1000                 var xname = node_data.fqn();
1001                 var match = "";
1002                 var prop = "";
1003                 
1004                 for (var i =0; i < targets.length; i++)  {
1005                     var tg = targets[i];
1006                     if ((tg == xname)  ) {
1007                         match = tg;
1008                         break;
1009                     }
1010                     // if target is "xxxx:name"
1011                     if (tg.contains(xname +":")) {
1012                         match = tg;
1013                         var ar = tg.split(":");
1014                         prop = ar[1];
1015                         break;
1016                     }
1017                 }
1018                 
1019                 if (match.length > 0) {
1020                     if (last.length > 0) { // pref is after/before..
1021                         // then it's after last
1022                         if (pref > 1) {
1023                             return "";
1024                         }
1025                         return last + "|%d".printf((int)pref) + "|" + prop;
1026         
1027                         
1028                     }
1029                     return path + "|%d".printf( (int) Gtk.TreeViewDropPosition.INTO_OR_AFTER) + "|" + prop;
1030                 }
1031                 last = "" + path;
1032                 var par = path.split(":");
1033                 string [] ppar = {};
1034                 for (var i = 0; i < par.length-1; i++) {
1035                     ppar += par[i];
1036                 }
1037                 
1038                 path = string.joinv(":", ppar);
1039         
1040         
1041             }
1042             
1043             return "";
1044                     
1045         }
1046         public           void moveNode (string target_data, Gdk.DragAction action) 
1047         {
1048            
1049            /// target_data = "path|pos");
1050            
1051            
1052             //print("MOVE NODE");
1053             // console.dump(target_data);
1054             Gtk.TreeIter old_iter;
1055             Gtk.TreeModel mod;
1056             
1057             var s = _this.view.el.get_selection();
1058             s.get_selected(out mod , out old_iter);
1059             mod.get_path(old_iter);
1060             
1061             var node = this.pathToNode(mod.get_path(old_iter).to_string());
1062             //console.dump(node);
1063             if (node == null) {
1064                 print("moveNode: ERROR - node is null?");
1065             }
1066             
1067             
1068         
1069             // needs to drop first, otherwise the target_data 
1070             // treepath will be invalid.
1071         
1072             
1073             if ((action & Gdk.DragAction.MOVE) > 0) {
1074                     print("REMOVING OLD NODE : " + target_data + "\n");
1075                     node.remove();
1076                     this.dropNode(target_data, node, false);
1077                     this.el.remove(ref old_iter);
1078                     
1079                     
1080                                  
1081             } else {
1082                 print("DROPPING NODE // copy: " + target_data + "\n");
1083                 node = node.deepClone();
1084                 this.dropNode(target_data, node, false);
1085             }
1086             _this.changed();
1087             this.activePath= "";
1088             //this.updateNode(false,true);
1089         }
1090         public           void load (Gee.ArrayList<JsRender.Node> tr, Gtk.TreeIter? iter) 
1091         {
1092             Gtk.TreeIter citer;
1093             //this.insert(citer,iter,0);
1094             for(var i =0 ; i < tr.size; i++) {
1095                 if (iter != null) {
1096                     this.el.insert(out citer,iter,-1); // why not append?
1097                 } else {
1098                     this.el.append(out citer,null);
1099                 }
1100                 
1101                 this.el.set(citer, 0, tr.get(i).nodeTitle(),
1102                         1, tr.get(i).nodeTip(), -1
1103                 );
1104                 var o = new GLib.Value(typeof(Object));
1105                 o.set_object((Object)tr.get(i));
1106                 
1107                 this.el.set_value(citer, 2, o);
1108                 
1109                 if (tr.get(i).items.size > 0) {
1110                     this.load(tr.get(i).items, citer);
1111                 }
1112              
1113             }
1114         
1115             
1116         }
1117         public           void deleteSelected () {
1118             
1119             print("DELETE SELECTED?");
1120             //_this.view.blockChanges = true;
1121             print("GET SELECTION?");
1122         
1123             var s = _this.view.el.get_selection();
1124             
1125             print("GET  SELECTED?");
1126            Gtk.TreeIter iter;
1127             Gtk.TreeModel mod;
1128         
1129             
1130             if (!s.get_selected(out mod, out iter)) {
1131                 return; // nothing seleted..
1132             }
1133               
1134         
1135         
1136             this.activePath= "";      
1137             print("GET  vnode value?");
1138         
1139             GLib.Value value;
1140             this.el.get_value(iter, 2, out value);
1141             var data = (JsRender.Node)(value.get_object());
1142             print("removing node from Render\n");
1143             if (data.parent == null) {
1144                 this.file.tree = null;
1145             } else {
1146                 data.remove();
1147             }
1148             print("removing node from Tree\n");    
1149             s.unselect_all();
1150             this.el.remove(ref iter);
1151         
1152             
1153             
1154             
1155             // 
1156             
1157             
1158         
1159         
1160             this.activePath= ""; // again!?!?      
1161             //this.changed(null,true);
1162             
1163             _this.changed();
1164             
1165             _this.view.blockChanges = false;
1166         }
1167         public           JsRender.Node pathToNode (string path) {
1168          
1169              
1170              Gtk.TreeIter   iter;
1171              _this.model.el.get_iter_from_string(out iter, path);
1172              
1173              GLib.Value value;
1174              _this.model.el.get_value(iter, 2, out value);
1175              
1176              return (JsRender.Node)value.dup_object();
1177         
1178         }
1179         public           void dropNode (string target_data_str, JsRender.Node node, bool show_templates) {
1180         //         print("drop Node");
1181              // console.dump(node);
1182           //    console.dump(target_data);
1183           
1184           
1185                 // 0 = before , 1=after 2/3 onto
1186           
1187           
1188                 var target_data= target_data_str.split("|");
1189           
1190                 var parent_str = target_data[0].length > 0 ? target_data[0] : "";
1191                 var pos = target_data.length > 1 ? int.parse(target_data[1]) : 2; // ontop..
1192           
1193           
1194                 Gtk.TreePath tree_path  =   parent_str.length > 0 ? new  Gtk.TreePath.from_string( parent_str ) : null;
1195                 
1196                 
1197                 
1198                 //print("add " + tp + "@" + target_data[1]  );
1199                 
1200                 JsRender.Node parentNode = null;
1201                 
1202                 Gtk.TreeIter iter_after;
1203                 Gtk.TreeIter iter_par ;
1204                 
1205                
1206                  if (target_data.length == 3 && target_data[2].length > 0) {
1207                     node.props.set("* prop", target_data[2]);
1208                 }
1209         
1210                 Gtk.TreePath expand_parent = null;
1211                 
1212                 // we only need to show the template if it's come from else where?
1213                  if (show_templates) {
1214                  
1215                     if (this.template_select == null) {
1216                         this.template_select = new DialogTemplateSelect();
1217                      }
1218                  
1219                      var new_node = this.template_select.show(
1220                           (Gtk.Window) _this.el.get_toplevel (),
1221                               this.file.palete(),
1222                            node);
1223                            
1224                      if (new_node != null) {
1225                          node = new_node;
1226                      }
1227                 }        
1228                 
1229                  //print("pos is %d  \n".printf(pos));
1230                 
1231                  Gtk.TreeIter n_iter; 
1232                  
1233                  if ( parent_str.length < 1) {
1234                       this.el.append(out n_iter, null); // drop at top level..
1235                       node.parent = null;
1236                       this.file.tree = node;
1237                       
1238                       
1239                 } else   if (pos  < 2) {
1240                     //print(target_data[1]  > 0 ? 'insert_after' : 'insert_before');
1241                     
1242                     this.el.get_iter(out iter_after, tree_path );            
1243                     this.el.iter_parent(out iter_par, iter_after);
1244                     expand_parent = this.el.get_path(iter_par);
1245                     
1246                     GLib.Value value;
1247                     this.el.get_value( iter_par, 2, out value);
1248                     parentNode =  (JsRender.Node)value.dup_object();
1249                     
1250                     
1251                     this.el.get_value( iter_after, 2, out value);
1252                     var relNode =  (JsRender.Node)value.dup_object();
1253                     
1254                     if ( pos  > 0 ) {
1255                      
1256                         this.el.insert_after(out n_iter,    iter_par  , iter_after);
1257                         var ix = parentNode.items.index_of(relNode);
1258                         parentNode.items.insert(ix+1, node);
1259                         
1260                     } else {
1261                         this.el.insert_before(out n_iter,  iter_par  , iter_after);
1262                         var ix = parentNode.items.index_of(relNode);
1263                         parentNode.items.insert(ix, node);
1264          
1265                     }
1266                     node.parent = parentNode;
1267                     
1268                     
1269                     
1270                 } else {
1271                    //  print("appending to  " + parent_str);
1272                     this.el.get_iter(out iter_par, tree_path);
1273                     this.el.append(out n_iter,   iter_par );
1274                     expand_parent = this.el.get_path(iter_par);
1275                     
1276                     GLib.Value value;
1277                     this.el.get_value( iter_par, 2, out value);
1278                     parentNode =  (JsRender.Node)value.dup_object();
1279                     node.parent = parentNode;
1280                     parentNode.items.add(node);
1281                 }
1282                 
1283                 // reparent node in tree...
1284                
1285                 
1286                 // why only on no parent???
1287                 
1288                 //if (node.parent = null) {
1289                      
1290                    
1291                     
1292                 //}
1293                 
1294                 
1295                 // work out what kind of packing to use.. -- should be in 
1296                 if (!node.has("pack")   && parent_str.length > 1) {
1297                     
1298                     this.file.palete().fillPack(node,parentNode);
1299                     
1300                     
1301                 }
1302                 
1303                 // add the node...
1304                 
1305                 this.el.set(n_iter, 0, node.nodeTitle(), 1, node.nodeTip(), -1  );
1306                 var o = new GLib.Value(typeof(Object));
1307                 o.set_object((Object)node);
1308                 
1309                 this.el.set_value(n_iter, 2, o);
1310                 
1311                 
1312                 
1313                 
1314         // load children - if it has any..
1315               
1316                 if (node.items.size > 0) {
1317                     this.load(node.items, n_iter);
1318                     _this.view.el.expand_row(this.el.get_path(n_iter), true);
1319                 } else if (expand_parent != null && !_this.view.el.is_row_expanded(expand_parent)) {
1320                    _this.view.el.expand_row(expand_parent,true);
1321                 }
1322         
1323                 //if (tp != null && (node.items.length() > 0 || pos > 1)) {
1324                 //    _this.view.el.expand_row(this.el.get_path(iter_par), true);
1325                // }
1326                 // wee need to get the empty proptypes from somewhere..
1327                 
1328                 //var olditer = this.activeIter;
1329                 this.activePath = this.el.get_path(n_iter).to_string();
1330         
1331         
1332                 
1333                 
1334                 _this.view.el.set_cursor(this.el.get_path(n_iter), null, false);
1335                 _this.changed();
1336              
1337                 
1338                     
1339         }
1340     }
1341     public class Xcls_TreeViewColumn4 : Object 
1342     {
1343         public Gtk.TreeViewColumn el;
1344         private Xcls_WindowLeftTree  _this;
1345
1346
1347             // my vars (def)
1348
1349         // ctor 
1350         public Xcls_TreeViewColumn4(Xcls_WindowLeftTree _owner )
1351         {
1352             _this = _owner;
1353             this.el = new Gtk.TreeViewColumn();
1354
1355             // my vars (dec)
1356
1357             // set gobject values
1358             this.el.title = "test";
1359             var child_0 = new Xcls_renderer( _this );
1360             child_0.ref();
1361             this.el.pack_start (  child_0.el , true );
1362
1363             // init method 
1364
1365             this.el.add_attribute(_this.renderer.el , "markup", 0 );        }
1366
1367         // user defined functions 
1368     }
1369     public class Xcls_renderer : Object 
1370     {
1371         public Gtk.CellRendererText el;
1372         private Xcls_WindowLeftTree  _this;
1373
1374
1375             // my vars (def)
1376
1377         // ctor 
1378         public Xcls_renderer(Xcls_WindowLeftTree _owner )
1379         {
1380             _this = _owner;
1381             _this.renderer = this;
1382             this.el = new Gtk.CellRendererText();
1383
1384             // my vars (dec)
1385
1386             // set gobject values
1387         }
1388
1389         // user defined functions 
1390     }
1391     public class Xcls_LeftTreeMenu : Object 
1392     {
1393         public Gtk.Menu el;
1394         private Xcls_WindowLeftTree  _this;
1395
1396
1397             // my vars (def)
1398
1399         // ctor 
1400         public Xcls_LeftTreeMenu(Xcls_WindowLeftTree _owner )
1401         {
1402             _this = _owner;
1403             _this.LeftTreeMenu = this;
1404             this.el = new Gtk.Menu();
1405
1406             // my vars (dec)
1407
1408             // set gobject values
1409             var child_0 = new Xcls_MenuItem7( _this );
1410             child_0.ref();
1411             this.el.add (  child_0.el  );
1412             var child_1 = new Xcls_MenuItem8( _this );
1413             child_1.ref();
1414             this.el.add (  child_1.el  );
1415             var child_2 = new Xcls_MenuItem9( _this );
1416             child_2.ref();
1417             this.el.add (  child_2.el  );
1418         }
1419
1420         // user defined functions 
1421     }
1422     public class Xcls_MenuItem7 : Object 
1423     {
1424         public Gtk.MenuItem el;
1425         private Xcls_WindowLeftTree  _this;
1426
1427
1428             // my vars (def)
1429
1430         // ctor 
1431         public Xcls_MenuItem7(Xcls_WindowLeftTree _owner )
1432         {
1433             _this = _owner;
1434             this.el = new Gtk.MenuItem();
1435
1436             // my vars (dec)
1437
1438             // set gobject values
1439             this.el.label = "Delete Element";
1440
1441             // listeners 
1442             this.el.activate.connect( ( ) => {
1443                 
1444                 print("ACTIVATE?");
1445                 
1446               
1447                  _this.model.deleteSelected();
1448             });
1449         }
1450
1451         // user defined functions 
1452     }
1453     public class Xcls_MenuItem8 : Object 
1454     {
1455         public Gtk.MenuItem el;
1456         private Xcls_WindowLeftTree  _this;
1457
1458
1459             // my vars (def)
1460
1461         // ctor 
1462         public Xcls_MenuItem8(Xcls_WindowLeftTree _owner )
1463         {
1464             _this = _owner;
1465             this.el = new Gtk.MenuItem();
1466
1467             // my vars (dec)
1468
1469             // set gobject values
1470             this.el.label = "Save as Template";
1471
1472             // listeners 
1473             this.el.activate.connect( () => {
1474             
1475                  DialogSaveTemplate.singleton().show(
1476                         (Gtk.Window) _this.el.get_toplevel (), 
1477                         _this.model.file.palete(), 
1478                         _this.getActiveElement()
1479                 );
1480                  
1481                 
1482             });
1483         }
1484
1485         // user defined functions 
1486     }
1487     public class Xcls_MenuItem9 : Object 
1488     {
1489         public Gtk.MenuItem el;
1490         private Xcls_WindowLeftTree  _this;
1491
1492
1493             // my vars (def)
1494
1495         // ctor 
1496         public Xcls_MenuItem9(Xcls_WindowLeftTree _owner )
1497         {
1498             _this = _owner;
1499             this.el = new Gtk.MenuItem();
1500
1501             // my vars (dec)
1502
1503             // set gobject values
1504             this.el.label = "Save as Module";
1505
1506             // listeners 
1507             this.el.activate.connect( () => {
1508                 var node = _this.getActiveElement();
1509                  var name = DialogSaveModule.singleton().show(
1510                         (Gtk.Window) _this.el.get_toplevel (), 
1511                         _this.model.file.project, 
1512                         node
1513                  );
1514                  if (name.length < 1) {
1515                         return;
1516               
1517                  }
1518                  node.props.set("* xinclude", name);
1519                  node.items.clear();
1520             
1521             
1522                 var s = _this.view.el.get_selection();
1523                 
1524                 print("GET  SELECTED?");
1525                 Gtk.TreeIter iter;
1526                 Gtk.TreeModel mod;
1527             
1528                 
1529                 if (!s.get_selected(out mod, out iter)) {
1530                     return; // nothing seleted..
1531                 }
1532                 Gtk.TreeIter citer;
1533                 var n_cn = mod.iter_n_children(iter) -1;
1534                 for (var i = n_cn; i > -1; i--) {
1535                     mod.iter_nth_child(out citer, iter, i);
1536                     
1537             
1538                     print("removing node from Tree\n");    
1539                 
1540                     _this.model.el.remove(ref citer);
1541                 }
1542                 _this.changed();
1543                 _this.node_selected(node);
1544                  
1545                 
1546             });
1547         }
1548
1549         // user defined functions 
1550     }
1551 }