set_title("Table Data"); $this->set_position(Gtk::WIN_POS_CENTER_ALWAYS); $this->set_destroy_with_parent(TRUE); // Add the scrolled window $this->win = new GTKScrolledWindow(); $this->win->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); $this->add($this->win); // Resize to a sane size $this->set_size_request(640, 480); // Layout the widgets $view = new Data_Grid(); $view->render_data($data); // Add the grid to the window $this->win->add_with_viewport($view); // Show everything $this->show_all(); } }