Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    Unsolved Drag and drop from QToolBar to QGraphicsView is not working properly

    General and Desktop
    2
    2
    709
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      surajeet last edited by surajeet

      I am working on a project using Qt C++ . I have a QToolBar which contains some QButtons (read as QAction) and a QGraphicsView (the whole bottom part).
      It looks like this.

      enter image description here

      Now, I want to drag a QButton (read as QAction) from the QToolBar into central window (which actually is QGraphicsView) of my application.

      Till now I have written the following SLOT for corresponding QAction to enable dragging and dropping.

      /* Send_Message is one of the actions */
      void CTestBuilderApp::on_actionSend_Message_triggered()
      {    
          QByteArray itemData;    
          QDataStream dataStream(&itemData, QIODevice::WriteOnly);    
          emit selectionState(None); 
      
          dataStream << "Send Message";    
          
          QMimeData *mimeData = new QMimeData;    
          mimeData->setData("application/x-dnditemdata", itemData);    
          
          QDrag *drag = new QDrag(this);    
          drag->setMimeData(mimeData);    
          drag->setPixmap(ui->ToolBox->actions().at->icon().pixmap(48,48));    
          drag->exec(Qt::CopyAction, Qt::CopyAction);    
          qDebug()<<"drag complete";
      } 
      

      But, as this SLOT is being called only when I am clicking on the QAction, I am not getting the proper effect of Drag and Drop. When I am clicking the button, only then the dragging is starting. One click on the QAction and then another click on QGraphicsView is doing the job, but it's not what it's supposed to be for drag & drop. It's not starting on pressing and then dragging.

      Is there any way out to make this code work? I am searching for some SLOT that get called as soon as I press on the QAction i.e. it does not wait for Mouse Release to work.

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi,

        If you want to customise the drag and drop you'll need to either use a custom QToolBar implementing the technique described in the Drag and Drop documentation.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply Reply Quote 0
        • First post
          Last post