From: Ricardo Markiewicz Date: Thu, 30 Jun 2005 05:08:53 +0000 (+0000) Subject: Mas ventanitas X-Git-Tag: svn_import~123 X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/commitdiff_plain/432ba009d6f33b8870ec2df87cb3a1dacc5488e7 Mas ventanitas --- diff --git a/carpeta/disenio_grafico/Especificaciones_graficas_y_pantallas.sxw b/carpeta/disenio_grafico/Especificaciones_graficas_y_pantallas.sxw index 57a6098..5a1e154 100644 Binary files a/carpeta/disenio_grafico/Especificaciones_graficas_y_pantallas.sxw and b/carpeta/disenio_grafico/Especificaciones_graficas_y_pantallas.sxw differ diff --git a/carpeta/disenio_grafico/shots/alta_plan.png b/carpeta/disenio_grafico/shots/alta_plan.png new file mode 100644 index 0000000..d9c3868 Binary files /dev/null and b/carpeta/disenio_grafico/shots/alta_plan.png differ diff --git a/carpeta/disenio_grafico/shots/mantener_planes.png b/carpeta/disenio_grafico/shots/mantener_planes.png new file mode 100644 index 0000000..f0090fd Binary files /dev/null and b/carpeta/disenio_grafico/shots/mantener_planes.png differ diff --git a/demo/src/Vistas/MantenerPlanes.cs b/demo/src/Vistas/MantenerPlanes.cs index d0c63b2..604cb99 100644 --- a/demo/src/Vistas/MantenerPlanes.cs +++ b/demo/src/Vistas/MantenerPlanes.cs @@ -33,6 +33,34 @@ public class VMantenerPlanes { xml = new Glade.XML (null, "mantener_planes.glade", "mantener_planes", null); xml.Autoconnect (this); + + ListStore m = new ListStore (typeof(string), typeof(float), typeof(int)); + lista.Model = m; + lista.HeadersVisible = true; + lista.AppendColumn ("Descripción", new CellRendererText (), "text", 0); + lista.AppendColumn ("Categoría", new CellRendererText (), "text", 1); + lista.AppendColumn ("Permanencia Mínima", new CellRendererText (), "text", 2); + + TreeIter nuevo = m.Append (); + + m.SetValue (nuevo, 0, "Neo 210"); + m.SetValue (nuevo, 1, 1.0f); + m.SetValue (nuevo, 2, 1); + + nuevo = m.Append (); + m.SetValue (nuevo, 0, "Neo 310"); + m.SetValue (nuevo, 1, 2.0f); + m.SetValue (nuevo, 2, 2); + + nuevo = m.Append (); + m.SetValue (nuevo, 0, "Neo 410"); + m.SetValue (nuevo, 1, 3.0f); + m.SetValue (nuevo, 2, 4); + + nuevo = m.Append (); + m.SetValue (nuevo, 0, "Ejecutive 510"); + m.SetValue (nuevo, 1, 4.0f); + m.SetValue (nuevo, 2, 3); } public void OnDialogResponse (object o, ResponseArgs args)