<?php
 
//glade block
 
    include "mygrid6.inc";
 
 
    $glade= new GladeXML('treeview.glade');
 
    $treevLista = $glade->get_widget('treevLista');//el widget treeview
 
    $window = $glade->get_widget('windowtreev');
 
    $window->connect_simple('destroy', array('Gtk','main_quit'));
 
    
 
//connection **********************************************************
 
    $conexion = mysql_connect("localhost","gestion","");
 
    mysql_select_db("gestion", $conexion);
 
//data link and widget with an instance of class*****    
 
    $lista = new mylista(GObject::TYPE_STRING, GObject::TYPE_STRING);
 
    $lista->enlaza($treevLista);
 
    $lista->columnas(array('Mes', 'Subtotal'));
 
    $lista->carga($conexion,"select mes, subtotal from gastos_meses");
 
//******************************************************************************
 
    $window->show_all();
 
    Gtk::main();
 
?>
 
 |