0
votes
3answers
56 views
what can I use to replace sleep and usleep in my Qt app?
I'm importing a portion of existing code into my Qt app and noticed a sleep function in there. Now after doing some researching I read that this type of function has no place in event programming. …
0
votes
2answers
33 views
Generate .h and .cpp from .ui file
Hey guys,
I have the file about.ui.
As you know, inside the qt design i can do the ui.h file...
But how can i make the "about.h" and the "about.cpp" from my .ui file? i have to create a .moc file …
0
votes
4answers
32 views
Accessing the child UI elements in a Qt UI
I have defined a UI (let's call it myUI) using the Qt designer, and using it in my applications. I need to access all the sub-widgets (QToolButtons) in myUI. I want to get all the subwidgets as a …
0
votes
3answers
34 views
How to deploy my application using Qt-Creator?
I'm trying to deploy my simple Qt project like a hello world.
I build it successfully and can also execute it on Qt-Creator. However, I can't execute the binary directly in the release folder due to …
0
votes
1answer
28 views
Get the name of application in focus (on Mac)
Hello All,
I have a requirement where, I need to have the name of the running application in focus.
I am using C++/Qt/Carbon.
Any help is highly appreciated.
Thanks,
Rahul
0
votes
3answers
53 views
How do I embed a binary executable (to be executed at runtime) in a Qt program?
I'm writing a cross-platform C++ program using Qt and I want to package/embed a number of binary executables within the program. The program should be able to execute these binaries at runtime.
I …
2
votes
3answers
63 views
PyQt 4 UI freezes
The following programm should just count up and int and displays its value in a label.
But after a while the GUI stops working, while the loop continous.
from PyQt4 import QtGui,QtCore
import sys
…
3
votes
2answers
74 views
Argument type for Qt signal and slot, does const reference qualifiers matters?
For signal and slot of below type
signals:
void textChanged(const QString &);
public slots:
void setText(const QString & text)
the type of argument of textChanged and setText …
5
votes
3answers
90 views
How to cross compile qt application for different platforms.
How can I cross-compile my application on Qt. As for each project
I need two version
1). Which runs on computer on Qvfb & i386 Architecture
2). Which runs on device with Linux Framebuffer …
0
votes
2answers
26 views
QPushButton & shortcut
Hey everyone,
I have a problem with Qt 4.6.0 and shortcut for QPushButtons :
I want to display a special text in a QTextEdit when the user clicks a button, but only when the button is pressed, as …
2
votes
3answers
115 views
Custom UIs in C++ with Qt?
Coming from C#, I've decided to learn C++ with the Qt framework. I have one question though, what is the "correct" way to accomplish an UI like this one? This may be kind of subjective, but I'm sure …
5
votes
9answers
199 views
What’s the fastest way to deserialize a tree in C++
I'm working with a not so small tree structure (it's a Burkhard-Keller-Tree, > 100 MB in memory) implemented in C++. The pointers to the children of each node are stored in a QHash.
Each node x has …
1
vote
1answer
40 views
Getting MouseMoveEvents in Qt
In my program, I'd like to have mouseMoveEvent(QMouseEvent* event) called whenever the mouse moves (even when it's over another window).
Right now, in my mainwindow.cpp file, I have:
void …
1
vote
3answers
84 views
reading from file certain lines at a time in c/c++
Hello,
So i have a gui, designed using QT, c++. I have large amount of data in a text file that I would like to read in this fashion:
load first 50 lines, when the user scrolls down load next 50 …
1
vote
1answer
39 views
how to have a virtual onscreen keyboard in qt for embedded linux?
how to have a global virtual onscreen keyboard in qt for embedded linux?
