A little is hidden in Qt given splendid documentation. But given vastness of Qt functionality paradoxically many useful features have been overlooked by me (and reimplemented or work-arounded).
What Qt functions you wish you have noticed earlier?
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here's a list that I blogged recently:
|
|||||||||||||
|
I'm sure I'll think of more later, as well. |
|||||||||
|
|
||||
|
|
One feature I found too late was stdin-stout handling through QFile. I could drop then all std::*. Other was (not easy to find in documetation):
Which proved very convenient for debugging. Recently I found easy serialization class QDataStream. |
||||
|
|
|
You can connect signals to signals in order to emit a signal automatically. This is useful to provide signals from underlying classes. QTabWidget uses a QTabBar and exposes the signals from the QTabBar using a trick like this:
Which will make the current class emit externalSignal(int) when myObj emits internalSignal(int). This helps with the signal side of things at least. There is no equivalent way to do this with slots that I know of; the only simple way is to make your externalSlot call internalSlot. |
||||
|
|
|
|||||
|
|
||||
|
|
|
If you need to implement a slot that will be called just after the event loop has began this is the way to do it:
It's usefull if You have to perform some initialisation actions that require all widgets/object to be ready. This can't be done in constructors. |
||||
|
|
|
I have found one of the more powerful things in Qt is using Qt Creator to maintain slot/signal connections in the .ui file rather than in code. Slots & signals help keep classes separate, and force you to rethink things, and almost always lead to a much cleaner design. Core code, instead of calling some callback function or (god help us) hard-coded call into UI code to set a label can just use "emit(str)" and any UI that happens to be listening can show that string in any way it prefers. And the UI can be designed in Qt Creator in a very fluid and friendly way. Qt Creator isn't quite at the level of Apple's Xcode and Interface Builder -- e.g. you still have to enter slots and signals manually into Creator, rather than scanning (or generating!) header files -- but it's come a long way in a short time. |
||||
|
|
|
< cough> namespaces ? < /cough> |
||||
|
|