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