source: comparacioncriptosistemas/interfaz/criptosistemas.h

interfaz
Last change on this file was bd66191, checked in by lhernandez <lhernandez@…>, 8 years ago

modificacion en la interfaz, preparada para las validaciones en el tamaño del archivo y mensajes

  • Property mode set to 100644
File size: 657 bytes
Line 
1#ifndef CRIPTOSISTEMAS_H
2#define CRIPTOSISTEMAS_H
3
4#include <QMainWindow>
5
6
7namespace Ui {
8class CriptoSistemas;
9}
10
11
12class CriptoSistemas : public QMainWindow
13{
14    Q_OBJECT
15
16    public:
17        explicit CriptoSistemas(QWidget *parent = 0);
18        ~CriptoSistemas();
19        Ui::CriptoSistemas *ui;
20
21    private slots:
22        void Inicio();
23        void OpcionLlaves();
24        void GenerarLlaves();
25        void CifrarArchivo();
26        void DescifrarArchivo();
27        void Ayuda();
28        void OpenFolderForCrifrar();
29        void SaveFile();
30        void OpenFolderForDescifrar();
31        void SaveFileForDescifrado();
32};
33
34#endif // CRIPTOSISTEMAS_H
Note: See TracBrowser for help on using the repository browser.