Remove toolbar, fix minor formatting issue
This commit is contained in:
parent
028e53f406
commit
bc017737fd
@ -43,7 +43,7 @@ class Main extends GtkWindow {
|
||||
$dlg->set_transient_for($this);
|
||||
|
||||
$dlg->set_program_name($this->get_title());
|
||||
$dlg->set_version('0.0.1pre');
|
||||
$dlg->set_version('0.1.0pre');
|
||||
|
||||
$dlg->set_copyright("Copyright (c) ".date('Y')." Timothy J. Warren");
|
||||
|
||||
@ -87,9 +87,6 @@ class Main extends GtkWindow {
|
||||
// Add the menubar
|
||||
$main_vbox->pack_start($this->_create_menu(), FALSE, FALSE);
|
||||
|
||||
// Add the toolbar
|
||||
//$main_vbox->pack_start($this->_create_toolbar(), FALSE, FALSE);
|
||||
|
||||
// Add the info box
|
||||
$main_vbox->pack_start($this->_create_infobox(), FALSE, FALSE);
|
||||
|
||||
@ -103,25 +100,6 @@ class Main extends GtkWindow {
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create the main toolbar
|
||||
*
|
||||
* @return GtkToolBar
|
||||
*/
|
||||
private function _create_toolbar()
|
||||
{
|
||||
$tbar = new GtkToolBar();
|
||||
|
||||
$open = new GtkToolButton();
|
||||
$open->set_stock_id(Gtk::STOCK_OPEN);
|
||||
|
||||
$tbar->insert($open);
|
||||
|
||||
return $tbar;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create the menu for the program
|
||||
*
|
||||
|
Reference in New Issue
Block a user