コード例 #1
0
ファイル: treemodel.php プロジェクト: 0xd34df00d/Qross
 public function __construct(QString $data, QObject $parent = NULL)
 {
     parent::__construct($parent);
     $rootData = array();
     array_push($rootData, "Title");
     array_push($rootData, "Summary");
     $this->rootItem = new TreeItem($rootData);
     $this->setupModelData(explode("\n", $data), $this->rootItem);
 }
コード例 #2
0
ファイル: testHelper.php プロジェクト: 0xd34df00d/Qross
 function __construct()
 {
     parent::__construct();
 }