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