tags:

views:

169

answers:

1

How do I apply the "mac style" on my forms and windows? Using Qt (C + +)

+3  A: 

If I'm not mistaken, the Mac style is not available on non-Mac plaforms (i.e. windows).

See QMacStyle details

You'd have to create your own style reproducting the Mac style, but that is not trivial. Have a look at Qt documentation : Implementing Styles and Style Aware Widgets.

Jérôme