I have a floating tool window. It works fine on Windows, but I can't get rid of the maximise button on Mac OS X. I have tried unsetting Qt::WindowMaximizeButtonHint and setting the window to fixed size. Nothing seems to work.

MyWidget::MyWidget( QWidget* parent )
:QWidget( parent, Qt::Tool | Qt::CustomizeWindowHint )
{
   setupUi( this );

   setFixedSize( sizeHint() ); // doesn't remove maximise button
   setWindowFlags( windowFlags() & ~Qt::WindowMaximizeButtonHint ); // doesn't remove maximise button
}

I don't want to use a frameless window. Any ideas? I am using Qt 4.4.

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

This code from Richard Gustavsen of Nokia works in Qt 4.4:

class MyWidget : public QWidget
{
    public:

    MyWidget::MyWidget( QWidget* parent ) : QWidget(parent, Qt::Tool)
    {
    }

    void setVisible(bool visible)
    {
        QWidget::setVisible(visible);
        ChangeWindowAttributes(qt_mac_window_for(this), kWindowNoAttributes, kWindowFullZoomAttribute);
    }
};

Thanks Richard and Nokia!

link|improve this answer
feedback

Launch Qt windowflags example application. Choose Tool radio button and then check:

  • Window title
  • Customize window
  • Window close button

It's the only way I found on Mac OS X to achieve what you want BUT you will loose minimize button. There's no other way. That's Mac OS X Window Manager limitation.

Summarizing, there are only five sets of buttons in title bar:

  1. All buttons visible and all buttons enabled: setWindowFlags(Qt::Tool)
  2. All buttons visible, close and maximize buttons enabled, minimize button disabled: setWindowFlags(Qt::Tool | Qt::WindowTitleHint | Qt::WindowMaximizeButtonHint | Qt::WindowCloseButtonHint | Qt::CustomizeWindowHint)
  3. All buttons visible, maximize button enabled, close and minimize disabled: setWindowFlags(Qt::Tool | Qt::WindowTitleHint | Qt::WindowMaximizeButtonHint | Qt::CustomizeWindowHint)
  4. Only close button is visible and enabled setWindowFlags(Qt::Tool | Qt::WindowTitleHint | Qt::WindowCloseButtonHint | Qt::CustomizeWindowHint)
  5. No buttons in title bar: setWindowFlags(Qt::Tool | Qt::WindowTitleHint | Qt::WindowCloseButtonHint | Qt::CustomizeWindowHint)
link|improve this answer
Kamil, Great answer. Unfortunately it seems that Qt::WindowCloseButtonHint is not available in Qt 4.4! – Andy Brice Jan 14 '10 at 14:01
Sorry for that but I'm currently using Qt 4.6, but my intention was to make you run windowflags example from Qt, so you could easily and quite fast try most options – Kamil Klimek Jan 15 '10 at 1:17
I've tried the windowflags example in Qt 4.4, but couldn't find a combination that removed the maximize button. – Andy Brice Jan 15 '10 at 12:11
why won't you upgrade Qt? – Kamil Klimek Jan 15 '10 at 16:48
feedback

You could try setting the window flag to include Qt::Dialog (bold added):

Indicates that the widget is a window that should be decorated as a dialog (i.e., typically no maximize or minimize buttons in the title bar). This is the default type for QDialog. If you want to use it as a modal dialog, it should be launched from another window, or have a parent and used with the QWidget::windowModality property. If you make it modal, the dialog will prevent other top-level windows in the application from getting any input. We refer to a top-level window that has a parent as a secondary window.

I don't know what would happen if you tried setting both Qt::Dialog and Qt::Tool, but it might be worth investigating.

link|improve this answer
Tried both Qt::Dialog | Qt::Tool and Qt::Dialog. Still had a maximise button in both cases! – Andy Brice Jan 13 '10 at 21:43
feedback

I was able to do it with

setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::CustomizeWindowHint | Qt::WindowCloseButtonHint | Qt::WindowMinimizeButtonHint)

Regards, Esteban

link|improve this answer
feedback

So there is no way to hide or remove maximize button(not just disabling) with out loosing the minimize buttton? (I want it on all platforms- mac, win, linux)

any pointer to any paltform specific stuff or work around?

Best Regards, Alex

link|improve this answer
feedback

Here is a cross platform way to do it. You have override your setVisible method of your QMainWindow or QWidget. The same way any window flag can be modified that has visual impact on the window.

The reason this has to be done this way is that the class needs to have window specs before it actually shows the window.

void setVisible(bool visible)
{
    setWindowFlags( windowFlags() & ~Qt::WindowMaximizeButtonHint );
    QWidget::setVisible(visible);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.