3 using System.Collections;
7 using Controlador.Afiliacion;
8 using Dominio.Afiliados;
11 public class VAgregarFamiliar
13 Dialog wAgregarFamiliar;
16 [Widget] ComboBox tipoDoc;
17 [Widget] Entry nroDoc;
18 [Widget] Entry nombre;
19 [Widget] Entry apellido;
21 [Widget] RadioButton sexom;
22 [Widget] Entry fechaNac;
24 [Widget] Entry numero;
27 [Widget] ComboBox provincia;
28 [Widget] Entry disponibilidad;
29 [Widget] Entry codigopostal;
30 [Widget] Entry telefono;
31 [Widget] SpinButton familiares;
32 [Widget] TextView observaciones;
37 ETipoDocumento tipoTitular;
39 RegistrarVisitasController c;
41 public VAgregarFamiliar(int n, int t, ETipoDocumento td_titular, int doc_titular, RegistrarVisitasController c)
44 xml = new Glade.XML (null, "registrar_visitas.glade", "agregar_familiar", null);
45 xml.Autoconnect (this);
48 tipoTitular = td_titular;
49 nroTitular = doc_titular;
52 public void OnDialogResponse (object o, ResponseArgs args)
55 /*if (args.ResponseId == ResponseType.Cancel)
58 ETipoDocumento _tipoDoc;
69 EProvincia _provincia;
72 tipoDoc.GetActiveIter (out iter);
73 _tipoDoc = (ETipoDocumento)Enum.Parse (typeof (ETipoDocumento), (string)tipoDoc.Model.GetValue (iter, 0), true);
74 _nroDoc = Int32.Parse (nroDoc.Text);
76 _nombre = nombre.Text;
77 _apellido = apellido.Text;
79 if (sexom.Active == true)
83 _fechaNac = DateTime.Parse (fechaNac.Text);
85 _numero = Int32.Parse (numero.Text);
86 _piso = Int32.Parse (piso.Text);
88 provincia.GetActiveIter (out iter);
89 //_provincia= (EProvincia)Enum.Parse (typeof (EProvincia), (string)provincia.Model.GetValue (iter, 0), true);
91 _telefono = telefono.Text;
94 tipoTitular, nroTitular, _tipoDoc, _nroDoc, _nombre, _apellido, _email,
95 _fechaNac, _calle, _numero, _piso, _dpto, _telefono,
99 public void OnSeleccionarFechaClicked (object o, EventArgs args)
103 if (fechaNac.Text.Equals (""))
104 d = new CalendarDialog ();
106 d = new CalendarDialog (fechaNac.Text);
112 fechaNac.Text = d.Date.ToLongDateString ();
118 Dialog w = (Dialog)xml.GetWidget ("agregar_familiar");
119 w.Title = String.Format ("Agregar Familiar {0} de {1}", actual, total);