This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
OpenSQLManager/sys/widgets/data_grid.php

51 lines
901 B
PHP

<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @package OpenSQLManager
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
namespace OpenSQLManager;
/**
* Class to simplify dealing with GtkTreeView
*
* @package OpenSQLManager
* @subpackage Widgets
*/
class Data_Grid extends \wxGrid {
/**
* GtkTreeStore object
*
* @var wxGridTableBase
*/
protected $model;
/**
* Create the object
*
* @param object $model
*/
public function __construct($model = null)
{
if ( ! is_null($model))
{
$this->model = $model;
parent::__construct($this->model);
}
else
{
parent::__construct();
}
}
}
// End of data_grid.php