browser = $browser; // Init window $this->gtk = new GtkWindow( GtkWindowType::TOPLEVEL // GtkWindowType::POPUP ); $this->gtk->set_size_request( $this::WIDTH, $this::HEIGHT ); if ($this::MAXIMIZE) { $this->gtk->maximize(); } // Init header $this->header = new History\Header( $this ); $this->gtk->set_titlebar( $this->header->gtk ); // Init container $this->container = new History\Container( $this ); $this->gtk->add( $this->container->gtk ); // Render $this->gtk->show(); } }