From cfe46632f0d23423068570544fae8a76e0810f92 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Wed, 15 Jun 2005 23:52:31 +0000 Subject: [PATCH] * Agrego un dialogo de seleccion de fecha para mayor comodidad y menos validaciones. --- demo/glade/agregar_afiliado.glade | 73 ++++++++++++++++++-------- demo/glade/ingresar_solicitud.glade | 78 ++++++++++++++++++++-------- demo/src/Vistas/CalendarDialog.cs | 25 +++++++++ demo/src/Vistas/IngresarSolicitud.cs | 10 ++++ 4 files changed, 142 insertions(+), 44 deletions(-) create mode 100644 demo/src/Vistas/CalendarDialog.cs diff --git a/demo/glade/agregar_afiliado.glade b/demo/glade/agregar_afiliado.glade index f231a98..ac3c57c 100644 --- a/demo/glade/agregar_afiliado.glade +++ b/demo/glade/agregar_afiliado.glade @@ -269,6 +269,7 @@ + 12 True False 0 @@ -563,27 +564,6 @@ - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 5 - 6 - - - - True @@ -633,6 +613,57 @@ CI fill + + + + True + False + 12 + + + + True + True + False + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + True + _Seleccionar fecha + True + GTK_RELIEF_NORMAL + True + + + 0 + False + False + + + + + 1 + 2 + 5 + 6 + fill + fill + + diff --git a/demo/glade/ingresar_solicitud.glade b/demo/glade/ingresar_solicitud.glade index 7c2dede..b596a94 100644 --- a/demo/glade/ingresar_solicitud.glade +++ b/demo/glade/ingresar_solicitud.glade @@ -66,6 +66,7 @@ + 12 True False 0 @@ -360,27 +361,6 @@ - - - True - True - True - True - 0 - - True - * - False - - - 1 - 2 - 5 - 6 - - - - True @@ -430,6 +410,58 @@ CI fill + + + + True + False + 10 + + + + True + True + False + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + True + _Seleccionar Fecha + True + GTK_RELIEF_NORMAL + True + + + + 0 + False + False + + + + + 1 + 2 + 5 + 6 + fill + fill + + @@ -853,8 +885,8 @@ Neuquen 6 2 False - 0 - 0 + 8 + 8 diff --git a/demo/src/Vistas/CalendarDialog.cs b/demo/src/Vistas/CalendarDialog.cs new file mode 100644 index 0000000..958abca --- /dev/null +++ b/demo/src/Vistas/CalendarDialog.cs @@ -0,0 +1,25 @@ + + +using Gtk; +using System; + +public class CalendarDialog : Dialog +{ + private Calendar calendar; + + public DateTime Date { + get { return calendar.GetDate (); } + } + + public CalendarDialog ():base ("Seleccionar Fecha", null, DialogFlags.DestroyWithParent) + { + calendar = new Calendar (); + VBox.PackStart (calendar); + calendar.Show (); + + /* Botones */ + AddButton ("_Close", ResponseType.Close); + AddButton ("_Aceptar", ResponseType.Accept); + } +} + diff --git a/demo/src/Vistas/IngresarSolicitud.cs b/demo/src/Vistas/IngresarSolicitud.cs index 384e646..1079641 100644 --- a/demo/src/Vistas/IngresarSolicitud.cs +++ b/demo/src/Vistas/IngresarSolicitud.cs @@ -101,6 +101,16 @@ public class VIngresarSolicitud c.Dispose (); } + public void OnSeleccionarFechaClicked (object o, EventArgs args) + { + CalendarDialog d = new CalendarDialog (); + int response; + response = d.Run(); + if (response == -3) + fechaNac.Text = d.Date.ToLongDateString (); + d.Destroy (); + } + public void Run () { Dialog w = (Dialog)xml.GetWidget ("ingresarSolicitud"); -- 2.43.0