]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blob - viewer/new_tree_dialog.cpp
Mejoro inicialización de BTree*Data.
[z.facultad/75.52/treemulator.git] / viewer / new_tree_dialog.cpp
1
2 #include "new_tree_dialog.h"
3
4
5 NewTreeDialog::NewTreeDialog(): Gtk::Dialog ("Nuevo Arbol", true, true)
6 {
7         label.set_label ("Cantidad a insertar : ");
8
9         hbox.pack_start (label, false, true, 8);
10         hbox.pack_start (entry, true, true, 8);
11         get_vbox ()->add (hbox);
12         add_button (Gtk::StockID ("Cancelar"), Gtk::RESPONSE_CANCEL);
13         add_button (Gtk::StockID ("Crear"), Gtk::RESPONSE_OK);
14
15         show_all ();
16 }
17
18 uint NewTreeDialog::getAmount ()
19 {
20         return atoi (entry.get_text ().c_str());
21 }
22