1
vote
C++/Qt vs Adobe AIR
If your looking for some examples of "fun" UIs using Qt and SVG, take a look at the KDEGames [1][2] and KDEEdu [3][4] projects. There's lot's of nice code there that uses QGraphicsView and SVG to c …
0
votes
How to know a QTreeWidget selected item?
Using the itemClicked() signal will miss any selection changes made using the keyboard. I'm assuming that's a bad thing in your case.
…
1
vote
Floating/Embedded QDockWidget in a QWidget (KXmlGuiWindow’s CentralWidget designed in QT Designer)
I would design the QDockWidget contents as separate UI files. Then create them and stick them into the QDockWidgets in the AEmpire constructor.
…
2
votes
c++ for loop vs foreach
First off, I'd just like to say I agree with Pax, and that the speed probably doesn't enter into it. foreach wins hands down based on readability, and that's enough in 98% of cases.
But of …
2
votes
How to clean up a complex QList?
Because you're creating the sub items with "new", you do have to deallocate them yourself. See the qDeleteAll function for a quick way of doing so.
Is there a reason why you're using new to …
8
votes
How to encrypt and decrypt a file with Qt/C++?
I've never used it myself, but I've heard great things about QCA. It's cross platfrom, uses a Qt-style API and Qt datatypes.
…
