Is it possible to disable/delete the QDialogs default close button at the upper left of the dialog?
At least in (embedded) Linux, you can do this:
setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
With that, I get a window which has the title but no buttons.