source:
glemon/save_details_dialog.cc
Last change on this file was 1:67188bd752db, checked in by , 16 years ago | |
---|---|
File size: 367 bytes |
Line | |
---|---|
1 | #include "save_details_dialog.h" |
2 | #include <gtkmm/stock.h> |
3 | |
4 | SaveDetailsDialog::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.