46 lines
879 B
PHP
46 lines
879 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 {
|
|
|
|
/**
|
|
* Create the object
|
|
*
|
|
* @param object $model
|
|
*/
|
|
public function __construct($parent = NULL)
|
|
{
|
|
if ( ! is_null($parent))
|
|
{
|
|
parent::__construct($parent, wxID_ANY);
|
|
$this->CreateGrid(0,0);
|
|
$this->HideColLabels();
|
|
$this->HideRowLabels();
|
|
}
|
|
else
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|
|
}
|
|
// End of data_grid.php
|