2015-07-29 07:19:43 -05:00
|
|
|
//##################################################################################################
|
|
|
|
//
|
|
|
|
// Custom Visualization Core library
|
|
|
|
// Copyright (C) 2011-2013 Ceetron AS
|
|
|
|
//
|
|
|
|
// This library may be used under the terms of either the GNU General Public License or
|
|
|
|
// the GNU Lesser General Public License as follows:
|
|
|
|
//
|
|
|
|
// GNU General Public License Usage
|
|
|
|
// This library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <<http://www.gnu.org/licenses/gpl.html>>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
// GNU Lesser General Public License Usage
|
|
|
|
// This library is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
//
|
|
|
|
// See the GNU Lesser General Public License at <<http://www.gnu.org/licenses/lgpl-2.1.html>>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
//##################################################################################################
|
|
|
|
|
|
|
|
#include "cafCmdDeleteItemFeature.h"
|
|
|
|
|
|
|
|
#include "cafCmdExecCommandManager.h"
|
|
|
|
#include "cafCmdDeleteItemExec.h"
|
|
|
|
#include "cafCmdDeleteItemExecData.h"
|
|
|
|
#include "cafCmdSelectionHelper.h"
|
|
|
|
#include "cafPdmReferenceHelper.h"
|
|
|
|
#include "cafSelectionManager.h"
|
|
|
|
|
|
|
|
#include "cafPdmChildArrayField.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
|
|
|
namespace caf
|
|
|
|
{
|
|
|
|
CAF_CMD_SOURCE_INIT(CmdDeleteItemFeature, "PdmListField_DeleteItem");
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
CmdExecuteCommand* CmdDeleteItemFeature::createExecuteCommand()
|
|
|
|
{
|
|
|
|
std::vector<PdmUiItem*> items;
|
|
|
|
SelectionManager::instance()->selectedItems(items, SelectionManager::CURRENT);
|
|
|
|
|
|
|
|
caf::PdmChildArrayFieldHandle* childArrayFieldHandle = caf::SelectionManager::instance()->activeChildArrayFieldHandle();
|
|
|
|
if (!childArrayFieldHandle) return NULL;
|
|
|
|
|
|
|
|
caf::PdmObjectHandle* currentPdmObject = NULL;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < items.size(); i++)
|
|
|
|
{
|
|
|
|
if (dynamic_cast<caf::PdmUiObjectHandle*>(items[i]))
|
|
|
|
{
|
2015-08-14 09:15:49 -05:00
|
|
|
currentPdmObject = dynamic_cast<caf::PdmUiObjectHandle*>(items[i])->objectHandle();
|
2015-07-29 07:19:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!currentPdmObject) return NULL;
|
|
|
|
|
|
|
|
int indexAfter = -1;
|
|
|
|
|
|
|
|
std::vector<PdmObjectHandle*> childObjects;
|
|
|
|
childArrayFieldHandle->childObjects(&childObjects);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < childObjects.size(); i++)
|
|
|
|
{
|
|
|
|
if (childObjects[i] == currentPdmObject)
|
|
|
|
{
|
|
|
|
indexAfter = static_cast<int>(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Did not find currently selected pdm object in the current list field
|
2017-03-08 01:19:51 -06:00
|
|
|
CAF_ASSERT(indexAfter != -1);
|
2015-07-29 07:19:43 -05:00
|
|
|
|
|
|
|
CmdDeleteItemExec* executeCmd = new CmdDeleteItemExec(SelectionManager::instance()->notificationCenter());
|
|
|
|
|
|
|
|
CmdDeleteItemExecData* data = executeCmd->commandData();
|
|
|
|
data->m_rootObject = PdmReferenceHelper::findRoot(childArrayFieldHandle);
|
|
|
|
data->m_pathToField = PdmReferenceHelper::referenceFromRootToField(data->m_rootObject, childArrayFieldHandle);
|
|
|
|
data->m_indexToObject = indexAfter;
|
|
|
|
|
|
|
|
return executeCmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool CmdDeleteItemFeature::isCommandEnabled()
|
|
|
|
{
|
|
|
|
caf::PdmObject* currentPdmObject = dynamic_cast<caf::PdmObject*>(caf::SelectionManager::instance()->selectedItem(caf::SelectionManager::CURRENT));
|
|
|
|
if (!currentPdmObject) return false;
|
|
|
|
|
|
|
|
caf::PdmChildArrayFieldHandle* childArrayFieldHandle = caf::SelectionManager::instance()->activeChildArrayFieldHandle();
|
|
|
|
if (!childArrayFieldHandle) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void CmdDeleteItemFeature::onActionTriggered(bool isChecked)
|
|
|
|
{
|
|
|
|
if (isCommandEnabled())
|
|
|
|
{
|
|
|
|
CmdExecuteCommand* exeCmd = createExecuteCommand();
|
|
|
|
if (exeCmd)
|
|
|
|
{
|
|
|
|
CmdExecCommandManager::instance()->processExecuteCommand(exeCmd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-08 01:19:51 -06:00
|
|
|
CAF_ASSERT(0);
|
2015-07-29 07:19:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void CmdDeleteItemFeature::setupActionLook(QAction* actionToSetup)
|
|
|
|
{
|
|
|
|
actionToSetup->setText("Delete object");
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace caf
|