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
Raw Normal View History

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