switched from qsettings to json added editng of actors

This commit is contained in:
2019-06-06 21:19:12 +02:00
parent b04fbfb5bc
commit df27b622a0
141 changed files with 4402 additions and 5068 deletions

View 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