Lines Matching refs:timecode

159 void TextEffect::redraw(double timecode) {  in redraw()  argument
160 if (size_val->GetDoubleAt(timecode) <= 0) { in redraw()
164 QColor bkg = set_color_button->GetColorAt(timecode); in redraw()
170 int padding = qRound(padding_field->GetDoubleAt(timecode)); in redraw()
176 font.setFamily(set_font_combobox->GetFontAt(timecode)); in redraw()
177 font.setPointSize(qRound(size_val->GetDoubleAt(timecode))); in redraw()
181 QStringList lines = text_val->GetStringAt(timecode).split('\n'); in redraw()
184 if (word_wrap_field->GetBoolAt(timecode)) { in redraw()
213 switch (halign_field->GetValueAt(timecode).toInt()) { in redraw()
245 switch (valign_field->GetValueAt(timecode).toInt()) { in redraw()
261 …path.translate(position_x->GetDoubleAt(timecode) + padding, position_y->GetDoubleAt(timecode) + pa… in redraw()
264 if (shadow_bool->GetBoolAt(timecode)) { in redraw()
268 double angle = shadow_angle->GetDoubleAt(timecode) * M_PI / 180.0; in redraw()
269 double distance = qFloor(shadow_distance->GetDoubleAt(timecode)); in redraw()
276 QColor col = shadow_color->GetColorAt(timecode); in redraw()
280 col.setAlphaF(shadow_opacity->GetDoubleAt(timecode)*0.01); in redraw()
284 int blurSoftness = qFloor(shadow_softness->GetDoubleAt(timecode)); in redraw()
289 int outline_width_val = qCeil(outline_width->GetDoubleAt(timecode)); in redraw()
290 if (outline_bool->GetBoolAt(timecode) && outline_width_val > 0) { in redraw()
291 QPen outline(outline_color->GetColorAt(timecode)); in redraw()
300 p.setBrush(set_color_button->GetColorAt(timecode)); in redraw()