Added start of db view/manipulation interface

This commit is contained in:
Timothy Warren 2012-02-07 10:31:54 -05:00
parent 87b5c2aede
commit 4542d9f210
3 changed files with 47 additions and 5 deletions

37
src/common/datagrid.php Normal file
View File

@ -0,0 +1,37 @@
<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Class for controlling database views
*/
class DataGrid extends GtkTreeView{
protected $model, $view;
function __construct()
{
$this->model = new GtkTreeStore(GObject::TYPE_PHP_VALUE, GObject::TYPE_STRING);
parent::__construct($this->model);
}
function __get($key)
{
}
function __set($key, $val)
{
}
}

View File

@ -161,6 +161,9 @@ class firebird {
}
/**
* Database manipulation class
*/
class firebird_manip extends firebird {
function __construct($db, $user="sysdba", $pass="masterkey")

View File

@ -48,7 +48,7 @@ class Main extends GtkWindow {
$dlg = new GtkAboutDialog();
$dlg->set_transient_for($this);
$dlg->set_name($this->get_title());
$dlg->set_program_name($this->get_title());
$dlg->set_version('0.1.0pre');
$dlg->set_copyright("Copyright (c) ".date('Y')." Timothy J. Warren");
@ -60,12 +60,12 @@ class Main extends GtkWindow {
$dlg->set_authors(array(
'Timothy J. Warren',
'Nathan Dupuie',
//'Nathan Dupuie',
));
$dlg->set_artists(array(
/*$dlg->set_artists(array(
'Nathan Dupuie',
));
));*/
$dlg->run();
@ -108,9 +108,11 @@ class Main extends GtkWindow {
// Add the main interface area hbox
$main_vbox->pack_start($hpane);
// Add the left column to the hpane
$hpane->pack1($this->_connection_sidebar(), FALSE);
$hpane->pack2(new GtkVBox());
$hpane->pack2(new DataGrid());
// Add the Vbox, and show the window
$this->add($main_vbox);