COIN-OR::LEMON - Graph Library

source: glemon-0.x/save_details_dialog.cc @ 201:879e47e5b731

Last change on this file since 201:879e47e5b731 was 201:879e47e5b731, checked in by Akos Ladanyi, 16 years ago

Merge branches/akos to trunk.

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.