Windows Qt v 4.3.2

The art department at my work has told me that the dialogs on the latest program have to have rounded corners. And no title bar.

Is this even possible with Qt?

The closest I've managed to get has rounded corners, but the cut away portion is gray instead of transparent. I subclassed QDialog (so I could apply a style sheet) and had the constructor pass the Qt::SplashScreen flag to the QDialog constructor.

That got rid of the title bar.

Then I loaded in a style sheet that contained:
Qt Code:
  1. {
  2. border-radius: 16px;
  3. }
To copy to clipboard, switch view to plain text mode 

That made the rounded corners.

The only problem is that the cut-away part of the corners is gray instead of transparent. Does anybody have suggestions?