Able to view encrypted keys in the key management window

This commit is contained in:
amazing-username
2017-08-11 20:44:33 -05:00
parent b83287b768
commit c1d17799cd
10 changed files with 113 additions and 14 deletions
+5 -2
View File
@@ -2,7 +2,8 @@
#define VIEWINGWINDOW_H_
#include<QVBoxLayout>
#include<QTableView>
#include<QTableWidget>
#include<QStringList>
#include<QLineEdit>
#include<QPushButton>
#include<memory>
@@ -18,8 +19,10 @@ protected:
unique_ptr<QVBoxLayout> subLayoutGoonOne;
unique_ptr<QVBoxLayout> subLayoutGoonTwo;
unique_ptr<QLineEdit> crypticText;
unique_ptr<QTableView> elementView;
unique_ptr<QTableWidget> elementView;
unique_ptr<QPushButton> closeButton;
unique_ptr<QPushButton> generateNewKeys;
QStringList tableHeader;
int rowCount, columnCount;
};
#endif