File: timecodeeffect.h

package info (click to toggle)
olive-editor 20181223-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 2,844 kB
  • sloc: cpp: 20,147; xml: 315; ansic: 16; makefile: 11
file content (29 lines) | stat: -rw-r--r-- 610 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef TIMECODEEFFECT_H
#define TIMECODEEFFECT_H

#include "project/effect.h"

#include <QFont>
#include <QImage>
class QOpenGLTexture;

class TimecodeEffect : public Effect {
	Q_OBJECT
public:
    TimecodeEffect(Clip* c, const EffectMeta *em);
    void redraw(double timecode);
    EffectField * scale_val;
    EffectField * color_val;
    EffectField * color_bg_val;
    EffectField * bg_alpha;
    EffectField * offset_x_val;
    EffectField * offset_y_val;
    EffectField * prepend_text;
    EffectField * tc_select;

private:
    QFont font;
    QString display_timecode;
};

#endif // TIMECODEEFFECT_H