Last change
on this file since 6:3a44a2bb6da8 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
|
Rev | Line | |
---|
[1] | 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.