0
votes
1answer
20 views
Taking screenshot of a specific window - C++ / Qt
In Qt, how do I take a screenshot of a specific window (i.e. suppose I had Notepad up and I wanted to take a screenshot of the window titled "Untitled - Notepad")?
In their screens …
0
votes
1answer
17 views
Invoking context menu in QTreeWidget
I would like to popup a menu, when user clicks on an object in QTreeWidgetItem. I though about catching signal contextMenuRequested from QWidget and then retrieving index from the …
0
votes
1answer
23 views
How to set output path in a Qt project
After building, Qt Creator puts my output exe in folder "Debug". I want to change the output folder by adding output path to the .pro file. Any idea?
0
votes
1answer
18 views
Text under a widget added with QToolbar.addWidget()
I have a QToolbar with toolButtonStyle set to Qt::ToolButtonTextUnderIcon in which I add a QLineEdit through addWidget(). I'd like to have descriptive text under that widget like I …
0
votes
1answer
16 views
How to set auto=repeat on a qaction in a qtoolbar?
Hi,
I'd like to use the autorepeat feature of the QToolButton class.
The problem is that the instances are created automatically when using QToolBar::addAction() and I can't fin …
0
votes
1answer
20 views
How can I set the path + filename in Qt Designer’s property box?
I sucessfully added a QLabel widget into the FormWindow and set a pixmap in code, but when examine the property box the pixmap filepath field was empty even if the image did get lo …
0
votes
1answer
40 views
Setting icon for QTreeWidgetItem
I am trying to set an icon for item in QTreeWidget. I am doing it like this:
class MessageBoxSelect(QTreeWidget):
def __init__(self, parent=None):
QTreeWidget.__init__(self …
0
votes
0answers
14 views
QT creator/qt embedded widget demo problem
I have downloaded the source code for the embedded widget demos from nokia and tried to get it to compile--I end up with the following error:
Compiler (mingw32) message :
In f …
0
votes
2answers
52 views
Compile Qt application for Windows Mobile 5
Hi, I'm trying to compile a small Qt application for windows Mobile 5.
so I've few questions:
currently i'm using ubuntu 9.10, I've hear some thing about cross-compilation but I …
0
votes
3answers
33 views
Qt moc_ include file problem
I'm trying to compile the basic tutorial program at http://doc.trolltech.com/4.4/mainwindows-application.html and running into a problem.
Doing things the way the tutorial program …
1
vote
2answers
44 views
How to execute program which have created Qt on windows?
Hi.
Basically, Qt provide the cross-plateform.
I have made a application which is used Qt creator on Linux.
But, I can't be running that on Windows because it can't find .dll fi …
1
vote
2answers
40 views
Format the output of qDebug for QMaps
Hi,
i am currently in the process of maintaining a legacy app. This has quite a few structures like:
QMap<QString, QMap<QString, QMap<QString, QMap<QString, QVariant …
1
vote
2answers
22 views
Reattaching to an orphan process in QT
We're preparing an application using Qt that has a main process that controls the GUI and spawns processes that do the actual data processing. Messages are exchanged between the ma …
1
vote
2answers
37 views
Qt4.5: Using event-loop based localsocket before app.exec
I'm facing a practical problem with Qt. I'm using a class that communicates with QLocalSocket to another process (pipes/unix sockets) and I need to do that communication before oth …
0
votes
1answer
27 views
Linking GUI app against a static lib in QtCreator
Hi,
What is the right way to build a library from source using MinGW and then reference it in the GUI application's project? I'm not familiar with gcc and makefiles, but I think t …
