Though my operating system is Windows, I want my application to look like a Mac application. I know I can easily change that style using QApplication::setStyle.
QApplication::setStyle(new QWindowsVistaStyle)
I know Qt provide MacStyle too so, for MacStyle
QApplication::setStyle(new QMacStyle)
However, it seems QMacSytle is not declared. Compiler doesn't recognize it. And the Qt Webpage says
Warning: This style is only available on Mac OS X because it relies on the HITheme APIs.
Is there any other way to use that Mac OS style window? Because I need to use that.