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

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