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

28 lines
554 B
C++

#ifndef COMMONWINDOW_H_
#define COMMONWINDOW_H_
#include<QDialog>
#include<QHBoxLayout>
#include<QVBoxLayout>
#include<QComboBox>
#include<QPushButton>
#include<memory>
using std::unique_ptr;
class CommonWindow
{
public:
CommonWindow() = default;
~CommonWindow() = default;
protected:
virtual void connections()=0;
unique_ptr<QComboBox> selectionBox;
unique_ptr<QPushButton> actionButton;
unique_ptr<QHBoxLayout> mainLayout;
unique_ptr<QVBoxLayout> subLayoutOne;
unique_ptr<QVBoxLayout> subLayoutTwo;
int windowHeight, windowWidth;
};
#endif