This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/MessagingControls.h
T
2017-03-24 13:00:56 -05:00

41 lines
640 B
C++

#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