| 1469 | } |
| 1470 | |
| 1471 | void |
| 1472 | GuiAppInstance::addUserMultipleKeyframeIndicatorsAdded(const std::list<SequenceTime> & keys, |
| 1473 | bool emitSignal) |
| 1474 | { |
| 1475 | ///runs only in the main thread |
| 1476 | assert( QThread::currentThread() == qApp->thread() ); |
| 1477 | |
| 1478 | _imp->timelineUserKeys.insert( _imp->timelineUserKeys.begin(), keys.begin(), keys.end() ); |
| 1479 | if (!keys.empty() && emitSignal) { |
| 1480 | Q_EMIT keyframeIndicatorsChanged(); |
| 1481 | } |
| 1482 | } |
| 1483 | |
| 1484 | void |
| 1485 | GuiAppInstance::removeUserKeyFrameIndicator(SequenceTime time) |
no test coverage detected