-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathwidget.h
51 lines (35 loc) · 784 Bytes
/
widget.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 WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QTimer>
#include <iostream>
#include "ui_widget.h"
#include "baserobot.h"
#include "modooperacion.h"
#include "filemanager.h"
#include "datalist.h"
#include "conjuntointerfaz.h"
namespace Ui {
class Widget;
}
class Widget : public QWidget, public ConjuntoInterfaz {
Q_OBJECT
public:
explicit Widget(QWidget *parent = nullptr);
~Widget();
public slots:
void on_ACTIVAR_clicked();
void on_DESACTIVAR_clicked();
void report();
private slots:
void on_selectMode_clicked();
void on_Archivos_clicked();
void on_EXIT_clicked();
void on_Data_clicked();
void on_askEstado_clicked();
private:
Ui::Widget *ui;
bool estado;
QTimer *timer;
};
#endif // WIDGET_H