header = $header; // Init header $this->gtk = new GtkBox( GtkOrientation::HORIZONTAL ); $this->gtk->set_margin_start( $this::MARGIN ); $this->gtk->set_margin_end( $this::MARGIN ); $this->gtk->set_spacing( $this::SPACING ); // Init navigation $this->navigation = new Tray\Navigation( $this ); $this->gtk->add( $this->navigation->gtk ); // Init new tab button $this->tab = new Tray\Tab( $this ); $this->gtk->add( $this->tab->gtk ); // Render $this->gtk->show(); } }