switched from qsettings to json added editng of actors
This commit is contained in:
23
src/ui/actorwidgets/timeractorwidget.h
Normal file
23
src/ui/actorwidgets/timeractorwidget.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef TIMERACTORWIDGET_H
|
||||
#define TIMERACTORWIDGET_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "../../actors/timeractor.h"
|
||||
|
||||
namespace Ui {
|
||||
class TimerActorWidget;
|
||||
}
|
||||
|
||||
class TimerActorWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit TimerActorWidget(TimerActor* actor, QWidget *parent = nullptr);
|
||||
~TimerActorWidget();
|
||||
|
||||
private:
|
||||
Ui::TimerActorWidget *ui;
|
||||
};
|
||||
|
||||
#endif // TIMERACTORWIDGET_H
|
Reference in New Issue
Block a user