Add UI for DIDKIT.
This commit is contained in:
21
DIDKit/App/MenuAction/ClearPropertyAction.h
Normal file
21
DIDKit/App/MenuAction/ClearPropertyAction.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef CLEARPROPERTYACTION_H
|
||||
#define CLEARPROPERTYACTION_H
|
||||
|
||||
#include <QAction>
|
||||
|
||||
class PropertyTableModel;
|
||||
|
||||
class ClearPropertyAction : public QAction
|
||||
{
|
||||
public:
|
||||
ClearPropertyAction(const QString& aName,PropertyTableModel* aModel, QWidget* aParent = nullptr);
|
||||
~ClearPropertyAction() override;
|
||||
|
||||
private:
|
||||
void executeAction();
|
||||
|
||||
private:
|
||||
PropertyTableModel* mModel;
|
||||
};
|
||||
|
||||
#endif // CLEARPROPERTYACTION_H
|
||||
Reference in New Issue
Block a user