Added some skeleton control widgets

This commit is contained in:
amazing-username
2017-03-23 12:17:58 -05:00
parent 5fe6a261a0
commit 80d6d20b16
5 changed files with 100 additions and 17 deletions
+23 -4
View File
@@ -1,14 +1,33 @@
#ifndef MESSAGINGCONTROLS_H
#define MESSAGINGCONTROLS_H
class messagingcontrols
{
public:
#include <QDialog>
#include <QPushButton>
#include <QLineEdit>
#include <QLabel>
messagingcontrols();
class QLabel;
class QLineEdit;
class QPushButton;
class messagingcontrols : public QDialog
{
Q_OBJECT
public:
messagingcontrols(QWidget* parent = 0);
~messagingcontrols();
/**
signals:
private slots:
*/
private:
QLineEdit* encryptedBox;
QLabel* lblOfEncryptedBox;
QPushButton* encryptionButon;
};
#endif