is there any means of extending (=adding widgets to) the native style QFileDialog?

I'm working on Windows and would like to use the native(!) look of the QFileDialog for letting the user export some data.
However I would like to add some controls on it to let them customize the export:
basically adding a QLabel and a QComboBox.

In Win32 or MFC you can do this by using SetTemplate for example.

I already tried adding a control like this:

Qt Code:
  1. QFileDialog *exportDialog = new QFileDialog();
  2. QLabel *label = new QLabel(exportDialog);
  3. label->setText("New label");
  4. QGridLayout *layout = (QGridLayout*)exportDialog->layout();
  5. layout->addWidget(label, 0, 0);
  6. exportDialog->setModal(true);
  7. exportDialog->show();
To copy to clipboard, switch view to plain text mode 

but this apparently turns off the native look.
Is there anyway to do this or is it just impossible?

Thanks!