]> git.llucax.com Git - z.facultad/75.52/treemulator.git/commitdiff
Pongo un cuadrado gris con el espacio libre al final.
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Sun, 30 Oct 2005 05:25:55 +0000 (05:25 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Sun, 30 Oct 2005 05:25:55 +0000 (05:25 +0000)
viewer/view_node.cpp

index dbcc8185a19202dad989423345ba2a75950d7d57..c29d43faa8c4ee6b6384d8a80481c638290d4310 100644 (file)
@@ -10,9 +10,10 @@ ViewNode::ViewNode (Canvas::Group *parent, uint num, uint padre, BTreeNodeHeader
        this->padre = padre;
 
        /* Fondo */
-       fondo = new Canvas::Rect (*this, 0, 0, ViewBTree::node_width, ViewBTree::node_height);
-       fondo->property_fill_color() = "gray";
-       fondo->property_outline_color() = "black";
+       int w1 = (int)(ViewBTree::node_width / 512.0f);
+       int used_width = 0;
+
+       double y = 0;
 
        /* Header */
        Canvas::Rect *h = new Canvas::Rect (*this, 0, 0, header_w, ViewBTree::node_height);
@@ -27,16 +28,22 @@ ViewNode::ViewNode (Canvas::Group *parent, uint num, uint padre, BTreeNodeHeader
        new Canvas::Text (*this, header_w/2, ViewBTree::node_height/2, node_num);
 
        double x = header_w;
+       y = 0;
 
        std::list<BTreeData *>::iterator it = keys.begin ();
        while (it != keys.end ()) {
                BTreeData *data = (*it);
                double w = ViewBTree::byte_to_pixels * data->Size ();
 
-               ViewBTreeData *v = ViewBTreeData::Create (data, this, x, 0, w+x, ViewBTree::node_height);
+               ViewBTreeData *v = ViewBTreeData::Create (data, this, x, y, w+x, y+ViewBTree::node_height);
                v->signal_clicked ().connect ( sigc::mem_fun (this , &ViewNode::on_item_clicked ));
                v->signal_double_clicked ().connect ( sigc::mem_fun (this , &ViewNode::on_item_activated ));
                x += w;
+               used_width += w;
+               if (x >= 512) {
+                       x = 0;
+                       y += ViewBTree::node_height + 5;
+               }
                it++;
 
                datas.push_back (v);
@@ -46,6 +53,12 @@ ViewNode::ViewNode (Canvas::Group *parent, uint num, uint padre, BTreeNodeHeader
                        hijos.push_back (data->GetChild ());
                }
        }
+       w1 = ViewBTree::node_width - used_width;
+       if (w1 > 0) {
+               fondo = new Canvas::Rect (*this, x, y, x+w1, ViewBTree::node_height+y);
+               fondo->property_fill_color() = "gray";
+               fondo->property_outline_color() = "black";
+       }
 }
 
 void ViewNode::on_item_clicked (BTreeData *data, ViewBTreeData *s)