]> git.llucax.com Git - z.facultad/75.52/treemulator.git/commitdiff
Muestro el header al cambiar de nodo.
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Mon, 17 Oct 2005 04:53:09 +0000 (04:53 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Mon, 17 Oct 2005 04:53:09 +0000 (04:53 +0000)
nviewer/w_btree.cpp

index 892db6c7d6b425574c9390c8a92e561e2d9babf6..a5a819b04e288aa7f5e133851738735585aeb20e 100644 (file)
@@ -51,6 +51,8 @@ void wBTree::ShowNode (uint node_num)
                        wattron (win, COLOR_PAIR (2));
                else
                        wattron (win, COLOR_PAIR (3));
+               mvwaddnstr (win, y, x, " ", 1);
+               x++;
                mvwaddnstr (win, y, x, (const char *)(s.c_str ()), s.length ());
                if (n%2)
                        wattroff (win, COLOR_PAIR (2));
@@ -61,7 +63,7 @@ void wBTree::ShowNode (uint node_num)
                it++;
        }
        last_length = x;
-       mvwaddstr (win, 20, 5, "Ir al nodo (-1 para salir) : ");
+       wnode->ShowHeader (node_num, node_header);
 }
 
 void wBTree::Show ()