]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blob - viewer/new_tree_dialog.h
Seteo arbol.
[z.facultad/75.52/treemulator.git] / viewer / new_tree_dialog.h
1
2 #ifndef _NUEVO_ARBOL_DLG_
3 #define _NUEVO_ARBOL_DLG_
4
5 #include <gtkmm.h>
6
7 class NewTreeDialog : public Gtk::Dialog {
8         public:
9                 NewTreeDialog ();
10
11                 uint getAmount ();
12                 uint getBlockSize ();
13                 
14         private:
15                 Gtk::Table table;
16                 Gtk::Label label_count;
17                 Gtk::Label label_block;
18                 Gtk::Entry entry_count;
19                 Gtk::Entry entry_block;
20 };
21
22 #endif
23