How can I hide/delete the "?" help button on the "title bar" of a Qt Dialog?

QtQt4Qdialog

Qt Problem Overview


I am using Qt Dialogs in one of my application. I need to hide/delete the help button. But i am not able to locate where exactly I get the handle to his help button. Not sure if its a particular flag on the Qt window.

Qt Solutions


Solution 1 - Qt

// remove question mark from the title bar
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);

Solution 2 - Qt

By default the Qt::WindowContextHelpButtonHint flag is added to dialogs. You can control this with the WindowFlags parameter to the dialog constructor.

For instance you can specify only the TitleHint and SystemMenu flags by doing:

QDialog *d = new QDialog(0, Qt::WindowSystemMenuHint | Qt::WindowTitleHint);
d->exec();

If you add the Qt::WindowContextHelpButtonHint flag you will get the help button back.

In PyQt you can do:

from PyQt4 import QtGui, QtCore
app = QtGui.QApplication([])
d = QtGui.QDialog(None, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint)
d.exec_()

More details on window flags can be found on the WindowType enum in the Qt documentation.

Solution 3 - Qt

As of Qt 5.10, you can disable these buttons globally with a single QApplication attribute!

QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton);

Solution 4 - Qt

Ok , I found a way to do this.

It does deal with the Window flags. So here is the code i used:

Qt::WindowFlags flags = windowFlags()

Qt::WindowFlags helpFlag =
Qt::WindowContextHelpButtonHint;
 
flags = flags & (~helpFlag);   
setWindowFlags(flags);

But by doing this sometimes the icon of the dialog gets reset. So to make sure the icon of the dialog does not change you can add two lines.

QIcon icon = windowIcon();
 
Qt::WindowFlags flags = windowFlags();

Qt::WindowFlags helpFlag =
Qt::WindowContextHelpButtonHint;
 
flags = flags & (~helpFlag);   

setWindowFlags(flags);

setWindowIcon(icon);

Solution 5 - Qt

I ran into this issue in Windows 7, Qt 5.2, and the flags combination that worked best for me was this:

Qt::WindowTitleHint | Qt::WindowCloseButtonHint

This gives me a working close button but no question mark help button. Using just Qt::WindowTitleHint or Qt::WindowSystemMenuHint got rid of the help button, but it also disabled the close button.

As Michael Bishop suggested, it was playing with the windowflags example that led me to this combination. Thanks!

Solution 6 - Qt

The answers listed here will work, but to answer it yourself, I'd recommend you run the example program $QTDIR/examples/widgets/windowflags. That will allow you to test all the configurations of window flags and their effects. Very useful for figuring out squirrelly windowflags problems.

Solution 7 - Qt

The following way to remove question marks by default for all the dialogs in application could be used:

Attach the following event filter to QApplication somewhere at the start of your program:

  bool eventFilter (QObject *watched, QEvent *event) override
  {
    if (event->type () == QEvent::Create)
      {
        if (watched->isWidgetType ())
          {
            auto w = static_cast<QWidget *> (watched);
            w->setWindowFlags (w->windowFlags () & (~Qt::WindowContextHelpButtonHint));
          }
      }
    return QObject::eventFilter (watched, event);
  }

Solution 8 - Qt

I couldn't find a slot but you can override the virtual winEvent function.

#if defined(Q_WS_WIN)
bool MyWizard::winEvent(MSG * msg, long * result)
{
	switch (msg->message)
	{
	case WM_NCLBUTTONDOWN:
		if (msg->wParam == HTHELP)
		{

		}
		break;
	default:
		break;
	}
    return QWizard::winEvent(msg, result);
}
#endif

Solution 9 - Qt

As the solution for PyQt4 from @amos didn't work for me and the version of PyQt4 is deprecated, here is my solution on how to remove the "?" in the dialog-box in PyQt5:

class window(QDialog):
    def __init__(self):
        super(window, self).__init__()
        loadUi("window.ui", self)
        self.setWindowFlag(QtCore.Qt.WindowContextHelpButtonHint,False)  # This removes it

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAMMView Question on Stackoverflow
Solution 1 - QtJens A. KochView Answer on Stackoverflow
Solution 2 - QtamosView Answer on Stackoverflow
Solution 3 - QtParker CoatesView Answer on Stackoverflow
Solution 4 - QtAMMView Answer on Stackoverflow
Solution 5 - QtrrwickView Answer on Stackoverflow
Solution 6 - QtMichael BishopView Answer on Stackoverflow
Solution 7 - QtPredelnikView Answer on Stackoverflow
Solution 8 - QtbrandoneggarView Answer on Stackoverflow
Solution 9 - QtMr. AnonymousView Answer on Stackoverflow