Hi,

I'm planning to create a crib sheet of keyboard shortcuts my application uses.
Before I get going, I'm wondering if there is a good/correct technique for enumerating all keyboard shortcuts that have been assigned to the QActions my app uses?

I have all my actions in a lookup table, so it's trivial to just loop through that table.
However, is that the only way to do it?

- I'm just wondering because quite frequently with Qt I discover that the code I want is already implemented in a Qt library. I usually discover this after I've implemented the code myself!