I've got a QKeySequence and I want to get each individual QKey... I've been messing with a few ideas, but everything I've come up with seems really messy.

I need the QKeySequence because I'm trying to setup a windows global hotkey for my application using the windows RegisterHotKey function. I know that I can test the Ctrl, Alt, Shift and Windows key modifiers with the QKeySequence->matches( ...) function. But how do I go about getting the main key from a "Ctrl+Shift+F10" key sequence?

Thanks,
Paul