| 1402 | } |
| 1403 | |
| 1404 | void |
| 1405 | GuiAppInstance::addMultipleKeyframeIndicatorsAdded(const std::list<SequenceTime> & keys, |
| 1406 | bool emitSignal) |
| 1407 | { |
| 1408 | ///runs only in the main thread |
| 1409 | assert( QThread::currentThread() == qApp->thread() ); |
| 1410 | |
| 1411 | _imp->timelineKeyframes.insert( _imp->timelineKeyframes.begin(), keys.begin(), keys.end() ); |
| 1412 | if (!keys.empty() && emitSignal) { |
| 1413 | Q_EMIT keyframeIndicatorsChanged(); |
| 1414 | } |
| 1415 | } |
| 1416 | |
| 1417 | void |
| 1418 | GuiAppInstance::removeKeyFrameIndicator(SequenceTime time) |
no test coverage detected