XObjectBase/GtkTreeModelFilter.js
authorAlan Knowles <alan@akbkhome.com>
Thu, 2 Dec 2010 12:19:25 +0000 (20:19 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 2 Dec 2010 12:19:25 +0000 (20:19 +0800)
XObjectBase/GtkTreeModelFilter.js

index 2b55c9b..4484a6f 100644 (file)
@@ -32,15 +32,33 @@ GtkTreeModelFilter = XObject.define(
         append : function( values ) {
             this.list.append(values);
         },
-        getValue  : function ( path, col)
+          getValue  : function ( path, col)
         {
+            // not very type safe...
+            var tpath = path;
+            if (typeof(path) == 'string' ) {
+                tpath = new Gtk.TreePath.from_string(path);
+                 
+            }
             
-            return this.list.getValue(path, col);
+            var iter = new Gtk.TreeIter();
             
+            this.el.get_iter (iter, tpath) ;
+             
+            var gval = new GObject.Value(  [this.el.get_column_type(col), null ]);
+            this.list.el.get_value( iter, col, gval);
+            print("GET VALUE RETURNED: " + gval.value);
+            return gval.value;
         },
         setValue  : function ( path, col, val)
         {
-            this.list.setValue(path,col,val);
+            var tpath = path;
+            if (typeof(path) == 'string' ) {
+                tpath = new Gtk.TreePath.from_string(path);
+            }
+            var iter = new Gtk.TreeIter();
+            this.el.get_iter (iter, tpath) ;
+            this.list.el.set_value(iter,col,val);
         }