-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.cs
272 lines (228 loc) · 7.89 KB
/
MainForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MSDNVideo.Tienda.MSDNVideoServices;
using MSDNVideo.Comun;
namespace MSDNVideo.Tienda
{
public partial class MainForm : Form
{
#region Campos
private IPantalla _pantallaActual = null;
ToolStripPaginacion _toolStripPaginacion;
#endregion
#region Constructor
public MainForm()
{
InitializeComponent();
}
#endregion
#region Tratamiento de eventos
private void MainForm_Load(object sender, EventArgs e)
{
// Añadimos dinámicamente el control de paginación
_toolStripPaginacion = new ToolStripPaginacion();
toolStrip1.Items.Add(_toolStripPaginacion);
_toolStripPaginacion.Alignment = ToolStripItemAlignment.Right;
_toolStripPaginacion.PaginateChange += new PaginateChangeHandler(toolStripPaginateChange);
MostrarComandosSoportados(0);
IniciarSesion();
}
void toolStripPaginateChange(int first)
{
if (_pantallaActual.ConfirmarCierre())
_pantallaActual.Paginar(first);
}
private void guardarButton_Click(object sender, EventArgs e)
{
_pantallaActual.Guardar();
}
private void eliminarButton_Click(object sender, EventArgs e)
{
_pantallaActual.Eliminar();
}
private void nuevoButton_Click(object sender, EventArgs e)
{
_pantallaActual.Nuevo();
}
void OnMostrarInfoPaginacion(int primerRegistro, int registrosPagina, int totalRegistros)
{
_toolStripPaginacion.RegistrosPagina = registrosPagina;
_toolStripPaginacion.TotalRegistros = totalRegistros;
_toolStripPaginacion.InicioPagina = primerRegistro;
}
private void panelBotones_BotonClicked(int botonIndex)
{
switch (botonIndex)
{
case 0:
// Películas
MostrarPantalla(new PeliculasPanel());
break;
case 1:
// Usuarios
MostrarPantalla(new UsuariosPanel());
break;
case 2:
// Devoluciones
MostrarPantalla(new DevolucionesPanel());
break;
case 3:
// Ventas y alquileres
MostrarPantalla(new VentaAlquilerPanel());
break;
case 4:
// Recogidas
MostrarPantalla(new RecogidasPanel());
break;
case 5:
// Notificaciones
MostrarPantalla(new NotificacionesPanel());
break;
case 6:
// Puntuaciones
MostrarPantalla(new PuntuacionesPanel());
break;
}
}
private void buscarButton_Click(object sender, EventArgs e)
{
_pantallaActual.Buscar();
}
private void iniciarSesionLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
IniciarSesion();
}
private void desconectarMenuItem_Click(object sender, EventArgs e)
{
CerrarSesion();
}
private void conectarMenuItem_Click(object sender, EventArgs e)
{
IniciarSesion();
}
private void salirMenuItem_Click(object sender, EventArgs e)
{
if (_pantallaActual == null)
this.Close();
else if(_pantallaActual.ConfirmarCierre())
this.Close();
}
#endregion
#region Métodos auxiliares
private void IniciarSesion()
{
InicioSesionForm inicioSesionDlg = new InicioSesionForm();
if (inicioSesionDlg.ShowDialog() == DialogResult.OK)
{
conectarMenuItem.Enabled = false;
desconectarMenuItem.Enabled = true;
tablaIniciarSesion.Visible = false;
MostrarPantalla(new PeliculasPanel());
panelBotones.GenerarInformes();
}
}
private void CerrarSesion()
{
MostrarPantalla(null);
tablaIniciarSesion.Visible = true;
conectarMenuItem.Enabled = true;
desconectarMenuItem.Enabled = false;
}
private void MostrarPantalla(UserControl pantalla)
{
if (_pantallaActual != null)
{
if ((_pantallaActual.ComandosSoportados & (int)ComandosPantalla.Paginacion) > 0)
{
_pantallaActual.MostrarInfoPaginacion -= new MostrarInfoPaginacionHandler(OnMostrarInfoPaginacion);
}
_pantallaActual.ConfirmarCierre();
((IDisposable)_pantallaActual).Dispose();
}
_pantallaActual = (IPantalla)pantalla;
if (pantalla != null)
{
pantalla.Dock = DockStyle.Fill;
pantalla.Parent = splitContainer1.Panel2;
// Info de paginación
if ((_pantallaActual.ComandosSoportados & (int)ComandosPantalla.Paginacion) > 0)
{
_pantallaActual.MostrarInfoPaginacion += new MostrarInfoPaginacionHandler(OnMostrarInfoPaginacion);
}
// Botones y opciones de menú
MostrarComandosSoportados(_pantallaActual.ComandosSoportados);
_pantallaActual.Refrescar();
}
else
MostrarComandosSoportados(0);
}
private void MostrarComandosSoportados(int comandosSoportados)
{
// Info de paginación
if ((comandosSoportados & (int)ComandosPantalla.Paginacion) > 0)
{
_toolStripPaginacion.Visible = true;
}
else
{
_toolStripPaginacion.Visible = false;
}
// Botones y opciones de menú
if ((comandosSoportados & (int)ComandosPantalla.Buscar) > 0)
{
buscarButton.Visible = true;
}
else
{
buscarButton.Visible = false;
}
if ((comandosSoportados & (int)ComandosPantalla.Eliminar) > 0)
{
eliminarButton.Visible = true;
eliminarMenuItem.Enabled = true;
}
else
{
eliminarButton.Visible = false;
eliminarMenuItem.Enabled = false;
}
if ((comandosSoportados & (int)ComandosPantalla.Guardar) > 0)
{
guardarButton.Visible = true;
guardarMenuItem.Enabled = true;
}
else
{
guardarButton.Visible = false;
guardarMenuItem.Enabled = false;
}
if ((comandosSoportados & (int)ComandosPantalla.Nuevo) > 0)
{
nuevoButton.Visible = true;
nuevoMenuItem.Enabled = true;
}
else
{
nuevoButton.Visible = false;
nuevoMenuItem.Enabled = false;
}
if ((comandosSoportados & (int)ComandosPantalla.Refrescar) > 0)
{
refrescarButton.Visible = true;
refrescarMenuItem.Enabled = true;
}
else
{
refrescarButton.Visible = false;
refrescarMenuItem.Enabled = false;
}
}
#endregion
}
}