Added classes for Encryption and Decryption

This commit is contained in:
amazing-username
2017-03-24 13:00:56 -05:00
parent 80d6d20b16
commit adc92aae29
13 changed files with 375 additions and 19 deletions
+40
View File
@@ -0,0 +1,40 @@
#ifndef MESSAGINGCONTROLS_H
#define MESSAGINGCONTROLS_H
#include <QDialog>
#include <QPushButton>
#include <QLineEdit>
#include <QTextEdit>
#include <QLabel>
#include <QMenuBar>
#include <QMainWindow>
class QLabel;
class QLineEdit;
class QTextEdit;
class QPushButton;
class QMenuBar;
class QMainWindow;
class MessagingControls : public QDialog
{
Q_OBJECT
public:
MessagingControls(QWidget* parent = 0);
~MessagingControls();
signals:
private slots:
private:
QLineEdit* encryptedBox;
QLabel* lblOfEncryptedBox;
QTextEdit* textToEncrypt;
QPushButton* encryptionButon;
QMenuBar* menuStuff;
QMainWindow* mainWindow;
};
#endif