-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathventanaplanificador.h
51 lines (35 loc) · 1004 Bytes
/
ventanaplanificador.h
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
#ifndef VENTANAPLANIFICADOR_H
#define VENTANAPLANIFICADOR_H
#include <QWidget>
#include "empacadora.h"
#include "almacenterminal.h"
#include "ventanapaquete.h"
namespace Ui {
class VentanaPlanificador;
}
class VentanaPlanificador : public QWidget
{
Q_OBJECT
public:
explicit VentanaPlanificador(QWidget *parent = 0, ListaGalletas* pLista = 0, Empacadora* pEmpacadora = 0,
AlmacenTerminal* pAlmacen = 0);
~VentanaPlanificador();
signals:
void inicializarCarritos();
public slots:
void on_agregar_clicked();
void actualizarVentana();
void on_cancelar_clicked();
void resetearVentana();
private slots:
void on_barraProbabilidades_valueChanged(int value);
void on_limpiar_clicked();
void on_aceptar_clicked();
private:
Ui::VentanaPlanificador *ui;
ListaGalletas* listaGalletas;
Empacadora* empacadora;
AlmacenTerminal* almacen;
VentanaPaquete* ventanaPaquete;
};
#endif // VENTANAPLANIFICADOR_H