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/KeyManagementWindow.h
amazing-username 353a1dfef1 Solution to issue #6
2017-08-12 17:02:43 -05:00

28 lines
575 B
C++

#ifndef KEYMANAGEMENTWINDOW_H
#define KEYMANAGEMENTWINDOW_H
#include<QDialog>
#include<QString>
#include<memory>
#include"CommonWindow.h"
#include"ViewingWindow.h"
class KeyManagementWindow : public QDialog, public CommonWindow, public ViewingWindow
{
Q_OBJECT
public:
KeyManagementWindow(QWidget* parent = 0);
~KeyManagementWindow() = default;
private slots:
//void test();
void generation();
void exitApplication();
void setContentOfKeyView();
private:
void setContentsOfComboBox();
void setupWindow();
void connections();
unique_ptr<QString> qSB;
};
#endif