##// END OF EJS Templates
Drag of product
Drag of product

File last commit:

r868:86e05857e5c8
r868:86e05857e5c8
Show More
DragDropHelper.cpp
295 lines | 9.7 KiB | text/x-c | CppLexer
/ gui / src / DragDropHelper.cpp
New helper class for the drag&drop
r837 #include "DragDropHelper.h"
#include "SqpApplication.h"
drop of variables in the visualization
r850 #include "Visualization/VisualizationDragDropContainer.h"
Format changes
r844 #include "Visualization/VisualizationDragWidget.h"
drop of variables in the visualization
r850 #include "Visualization/VisualizationWidget.h"
#include "Visualization/operations/FindVariableOperation.h"
#include "Variable/VariableController.h"
#include "Common/MimeTypesDef.h"
#include "Common/VisualizationDef.h"
New helper class for the drag&drop
r837
Format changes
r844 #include <QDir>
New helper class for the drag&drop
r837 #include <QDragEnterEvent>
Format changes
r844 #include <QDragMoveEvent>
New helper class for the drag&drop
r837 #include <QScrollArea>
Format changes
r844 #include <QScrollBar>
New helper class for the drag&drop
r837 #include <QTimer>
Format changes
r844 #include <QVBoxLayout>
New helper class for the drag&drop
r837
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 const int SCROLL_SPEED = 5;
const int SCROLL_ZONE_SIZE = 50;
drop of variables in the visualization
r850 Q_LOGGING_CATEGORY(LOG_DragDropHelper, "DragDrophelper")
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 struct DragDropScroller::DragDropScrollerPrivate {
Format changes
r844 QList<QScrollArea *> m_ScrollAreas;
QScrollArea *m_CurrentScrollArea = nullptr;
std::unique_ptr<QTimer> m_Timer = nullptr;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840
Format changes
r844 enum class ScrollDirection { up, down, unknown };
ScrollDirection m_Direction = ScrollDirection::unknown;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840
Format changes
r844 explicit DragDropScrollerPrivate() : m_Timer{std::make_unique<QTimer>()}
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 {
Format changes
r844 m_Timer->setInterval(0);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
};
Format changes
r844 DragDropScroller::DragDropScroller(QObject *parent)
: QObject{parent}, impl{spimpl::make_unique_impl<DragDropScrollerPrivate>()}
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 {
Format changes
r844 connect(impl->m_Timer.get(), &QTimer::timeout, this, &DragDropScroller::onTimer);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
Format changes
r844 void DragDropScroller::addScrollArea(QScrollArea *scrollArea)
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 {
Format changes
r844 impl->m_ScrollAreas << scrollArea;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 scrollArea->viewport()->setAcceptDrops(true);
}
Format changes
r844 void DragDropScroller::removeScrollArea(QScrollArea *scrollArea)
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 {
Format changes
r844 impl->m_ScrollAreas.removeAll(scrollArea);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 scrollArea->viewport()->setAcceptDrops(false);
}
bool DragDropScroller::eventFilter(QObject *obj, QEvent *event)
{
Format changes
r844 if (event->type() == QEvent::DragMove) {
auto w = static_cast<QWidget *>(obj);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840
Format changes
r844 if (impl->m_CurrentScrollArea && impl->m_CurrentScrollArea->isAncestorOf(w)) {
auto moveEvent = static_cast<QDragMoveEvent *>(event);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840
auto pos = moveEvent->pos();
Format changes
r844 if (impl->m_CurrentScrollArea->viewport() != w) {
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 auto globalPos = w->mapToGlobal(moveEvent->pos());
Format changes
r844 pos = impl->m_CurrentScrollArea->viewport()->mapFromGlobal(globalPos);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
Format changes
r844 auto isInTopZone = pos.y() > impl->m_CurrentScrollArea->viewport()->size().height()
- SCROLL_ZONE_SIZE;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 auto isInBottomZone = pos.y() < SCROLL_ZONE_SIZE;
Format changes
r844 if (!isInTopZone && !isInBottomZone) {
impl->m_Direction = DragDropScrollerPrivate::ScrollDirection::unknown;
impl->m_Timer->stop();
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
Format changes
r844 else if (!impl->m_Timer->isActive()) {
impl->m_Direction = isInTopZone ? DragDropScrollerPrivate::ScrollDirection::up
: DragDropScrollerPrivate::ScrollDirection::down;
impl->m_Timer->start();
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
}
}
Format changes
r844 else if (event->type() == QEvent::DragEnter) {
auto w = static_cast<QWidget *>(obj);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840
Format changes
r844 for (auto scrollArea : impl->m_ScrollAreas) {
if (impl->m_CurrentScrollArea != scrollArea && scrollArea->isAncestorOf(w)) {
auto enterEvent = static_cast<QDragEnterEvent *>(event);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 enterEvent->acceptProposedAction();
enterEvent->setDropAction(Qt::IgnoreAction);
Format changes
r844 impl->m_CurrentScrollArea = scrollArea;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 break;
}
}
}
Format changes
r844 else if (event->type() == QEvent::DragLeave) {
if (impl->m_CurrentScrollArea) {
if (!QRect(QPoint(), impl->m_CurrentScrollArea->size())
.contains(impl->m_CurrentScrollArea->mapFromGlobal(QCursor::pos()))) {
impl->m_CurrentScrollArea = nullptr;
impl->m_Direction = DragDropScrollerPrivate::ScrollDirection::unknown;
impl->m_Timer->stop();
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
}
}
Format changes
r844 else if (event->type() == QEvent::Drop) {
if (impl->m_CurrentScrollArea) {
impl->m_CurrentScrollArea = nullptr;
impl->m_Direction = DragDropScrollerPrivate::ScrollDirection::unknown;
impl->m_Timer->stop();
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
}
return false;
}
void DragDropScroller::onTimer()
{
Format changes
r844 if (impl->m_CurrentScrollArea) {
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 auto mvt = 0;
Format changes
r844 switch (impl->m_Direction) {
case DragDropScrollerPrivate::ScrollDirection::up:
mvt = SCROLL_SPEED;
break;
case DragDropScrollerPrivate::ScrollDirection::down:
mvt = -SCROLL_SPEED;
break;
default:
break;
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
Format changes
r844 impl->m_CurrentScrollArea->verticalScrollBar()->setValue(
impl->m_CurrentScrollArea->verticalScrollBar()->value() + mvt);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
}
New helper class for the drag&drop
r837
struct DragDropHelper::DragDropHelperPrivate {
Format changes
r844 VisualizationDragWidget *m_CurrentDragWidget = nullptr;
std::unique_ptr<QWidget> m_PlaceHolder = nullptr;
std::unique_ptr<DragDropScroller> m_DragDropScroller = nullptr;
QString m_ImageTempUrl; // Temporary file for image url generated by the drag & drop. Not using
// QTemporaryFile to have a name which is not generated.
New helper class for the drag&drop
r837
explicit DragDropHelperPrivate()
Format changes
r844 : m_PlaceHolder{std::make_unique<QWidget>()},
m_DragDropScroller{std::make_unique<DragDropScroller>()}
New helper class for the drag&drop
r837 {
Format changes
r844 m_PlaceHolder->setStyleSheet("background-color: #BBD5EE; border:2px solid #2A7FD4");
sqpApp->installEventFilter(m_DragDropScroller.get());
New helper class for the drag&drop
r837
Format changes
r844 m_ImageTempUrl = QDir::temp().absoluteFilePath("Scqlop_graph.png");
New helper class for the drag&drop
r837 }
void preparePlaceHolder() const
{
Format changes
r844 if (m_CurrentDragWidget) {
m_PlaceHolder->setMinimumSize(m_CurrentDragWidget->size());
m_PlaceHolder->setSizePolicy(m_CurrentDragWidget->sizePolicy());
New helper class for the drag&drop
r837 }
Format changes
r844 else {
drop of variables in the visualization
r850 // Configuration of the placeHolder when there is no dragWidget
// (for instance with a drag from a variable)
Move the GRAPH_MINIMUM_HEIGHT constant in a place accessible everywhere and use it in the drag&drop
r851 m_PlaceHolder->setMinimumSize(0, GRAPH_MINIMUM_HEIGHT);
drop of variables in the visualization
r850 m_PlaceHolder->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
New helper class for the drag&drop
r837 }
}
};
MR for linux compilation
r845 DragDropHelper::DragDropHelper() : impl{spimpl::make_unique_impl<DragDropHelperPrivate>()}
{
}
New helper class for the drag&drop
r837
DragDropHelper::~DragDropHelper()
{
Format changes
r844 QFile::remove(impl->m_ImageTempUrl);
New helper class for the drag&drop
r837 }
drop of variables in the visualization
r850 void DragDropHelper::resetDragAndDrop()
{
setCurrentDragWidget(nullptr);
}
New helper class for the drag&drop
r837 void DragDropHelper::setCurrentDragWidget(VisualizationDragWidget *dragWidget)
{
Format changes
r844 impl->m_CurrentDragWidget = dragWidget;
New helper class for the drag&drop
r837 }
VisualizationDragWidget *DragDropHelper::getCurrentDragWidget() const
{
Format changes
r844 return impl->m_CurrentDragWidget;
New helper class for the drag&drop
r837 }
Format changes
r844 QWidget &DragDropHelper::placeHolder() const
New helper class for the drag&drop
r837 {
Format changes
r844 return *impl->m_PlaceHolder;
New helper class for the drag&drop
r837 }
void DragDropHelper::insertPlaceHolder(QVBoxLayout *layout, int index)
{
removePlaceHolder();
impl->preparePlaceHolder();
Format changes
r844 layout->insertWidget(index, impl->m_PlaceHolder.get());
impl->m_PlaceHolder->show();
New helper class for the drag&drop
r837 }
void DragDropHelper::removePlaceHolder()
{
Format changes
r844 auto parentWidget = impl->m_PlaceHolder->parentWidget();
if (parentWidget) {
parentWidget->layout()->removeWidget(impl->m_PlaceHolder.get());
impl->m_PlaceHolder->setParent(nullptr);
impl->m_PlaceHolder->hide();
New helper class for the drag&drop
r837 }
}
bool DragDropHelper::isPlaceHolderSet() const
{
Format changes
r844 return impl->m_PlaceHolder->parentWidget();
New helper class for the drag&drop
r837 }
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 void DragDropHelper::addDragDropScrollArea(QScrollArea *scrollArea)
{
Format changes
r844 impl->m_DragDropScroller->addScrollArea(scrollArea);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
void DragDropHelper::removeDragDropScrollArea(QScrollArea *scrollArea)
{
Format changes
r844 impl->m_DragDropScroller->removeScrollArea(scrollArea);
Manage the scroll of the tab QScrollArea during a drag&drop operation
r840 }
Format changes
r844 QUrl DragDropHelper::imageTemporaryUrl(const QImage &image) const
New helper class for the drag&drop
r837 {
Format changes
r844 image.save(impl->m_ImageTempUrl);
return QUrl::fromLocalFile(impl->m_ImageTempUrl);
New helper class for the drag&drop
r837 }
drop of variables in the visualization
r850
bool DragDropHelper::checkMimeDataForVisualization(const QMimeData *mimeData,
VisualizationDragDropContainer *dropContainer)
{
Drag of product
r868 if (!mimeData || !dropContainer) {
qCWarning(LOG_DragDropHelper()) << QObject::tr(
"DragDropHelper::checkMimeDataForVisualization, invalid input parameters.");
Q_ASSERT(false);
}
drop of variables in the visualization
r850 auto result = true;
if (mimeData->hasFormat(MIME_TYPE_VARIABLE_LIST)) {
auto variables = sqpApp->variableController().variablesForMimeData(
mimeData->data(MIME_TYPE_VARIABLE_LIST));
if (variables.count() == 1) {
// Check that the viariable is not already in a graph
// Search for the top level VisualizationWidget
auto parent = dropContainer->parentWidget();
while (parent && qobject_cast<VisualizationWidget *>(parent) == nullptr) {
parent = parent->parentWidget();
}
if (parent) {
auto visualizationWidget = static_cast<VisualizationWidget *>(parent);
FindVariableOperation findVariableOperation{variables.first()};
visualizationWidget->accept(&findVariableOperation);
auto variableContainers = findVariableOperation.result();
if (!variableContainers.empty()) {
result = false;
}
}
else {
qCWarning(LOG_DragDropHelper()) << QObject::tr(
"DragDropHelper::checkMimeDataForVisualization, the parent "
"VisualizationWidget cannot be found.");
result = false;
}
}
else {
result = false;
}
}
return result;
}