From f8446a6723f09b3092929479b4307f72fcd03425 Mon Sep 17 00:00:00 2001 From: Ricardo Markiewicz Date: Sun, 26 Jun 2005 00:16:37 +0000 Subject: [PATCH] * Limpieza en Main.cs de codigo de prueba viejo * Saco los botones del toolbar y agrego Menu Afiliaciones con los items implementados. --- demo/glade/main.glade | 89 +++++++++++++++++++++---------------------- demo/src/Main.cs | 22 +---------- 2 files changed, 45 insertions(+), 66 deletions(-) diff --git a/demo/glade/main.glade b/demo/glade/main.glade index b908c74..b59b932 100644 --- a/demo/glade/main.glade +++ b/demo/glade/main.glade @@ -52,6 +52,46 @@ + + + + True + Afiliaciones + True + + + + + + + True + Ingresar Solicitud + True + + + + + + + True + Emitir Hoja de Ruta + True + + + + + + + True + Registrar Visitas + True + + + + + + + 0 @@ -83,56 +123,15 @@ - + True - Ingresar -Solicitud - True - gtk-open + False True True - False - - False - True - - - - - - True - Emitir Hoja - de Ruta - True - gtk-open - True - True - False - - - - False - True - - - - - - True - Registrar - Visitas - True - gtk-open - True - True - False - - - - False - True + True + False diff --git a/demo/src/Main.cs b/demo/src/Main.cs index 65f9498..e1073f7 100644 --- a/demo/src/Main.cs +++ b/demo/src/Main.cs @@ -74,7 +74,7 @@ public class App Application.Quit (); } - public void OnConsultarAfiliado (object o, EventArgs args) + public void OnIngresarSolicitud(object o, EventArgs args) { VIngresarSolicitud v = new VIngresarSolicitud (); v.Run (); @@ -94,25 +94,5 @@ public class App VRegistrarVisitas v = new VRegistrarVisitas (); v.Run (); } - - public void OnConsultarAfiliadoClose (object o, EventArgs args) - { - wConsultarAfiliado.Destroy (); - } - - public void OnVerAfiliado (object o, EventArgs args) - { - } - - public void OnBuscarAfiliado (object o, EventArgs args) - { - Entry codigo = (Entry)xmla.GetWidget ("s_codigo"); - TreeView lista = (TreeView)xmla.GetWidget ("lista"); - TreeStore store = (TreeStore)lista.Model; - foreach (Afiliado a in lst) { - if (a.Codigo == Int32.Parse (codigo.Text)) - store.AppendValues (String.Format("{0}", a.Codigo), a.Nombre); - } - } } -- 2.43.0