COIN-OR::LEMON - Graph Library

source: glemon/save_details_dialog.cc @ 1:67188bd752db

Last change on this file since 1:67188bd752db was 1:67188bd752db, checked in by Peter Hegyi <hegyi@…>, 16 years ago

SVN revision 3500 made compilable with Lemon 1.0.

File size: 367 bytes
Line 
1#include "save_details_dialog.h"
2#include <gtkmm/stock.h>
3
4SaveDetailsDialog::SaveDetailsDialog(MapStorage *ms) :
5  Gtk::Dialog("Save Details", true),
6  SaveDetails(ms)
7{
8  set_size_request(400, -1);
9
10  Gtk::VBox* pVBox = get_vbox();
11  pVBox->pack_start(SaveDetails, Gtk::PACK_SHRINK);
12
13  add_button(Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE);
14
15  show_all_children();
16}
Note: See TracBrowser for help on using the repository browser.