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. HWND on Win32 API to Qt widget
Qt 6.11 is out! See what's new in the release blog

HWND on Win32 API to Qt widget

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 3.5k 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.
  • D Offline
    D Offline
    delio
    wrote on last edited by
    #1

    How to convert HWND on Win32 API to Qt widget?
    I know that I have to use QWidget::winId().
    but I don't know how to write it
    Please give me an example.
    Thanks

    1 Reply Last reply
    0
    • S Offline
      S Offline
      ScottR
      wrote on last edited by
      #2

      If you are asking how to find the QWidget which has HWND x,
      @
      QWidget* theWidget = QWidget::find((WId)x);
      @

      If you are asking how to find the HWND associated with a QWidget x,
      @
      HWND foo = x.effectiveWinId ();
      @

      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