0
votes
Qt Child Window Placement
Generally, I'd recommend not forcing window positions unless your application has some very special windowing requirements. It's the window manager's job to determine where new windows are put and …
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.
…
5
votes
Which way to go in Linux (Qt or KDevelop)
You seemed to be confused. Qt is a C++ toolkit. KDevelop is an IDE.
From you …
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 …
2
votes
For QDoubleSpinBox, can I give an range 0.0<min<max<1.0. If yes how do I get the step buttons to work with it
Use setSingleStep() to set the step size to something reasonable for your range. (http://doc.trolltech.com/ …
3
votes
How to disable the up/down buttons within the QDoubleSpinBox
You need to create a QDoubleSpinBox subclass with a custom implementation of the step enabled function. (http …
2
votes
QGraphicsItem : emulating an item origin which is not the top left corner
You're overthinking it. QGraphicsPixmapItem already has this functionality built in. See the setOffset method. ( …
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.
…
