Files
php-gtk-src/ext
Andrei Zmievski cc14efc9bb - Register some fundamental GTypes as constants.
- Implement GtkListStore::append(), GtkListStore::set(), and
  GtkTreeModel::get_value().

All this allows things like:

class mine {
    var $a = 5;
    var $b;

    function __construct($b) {
        $this->b = $b;
    }
}

$store = new GtkListStore(Gtk::TYPE_PHP_VALUE);
$iter = $store->append();
$o = new Mine(99);
$store->set($iter, 0, $o);
var_dump($store->get_value($iter, 0));
2005-04-07 21:10:50 +00:00
..
2003-05-29 14:36:44 +00:00
2002-04-30 04:42:55 +00:00