git mv Code\Sandbox\Editor Code/Editor
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright (c) Contributors to the Open 3D Engine Project
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
// Description : Undo for Python function (PySetConfigSpec)
|
||||
|
||||
|
||||
#include "EditorDefs.h"
|
||||
|
||||
#include "UndoConfigSpec.h"
|
||||
|
||||
CUndoConficSpec::CUndoConficSpec(const QString& pUndoDescription)
|
||||
{
|
||||
m_undo = GetIEditor()->GetEditorConfigSpec();
|
||||
m_undoDescription = pUndoDescription;
|
||||
}
|
||||
|
||||
int CUndoConficSpec::GetSize()
|
||||
{
|
||||
return sizeof(*this);
|
||||
}
|
||||
|
||||
QString CUndoConficSpec::GetDescription()
|
||||
{
|
||||
return m_undoDescription;
|
||||
}
|
||||
|
||||
void CUndoConficSpec::Undo(bool bUndo)
|
||||
{
|
||||
if (bUndo)
|
||||
{
|
||||
m_redo = GetIEditor()->GetEditorConfigSpec();
|
||||
}
|
||||
GetIEditor()->SetEditorConfigSpec((ESystemConfigSpec)m_undo, GetIEditor()->GetEditorConfigPlatform());
|
||||
}
|
||||
|
||||
void CUndoConficSpec::Redo()
|
||||
{
|
||||
GetIEditor()->SetEditorConfigSpec((ESystemConfigSpec)m_redo, GetIEditor()->GetEditorConfigPlatform());
|
||||
}
|
||||
Reference in New Issue
Block a user