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
amazing-username cec1e0bbb6 Code cleanup
2018-02-26 22:01:00 -06:00

29 lines
605 B
C++

#ifndef VIEWINGWINDOW_H_
#define VIEWINGWINDOW_H_
#include<QVBoxLayout>
#include<QTableWidget>
#include<QStringList>
#include<QLineEdit>
#include<QPushButton>
#include<memory>
using std::unique_ptr;
class ViewingWindow
{
public:
ViewingWindow() = default;
~ViewingWindow() = default;
protected:
unique_ptr<QVBoxLayout> subLayoutGoonOne;
unique_ptr<QVBoxLayout> subLayoutGoonTwo;
unique_ptr<QLineEdit> crypticText;
unique_ptr<QTableWidget> elementView;
unique_ptr<QPushButton> closeButton;
unique_ptr<QPushButton> generateNewKeys;
QStringList tableHeader;
int rowCount, columnCount;
};
#endif