finished moving field data retrieving to row

This commit is contained in:
itsmattkc
2019-04-11 00:02:50 +10:00
parent 14ae903000
commit d3bc1d4f06
78 changed files with 1189 additions and 676 deletions
+33
View File
@@ -0,0 +1,33 @@
#ifndef STRINGINPUT_H
#define STRINGINPUT_H
#include "effects/effectrow.h"
class StringInput : public EffectRow
{
Q_OBJECT
public:
StringInput(Effect* parent,
const QString& id,
const QString& name,
bool rich_text = true,
bool savable = true,
bool keyframable = true);
/**
* @brief Get the string at the given timecode
*
* Wrappre for StringField::GetStringAt().
*
* @param timecode
*
* The timecode to retrieve the string at
*
* @return
*
* The string at this timecode
*/
QString GetStringAt(double timecode);
};
#endif // STRINGINPUT_H