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. How to enable context help button in QDockWidget ?

How to enable context help button in QDockWidget ?

Scheduled Pinned Locked Moved Solved General and Desktop
2 Posts 2 Posters 476 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.
  • P Offline
    P Offline
    PetQter
    wrote on last edited by
    #1

    I tried to enable context help button in QDockWidget derived class:

    Qt::WindowFlags flags = m_myDock->windowFlags();
    flags = flags | Qt::WindowContextHelpButtonHint;
    m_myDock->setWindowFlags(flags);
    

    It is not functional. Still I see close button and maximize button. What else is need to display context help button ?

    1 Reply Last reply
    0
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi
      Im not sure WindowContextHelpButtonHint works with QDockWidget.
      ( docs says its for dialogs)
      http://doc.qt.io/qt-5/qt.html#WindowType-enum

      You could use
      http://doc.qt.io/qt-5/qdockwidget.html#titleBarWidget
      and implement this feature ( or close to) yourself.

      1 Reply Last reply
      1

      • Login

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