Added vacant Password Management Window

This commit is contained in:
amazing-username
2017-07-29 16:18:50 -05:00
parent 4d5b19cabe
commit 2074f26c4e
8 changed files with 111 additions and 64 deletions
+3 -8
View File
@@ -2,11 +2,6 @@
#define KEYMANAGEMENTWINDOW_H
#include<QDialog>
#include<QVBoxLayout>
#include<QHBoxLayout>
#include<QComboBox>
#include<QLineEdit>
#include<QPushButton>
#include<memory>
#include"CommonWindow.h"
#include"ViewingWindow.h"
@@ -17,13 +12,13 @@ class KeyManagementWindow : public QDialog, public CommonWindow, public ViewingW
public:
KeyManagementWindow(QWidget* parent = 0);
~KeyManagementWindow() = default;
void setContentsOfComboBox();
private slots:
void test();
void generation();
void exitApplication();
private:
void setContentsOfComboBox();
void setupWindow();
void connections();
};
#endif