Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QDeclarativeView / QGLWidget and QDrag
Forum Updated to NodeBB v4.3 + New Features

QDeclarativeView / QGLWidget and QDrag

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 905 Views 1 Watching
  • 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.
  • B Offline
    B Offline
    bunjee
    wrote on last edited by
    #1

    Greetings Qt Community,

    I'm using a QDeclarativeView together with a QGLWidget,

    I noticed that when executing a QDrag on the QDeclarativeView the QWidget::leaveEvent is not called.

    Using a standard viewport instead of QGLWidget fixes the problem.

    As I workaround I'm using the following:
    @// FIXME: Opengl viewport does not send a leave event.
    if (opengl)
    {
    QEvent event(QEvent::Leave);

    QApplication::sendEvent(viewport(), &event);
    

    }

    drag->exec(actions);@
    Has anyone noticed this ?

    I'm using 4.8.3. I'm not sure if Qt 5 is impacted.

    B.A.

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved