]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Vistas/AgregarFamiliar.cs
- Mas de Recibir y Cotejar, sigo mañana.
[z.facultad/75.10/miklolife.git] / demo / src / Vistas / AgregarFamiliar.cs
1
2 using System;
3 using System.Collections;
4 using Gtk;
5 using Glade;
6
7 using Controlador.Afiliacion;
8 using Dominio.Afiliados;
9 using Dominio;
10
11 public class VAgregarFamiliar
12 {
13         Dialog wAgregarFamiliar;
14         Glade.XML xml;
15
16         [Widget] ComboBox tipoDoc;
17         [Widget] Entry nroDoc;
18         [Widget] Entry nombre;
19         [Widget] Entry apellido;
20         [Widget] Entry email;
21         [Widget] RadioButton sexom;
22         [Widget] Entry fechaNac;
23         [Widget] Entry calle;
24         [Widget] Entry numero;
25         [Widget] Entry piso;
26         [Widget] Entry dpto;
27         [Widget] ComboBox provincia;
28         [Widget] Entry disponibilidad;
29         [Widget] Entry codigopostal;
30         [Widget] Entry telefono;
31         [Widget] SpinButton familiares;
32         [Widget] TextView observaciones;
33
34         int actual;
35         int total;
36
37         ETipoDocumento tipoTitular;
38         int nroTitular;
39         RegistrarVisitasController c;
40
41         public VAgregarFamiliar(int n, int t, ETipoDocumento td_titular, int doc_titular, RegistrarVisitasController c)
42         {
43                 this.c = c;
44                 xml = new Glade.XML (null, "registrar_visitas.glade", "agregar_familiar", null);
45                 xml.Autoconnect (this);
46                 actual = n;
47                 total = t;
48                 tipoTitular = td_titular;
49                 nroTitular = doc_titular;
50         }
51
52         public void OnDialogResponse (object o, ResponseArgs args)
53         {
54                 TreeIter iter;
55                 /*if (args.ResponseId == ResponseType.Cancel)
56                         return; */
57
58                 ETipoDocumento _tipoDoc;
59                 int _nroDoc;
60                 string _nombre;
61                 string _apellido;
62                 string _email;
63                 ESexo _sexo;
64                 DateTime _fechaNac;
65                 string _calle;
66                 int _numero;
67                 int _piso;
68                 string _dpto;
69                 EProvincia _provincia;
70                 string _telefono;
71
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);
75
76                 _nombre = nombre.Text;
77                 _apellido = apellido.Text;
78                 _email = email.Text;
79                 if (sexom.Active == true)
80                         _sexo = ESexo.M;
81                 else
82                         _sexo = ESexo.F;
83                 _fechaNac = DateTime.Parse (fechaNac.Text);
84                 _calle = calle.Text;
85                 _numero = Int32.Parse (numero.Text);
86                 _piso = Int32.Parse (piso.Text);
87                 _dpto = dpto.Text;
88                 provincia.GetActiveIter (out iter);
89                 //_provincia= (EProvincia)Enum.Parse (typeof (EProvincia), (string)provincia.Model.GetValue (iter, 0), true);
90                 //_provincia 
91                 _telefono = telefono.Text;
92         
93                 c.CargarFamiliar (
94                         tipoTitular, nroTitular, _tipoDoc, _nroDoc, _nombre, _apellido, _email,
95                         _fechaNac, _calle, _numero, _piso,  _dpto, _telefono, 
96                         _sexo);
97         }
98
99         public void OnSeleccionarFechaClicked (object o, EventArgs args)
100         {
101                 
102                 CalendarDialog d;
103                 if (fechaNac.Text.Equals (""))
104                         d = new CalendarDialog ();
105                 else
106                         d = new CalendarDialog (fechaNac.Text);
107                 
108                 int response;
109                 
110                 response = d.Run();
111                 if (response == -3)
112                         fechaNac.Text = d.Date.ToLongDateString ();
113                 d.Destroy ();
114         }
115
116         public void Run ()
117         {
118                 Dialog w = (Dialog)xml.GetWidget ("agregar_familiar");
119                 w.Title = String.Format ("Agregar Familiar {0} de {1}", actual, total);
120                 w.Run ();
121                 w.Destroy ();
122         }
123 }
124