<?php
$tb 
= new GtkToolbar();
$tb->set_show_arrowfalse );
$tb->set_property'toolbar-style'Gtk::TOOLBAR_BOTH );
$tb->set_property'icon-size');
$this->updatebutton GtkToolButton::new_from_stockGtk::STOCK_REFRESH );
$lbl = new GtkLabel();
$lbl->set_markup'<span underline="single">U</span>pdate' );
$this->updatebutton->set_label_widget$lbl );
$this->updatebutton->connect_simple'clicked', array( $this'update' ) );
$this->updatebutton->add_accelerator'clicked'$accelsGdk::KEY_UGdk::MOD1_MASK);
$this->updatebutton->set_use_underlinetrue );
$tb->insert$this->updatebutton, -);