It must be really simple, but I can't figure it out:

How do I create a QStyle object that contains the native look and feel of the computer I'm on?

I basically want to write something like this:
QStyle* pNativeStyle = QStyleFactory::createNativeStyle();
...but this method does not exist.

By the time my code runs, the QApplication style has already been tinkered with, so I can't use QApplication::style().
The QStyleFactory does not seem to have an option to simply create "the native style", whichever subclass of QStyle that is.


How do I do it?

Kind regards

Robert