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.
|
|
|
|
//
|
|
|
|
//##################################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cafPdmPointer.h"
|
|
|
|
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
|
|
namespace caf
|
|
|
|
{
|
|
|
|
|
|
|
|
class PdmUiItem;
|
|
|
|
class NotificationCenter;
|
|
|
|
class PdmChildArrayFieldHandle;
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class SelectionManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum SelectionRole
|
|
|
|
{
|
|
|
|
APPLICATION_GLOBAL,
|
|
|
|
CURRENT,
|
|
|
|
UNDEFINED
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
static SelectionManager* instance();
|
|
|
|
|
|
|
|
void setNotificationCenter(NotificationCenter* notificationCenter);
|
|
|
|
NotificationCenter* notificationCenter();
|
|
|
|
|
|
|
|
void setActiveChildArrayFieldHandle(PdmChildArrayFieldHandle* childArray);
|
|
|
|
PdmChildArrayFieldHandle* activeChildArrayFieldHandle();
|
|
|
|
|
|
|
|
void setPdmRootObject(PdmObjectHandle* root);
|
|
|
|
PdmObjectHandle* pdmRootObject() { return m_rootObject; }
|
|
|
|
|
|
|
|
PdmUiItem* selectedItem(int role = SelectionManager::APPLICATION_GLOBAL);
|
|
|
|
void setSelectedItem(PdmUiItem* item, int role = SelectionManager::APPLICATION_GLOBAL);
|
|
|
|
|
|
|
|
void selectedItems(std::vector<PdmUiItem*>& items, int role = SelectionManager::APPLICATION_GLOBAL);
|
|
|
|
void setSelectedItems(const std::vector<PdmUiItem*>& items, int role = SelectionManager::APPLICATION_GLOBAL);
|
|
|
|
|
2015-08-13 13:22:49 -05:00
|
|
|
void selectionAsReferences(std::vector<QString>& referenceList, int role = SelectionManager::APPLICATION_GLOBAL) const;
|
|
|
|
void setSelectionFromReferences(const std::vector<QString>& referenceList, int role = SelectionManager::APPLICATION_GLOBAL);
|
2015-07-29 07:19:43 -05:00
|
|
|
|
|
|
|
void clearAll();
|
|
|
|
void clear(int role);
|
|
|
|
void removeObjectFromAllSelections(PdmObjectHandle* pdmObject);
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void objectsByType(std::vector<T*>* typedObjects, int role = SelectionManager::APPLICATION_GLOBAL)
|
|
|
|
{
|
|
|
|
std::vector<PdmUiItem*> items;
|
|
|
|
this->selectedItems(items, role);
|
|
|
|
for (size_t i = 0; i < items.size(); i++)
|
|
|
|
{
|
|
|
|
T* obj = dynamic_cast<T*>(items[i]);
|
|
|
|
if (obj) typedObjects->push_back(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
SelectionManager();
|
|
|
|
void notifySelectionChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector < std::vector< std::pair<PdmPointer<PdmObjectHandle>, PdmUiItem*> > > m_selectionForRole;
|
|
|
|
|
|
|
|
NotificationCenter* m_notificationCenter;
|
|
|
|
PdmChildArrayFieldHandle* m_activeChildArrayFieldHandle;
|
|
|
|
PdmPointer<PdmObjectHandle> m_rootObject;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace caf
|