]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blob - viewer/main.cpp
Fix en conversion a string.
[z.facultad/75.52/treemulator.git] / viewer / main.cpp
1
2 #include <iostream>
3
4 #include <gtkmm.h>
5 #include <libgnomecanvasmm.h>
6
7 #include "view_btree.h"
8 #include "view_properties.h"
9 #include "new_tree_dialog.h"
10 #include "view_debug.h"
11
12 using namespace Gnome::Canvas;
13
14  Glib::ustring ui_info =
15 "<ui>"
16 "  <menubar name='MenuBar'>"
17 "    <menu action='MenuFile'>"
18 "      <menuitem action='Nuevo'/>"
19 "      <separator/>"
20 "      <menuitem action='Salir'/>"
21 "    </menu>"
22 "   <menu action='MenuZoom'>"
23 "      <menuitem action='Alejar'/>"
24 "      <menuitem action='Acercar'/>"
25 "      <separator/>"
26 "      <menuitem action='100 %'/>"
27 "    </menu>"
28 "  </menubar>"
29 "</ui>";
30
31 void nuevo_arbol ();
32 void zoom_out ();
33 void zoom_in ();
34 void zoom_normal ();
35
36 Glib::RefPtr<ViewBTree> tree;
37 ViewDebug *vdebug;
38 Gnome::Canvas::Canvas *real_canvas;
39 ViewProperties *real_frame;
40
41 int main(int argc, char *argv[])
42 {
43         Gtk::Main kit(argc, argv);
44
45         Gnome::Canvas::init ();
46
47         Gtk::Window window;
48         Gtk::HBox hbox;
49         Gtk::VBox vbox;
50
51         Gtk::ScrolledWindow area;
52         Gnome::Canvas::Canvas canvas;
53         ViewProperties frame;
54         ViewDebug debug;
55
56         real_canvas = &canvas;
57         real_frame = &frame;
58         vdebug = &debug;
59
60         canvas.set_scroll_region (0, 0, 5000, 5000);
61         area.add (canvas);
62
63         hbox.pack_start (frame, false, false, 10);
64         hbox.pack_start (area);
65         hbox.pack_end (debug, false, true, 10);
66
67         Glib::RefPtr<Gtk::ActionGroup> actiongroup = Gtk::ActionGroup::create();
68
69         actiongroup->add( Gtk::Action::create("MenuFile", "_Arbol") );
70         actiongroup->add( Gtk::Action::create("Nuevo", Gtk::Stock::NEW), &nuevo_arbol);
71         actiongroup->add( Gtk::Action::create("Salir", Gtk::Stock::QUIT), &Gtk::Main::quit);
72         actiongroup->add( Gtk::Action::create("MenuZoom", "_Zoom"));
73         actiongroup->add( Gtk::Action::create("Alejar", Gtk::Stock::ZOOM_OUT), Gtk::AccelKey ("<control>z"), &zoom_out );
74         actiongroup->add( Gtk::Action::create("Acercar", Gtk::Stock::ZOOM_IN), Gtk::AccelKey ("<control>x"), &zoom_in);
75         actiongroup->add( Gtk::Action::create("100 %", Gtk::Stock::ZOOM_100), Gtk::AccelKey ("<control>1"), &zoom_normal);
76
77         Glib::RefPtr<Gtk::UIManager> m_refUIManager = Gtk::UIManager::create();
78         m_refUIManager->insert_action_group (actiongroup);
79
80         m_refUIManager->add_ui_from_string(ui_info);
81         Gtk::Widget* menubar = m_refUIManager->get_widget("/MenuBar");
82         menubar->show_all ();
83
84         vbox.pack_start (*menubar, false, true, 0);
85         vbox.pack_end (hbox, true, true, 5);
86
87         window.add_accel_group (m_refUIManager->get_accel_group ());
88         window.add (vbox);
89         window.set_size_request (640, 480);
90         window.show_all ();
91
92         /* Conecto el Canvas con el Frame */
93         Gtk::Main::run(window);
94                                                             
95         return 0;
96 }
97
98 void nuevo_arbol ()
99 {
100         NewTreeDialog d;
101         if (d.run () == Gtk::RESPONSE_OK) {
102                 uint tot = d.getAmount ();
103                 tree = Glib::RefPtr<ViewBTree>(new ViewBTree (real_canvas->root(), "test.idx", d.getBlockSize ()));
104                 tree->signal_selected ().connect ( sigc::mem_fun (*real_frame, &ViewProperties::ShowItem) );
105                 vdebug->SetTree (tree);
106                 for (uint i=0; i <= tot; i++) {
107                         ClaveFija c(i);
108
109                         tree->AddKey (c);
110                         vdebug->AddKey (c);
111                 }
112                 tree->AddNode (0);
113         }
114 }
115
116 void zoom_out ()
117 {
118         double r = real_canvas->get_pixels_per_unit ();
119         r *= 0.9f;
120         if (r < 0.0001)
121                 r = 0.0001;
122         real_canvas->set_pixels_per_unit (r);
123 }
124
125 void zoom_in ()
126 {
127         double r = real_canvas->get_pixels_per_unit ();
128         r *= 1.1f;
129         if (r > 10)
130                 r = 10;
131         real_canvas->set_pixels_per_unit (r);
132 }
133
134 void zoom_normal ()
135 {
136         real_canvas->set_pixels_per_unit (1.0f);
137 }
138