mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
#ifndef CSV_WORLD_DRAGDROPUTILS_HPP
|
|
#define CSV_WORLD_DRAGDROPUTILS_HPP
|
|
|
|
#include "../../model/world/columnbase.hpp"
|
|
|
|
class QDropEvent;
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class TableMimeData;
|
|
class UniversalId;
|
|
}
|
|
|
|
namespace CSVWorld
|
|
{
|
|
namespace DragDropUtils
|
|
{
|
|
const CSMWorld::TableMimeData* getTableMimeData(const QDropEvent& event);
|
|
|
|
bool canAcceptData(const QDropEvent& event, CSMWorld::ColumnBase::Display type);
|
|
///< Checks whether the \a event contains a valid CSMWorld::TableMimeData that holds the \a type
|
|
|
|
bool isTopicOrJournal(const QDropEvent& event, CSMWorld::ColumnBase::Display type);
|
|
|
|
bool isInfo(const QDropEvent& event, CSMWorld::ColumnBase::Display type);
|
|
///< Info types can be dragged to sort the info table
|
|
|
|
CSMWorld::UniversalId getAcceptedData(const QDropEvent& event, CSMWorld::ColumnBase::Display type);
|
|
///< Gets the accepted data from the \a event using the \a type
|
|
///< \return Type_None if the \a event data doesn't holds the \a type
|
|
}
|
|
}
|
|
|
|
#endif
|