8
votes
4answers
263 views
Hidden features of Qt.
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 …
7
votes
1answer
733 views
How to integrate Boost.Asio main loop in GUI framework like Qt4 or GTK
Hello,
Is there any way to integrate Boost.Asio with Qt4 (prefered) or GTK main loop?
GTK provides poll(2) like API so technically is should be possible. Qt provides its own networking layer, however …
6
votes
6answers
360 views
Qt in a professional setting
While I have played with parts of Qt in the past I am thinking of putting some real effort into learning it but also wondering what the potential monetary payback might be down the road. So I have …
5
votes
4answers
242 views
In Qt, how do I align form elements in different group boxes?
Hello,
I'm trying to create a standard two-column form, where the first column is a text label (QLabel) and the second column is an interactive widget, typically a text field (QLineEdit). We have …
4
votes
8answers
259 views
How different is Qt4 from Qt3?
I used to program in Qt3 a long time ago and I had read a great book that I still have by O'reilly on Qt3. I wanted to start using Qt4 again now several years later.
Can I use my Qt3 book to get up …
4
votes
2answers
106 views
Is qt-embedded-linux drawing library fixed point ?
Hi Friends,
I am working on embedded device which does not have Floating Point Unit, I want to port QT-embedded-linux to it. So Please tell me that whether drawing library of qt has fixed-point or …
4
votes
1answer
140 views
How signal and slots are implemented under the hood ?
Hello
This question is already asked in this forum but I don't understand the concept.
I was reading around and it seems that signal and slots are implemented using function pointers i.e the signal …
4
votes
3answers
445 views
How to encrypt and decrypt a file with Qt/C++?
I want to create a program, which can encrypt and decrypt a complete file with an individual password. Is there any way to manage this in Qt and/or C++ and how?
4
votes
8answers
1k views
Best crossplatform C++/QT4 development environment
Hi!
I would like to develop cross-platform applications using C++ and QT4.
I code on both Linux and Windows (MinGW).
Currently I'm using KDevelop and it's QMake integration. On Windows I'm trying …
4
votes
2answers
315 views
Visual studio intellisense for headers without .h
I am using a library that has headers without the .h
This defeats visual studio's intellisense (declaration/definition lookup)
Anyone know how to tell VS2008 that a file is a header?
3
votes
1answer
101 views
Question about a QList<QStringList> in Qt
I'm using Qt 4.5 and im working with a QList<QStringList> which is a list of string list.
Now I want to replace one string inside one stringList but with it seems unusual to type. I have found …
3
votes
3answers
203 views
C++ and QT4.5 - is passing a const int& overkill? Does pass by reference helps in signals/slots?
Two questions rolled into one here...
I have a number of functions which are called multiple times per frame for a real-time video processing application. Taking advice about const and pass by …
3
votes
2answers
311 views
Selecting QComboBox in QTableWidget
One cell in each row of a QTableWidget contains a combobox
for (each row in table ... ) {
QComboBox* combo = new QComboBox();
table->setCellWidget(row,col,combo);
…
3
votes
4answers
328 views
Qt 4.5 - QList::QList(const QList&) - is this a deep copy constructor?
I am getting confused about the QList copy constructor by the documentation.
QList::QList ( const QList & other )
Constructs a copy of other.
This operation takes constant time,
…
3
votes
3answers
140 views
Morphing multiple executables into a single application
I have three legacy applications that share a lot of source code and data. Multiple instances of each of these applications be executed by a user at any time, e.g. a dozen mixed application executions …
