Removed info box for more compatibility
This commit is contained in:
parent
d0c1810818
commit
2c75a4f133
@ -102,9 +102,6 @@ class Main extends GtkWindow {
|
|||||||
// Add the menubar
|
// Add the menubar
|
||||||
$main_vbox->pack_start($this->_create_menu(), FALSE, FALSE);
|
$main_vbox->pack_start($this->_create_menu(), FALSE, FALSE);
|
||||||
|
|
||||||
// Add the info box
|
|
||||||
$main_vbox->pack_start($this->_create_infobox(), FALSE, FALSE);
|
|
||||||
|
|
||||||
// Add the main interface area hbox
|
// Add the main interface area hbox
|
||||||
$main_vbox->pack_start($main_hbox);
|
$main_vbox->pack_start($main_hbox);
|
||||||
|
|
||||||
@ -178,23 +175,6 @@ class Main extends GtkWindow {
|
|||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
|
||||||
* Display Info box for errors/message
|
|
||||||
*/
|
|
||||||
private function _create_infobox()
|
|
||||||
{
|
|
||||||
$infobar = new GtkInfoBar();
|
|
||||||
$messagelabel = new GtkLabel('Welcome to OpenSQLManager!');
|
|
||||||
$contentarea = $infobar->get_content_area();
|
|
||||||
$contentarea->add($messagelabel);
|
|
||||||
$infobar->add_button(GTK::STOCK_OK, GTK::RESPONSE_OK);
|
|
||||||
$infobar->connect_simple('response', array($infobar, 'hide'));
|
|
||||||
|
|
||||||
return ($infobar);
|
|
||||||
}
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lays out the left sidebar in the main window
|
* Lays out the left sidebar in the main window
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user