Editor dialogs and windows
This commit is contained in:
parent
0622e795e4
commit
1bda2c4047
22 changed files with 904 additions and 0 deletions
22
storageeditdialog.h
Normal file
22
storageeditdialog.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef STORAGEEDITDIALOG_H
|
||||
#define STORAGEEDITDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class StorageEditDialog;
|
||||
}
|
||||
|
||||
class StorageEditDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit StorageEditDialog(QWidget *parent = nullptr);
|
||||
~StorageEditDialog();
|
||||
|
||||
private:
|
||||
Ui::StorageEditDialog *ui;
|
||||
};
|
||||
|
||||
#endif // STORAGEEDITDIALOG_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue