git-svn-id: svn://db.shs.com.ru/libs@473 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2018-12-19 07:34:10 +00:00
parent 907e553a4a
commit 521c32eccc
8 changed files with 150 additions and 11 deletions

View File

@@ -0,0 +1,27 @@
#ifndef PROPERTYSTORAGEEDITOR_H
#define PROPERTYSTORAGEEDITOR_H
#include <QWidget>
#include "propertystorage.h"
class PropertyStorageEditor: public QWidget {
Q_OBJECT
public:
explicit PropertyStorageEditor(QWidget * parent = 0);
~PropertyStorageEditor();
void clear();
bool isEmpty() const;
void setStorage(PropertyStorage * s);
void applyProperties();
private:
QList<QWidget*> _widgets;
PropertyStorage * storage;
signals:
void resetStorageRequest(PropertyStorage * );
};
#endif // PROPERTYSTORAGEEDITOR_H