Trolltech does not recommend any particular programming style. What you choose is up to you.
As for "camel humping", there tends to be three sorts of variable naming conventions:
1) c_underlining: name_your_variables_like_this
2) camelNotation: variablesThatHaveAHumpInTheMiddle
3) mshNotation: Microsoft's Hungarian Notation
The Hungarian Notation seems to be the most popular in Microsoft shops, because Microsoft used to heavily encourage it. But it's been shown to be counter productive. The prefixes are extraneous and if you don't get them exactly correct, you waste time in code review meetings correcting them.
Bookmarks