PHPでGtkTreeViewから行データを取得するにはどうすればよいですか?
私の試み:
// $this->guidata = new GtkListStore();
// $this->view = new GtkTreeView($this->guidata);
$dutarray = array();
$selection = $this->view->get_selection();
$selection->select_all();
$dutArray = $selection->get_selected_rows();
助けてくれてありがとう!
レオン22に挨拶
PS:2列とn行のテーブルがあります( $this->guidata->append($row) で行を追加しました)