]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - viewer/new_tree_dialog.h
Bugfix del test.sh para que no 'oculte' errores por SIGSEGV.
[z.facultad/75.52/treemulator.git] / viewer / new_tree_dialog.h
index bb4eb6ecb436b573237502b86709dfba9bc8330b..1edb27c2240c0f22721b4cd51917d6c2d142c08b 100644 (file)
@@ -3,16 +3,26 @@
 #define _NUEVO_ARBOL_DLG_
 
 #include <gtkmm.h>
+#include "btree.h"
 
 class NewTreeDialog : public Gtk::Dialog {
        public:
                NewTreeDialog ();
 
-               uint getAmount ();
+               uint getAdds ();
+               uint getDels ();
+               uint getBlockSize ();
+               int getKeyType ();
        private:
-               Gtk::HBox hbox;
-               Gtk::Label label;
-               Gtk::Entry entry;
+               Gtk::Table table;
+               Gtk::Label label_count;
+               Gtk::Label label_block;
+               Gtk::Label label_dels;
+               Gtk::Entry entry_count;
+               Gtk::Entry entry_dels;
+               Gtk::Entry entry_block;
+               Gtk::RadioButton fixed_key;
+               Gtk::RadioButton variable_key;
 };
 
 #endif