| 1384 | } |
| 1385 | |
| 1386 | void |
| 1387 | GuiAppInstance::addMultipleKeyframeIndicatorsAdded(const std::list<SequenceTime> & keys, |
| 1388 | bool emitSignal) |
| 1389 | { |
| 1390 | ///runs only in the main thread |
| 1391 | assert( QThread::currentThread() == qApp->thread() ); |
| 1392 | |
| 1393 | _imp->timelineKeyframes.insert( _imp->timelineKeyframes.begin(), keys.begin(), keys.end() ); |
| 1394 | if (!keys.empty() && emitSignal) { |
| 1395 | Q_EMIT keyframeIndicatorsChanged(); |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | void |
| 1400 | GuiAppInstance::removeKeyFrameIndicator(SequenceTime time) |
no test coverage detected