Added some skeleton control widgets
This commit is contained in:
+23
-4
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user