cleanup and included closing footage viewer if footage is in use
This commit is contained in:
@@ -604,41 +604,4 @@ void ProjectViewModel::RemoveItemCommand::undo_internal()
|
||||
model_->AddChild(parent_, item_);
|
||||
}
|
||||
|
||||
ProjectViewModel::OfflineFootageCommand::OfflineFootageCommand(ProjectViewModel* model, ItemPtr item,
|
||||
QMap<Node*, StreamPtr> nodes, QUndoCommand* parent) :
|
||||
UndoCommand(parent),
|
||||
model_(model),
|
||||
item_(item),
|
||||
nodes_(nodes)
|
||||
{
|
||||
}
|
||||
|
||||
Project *ProjectViewModel::OfflineFootageCommand::GetRelevantProject() const
|
||||
{
|
||||
return model_->project();
|
||||
}
|
||||
|
||||
void ProjectViewModel::OfflineFootageCommand::redo_internal()
|
||||
{
|
||||
QMap<Node *, StreamPtr>::const_iterator it = nodes_.constBegin();
|
||||
while (it != nodes_.constEnd()) {
|
||||
static_cast<MediaInput *>(it.key())->SetFootage(nullptr);
|
||||
++it;
|
||||
}
|
||||
|
||||
parent_ = item_->parent();
|
||||
model_->RemoveChild(parent_, item_.get());
|
||||
}
|
||||
|
||||
void ProjectViewModel::OfflineFootageCommand::undo_internal()
|
||||
{
|
||||
model_->AddChild(parent_, item_);
|
||||
|
||||
QMap<Node *, StreamPtr>::const_iterator it = nodes_.constBegin();
|
||||
while (it != nodes_.constEnd()) {
|
||||
static_cast<MediaInput *>(it.key())->SetFootage(it.value());
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
OLIVE_NAMESPACE_EXIT
|
||||
|
||||
Reference in New Issue
Block a user