5 #include <libgnomecanvasmm.h>
8 #include "view_btree.h"
9 #include "view_properties.h"
10 #include "new_tree_dialog.h"
11 #include "key_dialog.h"
12 #include "view_debug.h"
14 using namespace Gnome::Canvas;
16 Glib::ustring ui_info =
18 " <menubar name='MenuBar'>"
19 " <menu action='MenuFile'>"
20 " <menuitem action='Nuevo'/>"
22 " <menuitem action='Salir'/>"
24 " <menu action='MenuKey'>"
25 " <menuitem action='Agregar Clave'/>"
26 " <menuitem action='Borrar Clave'/>"
27 " <menuitem action='Buscar Clave'/>"
29 " <menu action='MenuZoom'>"
30 " <menuitem action='Alejar'/>"
31 " <menuitem action='Acercar'/>"
33 " <menuitem action='100 %'/>"
39 void agregar_clave ();
46 Glib::RefPtr<ViewBTree> tree;
48 Gnome::Canvas::Canvas *real_canvas;
49 ViewProperties *real_frame;
51 int main(int argc, char *argv[])
53 Gtk::Main kit(argc, argv);
55 Gnome::Canvas::init ();
61 Gtk::ScrolledWindow area;
62 Gnome::Canvas::Canvas canvas;
66 real_canvas = &canvas;
70 canvas.set_scroll_region (0, 0, 100, 100);
73 hbox.pack_start (frame, false, false, 10);
74 hbox.pack_start (area);
75 hbox.pack_end (debug, false, true, 10);
77 Glib::RefPtr<Gtk::ActionGroup> actiongroup = Gtk::ActionGroup::create();
79 actiongroup->add( Gtk::Action::create("MenuFile", "_Arbol") );
80 actiongroup->add( Gtk::Action::create("Nuevo", Gtk::Stock::NEW), &nuevo_arbol);
81 actiongroup->add( Gtk::Action::create("Salir", Gtk::Stock::QUIT), Gtk::AccelKey ("<control>q"), &Gtk::Main::quit);
82 actiongroup->add( Gtk::Action::create("MenuKey", "_Clave") );
83 actiongroup->add( Gtk::Action::create("Agregar Clave", Gtk::Stock::ADD), Gtk::AccelKey ("<control>a"), &agregar_clave);
84 actiongroup->add( Gtk::Action::create("Borrar Clave", Gtk::Stock::REMOVE), Gtk::AccelKey ("<control>d"), &borrar_clave);
85 actiongroup->add( Gtk::Action::create("Buscar Clave", Gtk::Stock::FIND), Gtk::AccelKey ("<control>f"), &buscar_clave);
86 actiongroup->add( Gtk::Action::create("MenuZoom", "_Zoom"));
87 actiongroup->add( Gtk::Action::create("Alejar", Gtk::Stock::ZOOM_OUT), Gtk::AccelKey ("<control>z"), &zoom_out );
88 actiongroup->add( Gtk::Action::create("Acercar", Gtk::Stock::ZOOM_IN), Gtk::AccelKey ("<control>x"), &zoom_in);
89 actiongroup->add( Gtk::Action::create("100 %", Gtk::Stock::ZOOM_100), Gtk::AccelKey ("<control>1"), &zoom_normal);
91 Glib::RefPtr<Gtk::UIManager> m_refUIManager = Gtk::UIManager::create();
92 m_refUIManager->insert_action_group (actiongroup);
94 m_refUIManager->add_ui_from_string(ui_info);
95 Gtk::Widget* menubar = m_refUIManager->get_widget("/MenuBar");
98 vbox.pack_start (*menubar, false, true, 0);
99 vbox.pack_end (hbox, true, true, 5);
101 window.add_accel_group (m_refUIManager->get_accel_group ());
103 window.set_size_request (640, 480);
106 /* Conecto el Canvas con el Frame */
107 Gtk::Main::run(window);
114 real_canvas->set_scroll_region (0, 0, 5000, 5000);
117 if (d.run () == Gtk::RESPONSE_OK) {
118 uint altas = d.getAdds ();
119 uint bajas = d.getDels ();
121 double paltas = bajas / (double)altas;
123 int type = d.getKeyType ();
124 tree = Glib::RefPtr<ViewBTree>(new ViewBTree (real_canvas->root(), "test.idx", d.getBlockSize (), type));
125 tree->signal_selected ().connect ( sigc::mem_fun (*real_frame, &ViewProperties::ShowItem) );
126 vdebug->SetTree (tree);
127 if (type == BTree::KEY_FIXED) {
129 std::list<int>::iterator it;
131 Random::Ints (lst, altas);
135 while (it != lst.end ()) {
138 double l = Random::Double (0.0f, 1.0f);
139 std::cout << l << " >= " << paltas << std::endl;
145 /* Tengo que borrar una clave entre 0 e "i" de la lista
146 * porque son las que ya agregue. */
147 int aborrar = (int)Random::Double (0, i);
148 std::list<int>::iterator otro = lst.begin ();
150 while (j < aborrar) {
158 std::cout << "Clave Borrada " << sss << std::endl;
164 std::list<std::string> lst;
165 std::list<std::string>::iterator it;
167 Random::Strings (lst, altas);
170 while (it != lst.end ()) {
171 ClaveVariable c(*it);
179 double x1, x2, y1, y2;
180 tree->get_bounds (x1, y1, x2, y2);
184 void agregar_clave ()
188 Gtk::MessageDialog d("No hay un arbol creado, por favor primero cree un arbol!",
189 false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
193 KeyDialog d("Agregar");
194 if (d.run () == Gtk::RESPONSE_OK)
196 Glib::ustring str_key = d.key();
197 if (tree->type() == BTree::KEY_FIXED)
199 ClaveFija c(atoi(str_key.c_str()));
204 ClaveVariable c(str_key);
207 delete tree->last_selected;
216 Gtk::MessageDialog d("No hay un arbol creado, por favor primero cree un arbol!",
217 false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
221 KeyDialog d("Borrar");
222 if (d.run () == Gtk::RESPONSE_OK)
224 Glib::ustring str_key = d.key();
225 if (tree->type() == BTree::KEY_FIXED)
227 ClaveFija c(atoi(str_key.c_str()));
232 ClaveVariable c(str_key);
235 delete tree->last_selected;
244 Gtk::MessageDialog d("No hay un arbol creado, por favor primero cree un arbol!",
245 false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
249 KeyDialog d("Buscar");
250 while (true) // Repite hasta que se encuentre algo o se cancele
252 if (d.run () == Gtk::RESPONSE_OK)
254 BTreeFindResult* result = 0;
256 Glib::ustring str_key = d.key();
257 if (tree->type() == BTree::KEY_FIXED)
259 c = new ClaveFija (atoi(str_key.c_str()));
260 result = tree->FindKey(*c);
264 c = new ClaveVariable (str_key);
265 result = tree->FindKey(*c);
270 tree->AddNode(result->node);
271 tree->HighliteKey (*c);
273 return; // Encontramos, salimos
276 Gtk::MessageDialog msg("Clave no encontrada!", false,
277 Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
279 // Seguimos intentando
281 else return; // Cancelaron, salimos
287 double r = real_canvas->get_pixels_per_unit ();
291 real_canvas->set_pixels_per_unit (r);
296 double r = real_canvas->get_pixels_per_unit ();
300 real_canvas->set_pixels_per_unit (r);
305 real_canvas->set_pixels_per_unit (1.0f);