X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/d76cfcfa2ef1363786c12ede4780e99d1bf02803..aa158a0284c1bc32a979d50275aa1b24438d46ef:/viewer/new_tree_dialog.cpp diff --git a/viewer/new_tree_dialog.cpp b/viewer/new_tree_dialog.cpp index 7899cc9..d3dbf5c 100644 --- a/viewer/new_tree_dialog.cpp +++ b/viewer/new_tree_dialog.cpp @@ -2,31 +2,72 @@ #include "new_tree_dialog.h" -NewTreeDialog::NewTreeDialog(): Gtk::Dialog ("Nuevo Arbol", true, true) +NewTreeDialog::NewTreeDialog(): Gtk::Dialog ("Nuevo Arbol", true, true), + fixed_key ("Clave Fija"), variable_key ("Clave Variable"), + tree_ident ("Árbol de Indentificación"), tree_class ("Árbol de Clasificación") { + table.attach (tree_ident, 0, 1, 0, 1); + table.attach (tree_class, 1, 2, 0, 1); + + table.attach (fixed_key, 0, 1, 1, 2); + table.attach (variable_key, 1, 2, 1, 2); + label_block.set_label ("Tamaño de Bloque : "); - table.attach (label_block, 0, 1, 0, 1, Gtk::FILL|Gtk::SHRINK, Gtk::SHRINK, 8, 8); - table.attach (entry_block, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 8, 8); + table.attach (label_block, 0, 1, 2, 3, Gtk::FILL|Gtk::SHRINK, Gtk::SHRINK, 8, 8); + table.attach (entry_block, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 8, 8); label_count.set_label ("Cantidad a insertar : "); - table.attach (label_count, 0, 1, 1, 2, Gtk::FILL|Gtk::SHRINK, Gtk::SHRINK, 8, 8); - table.attach (entry_count, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 8, 8); + table.attach (label_count, 0, 1, 3, 4, Gtk::FILL|Gtk::SHRINK, Gtk::SHRINK, 8, 8); + table.attach (entry_count, 1, 2, 3, 4, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 8, 8); + + label_dels.set_label ("Cantidad a eliminar : "); + table.attach (label_dels, 0, 1, 4, 5, Gtk::FILL|Gtk::SHRINK, Gtk::SHRINK, 8, 8); + table.attach (entry_dels, 1, 2, 4, 5, Gtk::FILL|Gtk::EXPAND, Gtk::SHRINK, 8, 8); get_vbox ()->add (table); add_button (Gtk::StockID ("Cancelar"), Gtk::RESPONSE_CANCEL); add_button (Gtk::StockID ("Crear"), Gtk::RESPONSE_OK); + Gtk::RadioButton::Group group = fixed_key.get_group(); + fixed_key.set_group (group); + variable_key.set_group (group); + + Gtk::RadioButton::Group group1 = tree_ident.get_group(); + tree_ident.set_group (group1); + tree_class.set_group (group1); show_all (); } -uint NewTreeDialog::getAmount () +uint NewTreeDialog::getAdds () { return atoi (entry_count.get_text ().c_str()); } +uint NewTreeDialog::getDels () +{ + std::cout << entry_dels.get_text () << std::endl; + return atoi (entry_dels.get_text ().c_str()); +} + uint NewTreeDialog::getBlockSize() { return atoi (entry_block.get_text ().c_str()); } +int NewTreeDialog::getKeyType () +{ + if (fixed_key.get_active ()) + return BTree::KEY_FIXED; + + return BTree::KEY_VARIABLE; +} + +int NewTreeDialog::getTreeType () +{ + if (tree_ident.get_active ()) + return BTree::TYPE_IDENTIFICACION; + + return BTree::TYPE_CLASIFICACION; +} +