]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blob - viewer/main.cpp
0c5d01a7c3ffbed51767c4a4316ff1bd117ebd33
[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 ViewBTree *tree;
37 ViewDebug *vdebug;
38 Gnome::Canvas::Canvas *real_canvas;
39
40 int main(int argc, char *argv[])
41 {
42         Gtk::Main kit(argc, argv);
43
44         Gnome::Canvas::init ();
45
46         Gtk::Window window;
47         Gtk::HBox hbox;
48         Gtk::VBox vbox;
49
50         ViewProperties frame;
51         Gtk::ScrolledWindow area;
52         Gnome::Canvas::Canvas canvas;
53
54         ViewBTree canvas_grp (canvas.root (), "test.idx");
55         ViewDebug debug (&canvas_grp);
56
57         tree = &canvas_grp;
58         real_canvas = &canvas;
59         vdebug = &debug;
60
61         canvas.set_scroll_region (0, 0, 5000, 5000);
62         area.add (canvas);
63
64         hbox.pack_start (frame, false, false, 10);
65         hbox.pack_start (area);
66         hbox.pack_end (debug, false, true, 10);
67
68         Glib::RefPtr<Gtk::ActionGroup> actiongroup = Gtk::ActionGroup::create();
69
70         actiongroup->add( Gtk::Action::create("MenuFile", "_Arbol") );
71         actiongroup->add( Gtk::Action::create("Nuevo", Gtk::Stock::NEW), &nuevo_arbol);
72         actiongroup->add( Gtk::Action::create("Salir", Gtk::Stock::QUIT), &Gtk::Main::quit);
73         actiongroup->add( Gtk::Action::create("MenuZoom", "_Zoom"));
74         actiongroup->add( Gtk::Action::create("Alejar", Gtk::Stock::ZOOM_OUT), Gtk::AccelKey ("<control>z"), &zoom_out );
75         actiongroup->add( Gtk::Action::create("Acercar", Gtk::Stock::ZOOM_IN), Gtk::AccelKey ("<control>x"), &zoom_in);
76         actiongroup->add( Gtk::Action::create("100 %", Gtk::Stock::ZOOM_100), Gtk::AccelKey ("<control>1"), &zoom_normal);
77
78         Glib::RefPtr<Gtk::UIManager> m_refUIManager = Gtk::UIManager::create();
79         m_refUIManager->insert_action_group (actiongroup);
80
81         m_refUIManager->add_ui_from_string(ui_info);
82         Gtk::Widget* menubar = m_refUIManager->get_widget("/MenuBar");
83         menubar->show_all ();
84
85         vbox.pack_start (*menubar, false, true, 0);
86         vbox.pack_end (hbox, true, true, 5);
87
88         window.add_accel_group (m_refUIManager->get_accel_group ());
89         window.add (vbox);
90         window.set_size_request (640, 480);
91         window.show_all ();
92
93         /* Conecto el Canvas con el Frame */
94         canvas_grp.signal_selected ().connect ( sigc::mem_fun (frame, &ViewProperties::ShowItem) );
95         Gtk::Main::run(window);
96                                                             
97         return 0;
98 }
99
100 void nuevo_arbol ()
101 {
102         NewTreeDialog d;
103         if (d.run () == Gtk::RESPONSE_OK) {
104                 uint tot = d.getAmount ();
105                 for (uint i=0; i <= tot; i++) {
106                         ClaveFija c(i);
107
108                         tree->AddKey (c);
109                         vdebug->AddKey (c);
110                 }
111                 tree->AddNode (0);
112         }
113 }
114
115 void zoom_out ()
116 {
117         double r = real_canvas->get_pixels_per_unit ();
118         r *= 0.9f;
119         if (r < 0.0001)
120                 r = 0.0001;
121         real_canvas->set_pixels_per_unit (r);
122 }
123
124 void zoom_in ()
125 {
126         double r = real_canvas->get_pixels_per_unit ();
127         r *= 1.1f;
128         if (r > 10)
129                 r = 10;
130         real_canvas->set_pixels_per_unit (r);
131 }
132
133 void zoom_normal ()
134 {
135         real_canvas->set_pixels_per_unit (1.0f);
136 }
137