0
votes
1answer
13 views
Hiding a QWidget on a QToolbar?
Hi,
I have directly added some QWidgets to a QToolbar but simply going widget->setVisible(false) did not work. Can someone please give me an example of how to show and hide a widg …
5
votes
1answer
55 views
How can I use the clojure REPL together with QT Jambi?
I have not found a solution to use the clojure REPL with Qt on the web.
Basically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to …
3
votes
2answers
51 views
Using Qt to make an almost native Windows Application?
I love that Qt is cross-platform but I want to make an application that will call into some Windows specific .dll's. Kinda like Google Chrome does with the glass on Windows Vista/7 …
1
vote
1answer
33 views
Compiling a shared library with QT on Ubuntu 9.10
I am new to both QT and Linux C++ development (although I have many years C and C++ development experience on Windows).
I have some legacy C projects (source files and headers - [ …
19
votes
10answers
509 views
STL or Qt containers?
What are the pros and cons of using Qt containers (QMap, QVector, etc.) over their STL equivalent?
I can see one reason to prefer Qt:
Qt containers can be passed along to other …
1
vote
2answers
30 views
Is there a way to package a dynamic library in the application binary?
Hi I am developing a Qt application that uses a plugin (dynamic library) and I was wondering if there was a way I could build the application and library in one file (maybe using t …
1
vote
2answers
12 views
Qt QHboxLayout cell size ssues
For those of you who haven't been reading my Qt questoins, I am learning Qt for a project. I have only limited experience with GUI design at all, and not in Qt.
I've got a horizon …
3
votes
3answers
88 views
How do I set a background color for the whole window of a Qt application?
Does anyone know if/how one would be able to set a background color for the whole window of a Qt application? So far I am using stylesheets but can only figure out how to assign a …
6
votes
6answers
270 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 …
1
vote
1answer
18 views
Qt application crashing immediately without debugging info. How do I track down the problem?
I run an Qt app I've built:
./App
Segmentation fault
I run it with strace:
strace ./App
execve("./App", ["./App"], [/* 27 vars */]) = 0
--- SIGSEGV (Segmentation fault) @ 0 (0) …
1
vote
2answers
74 views
How insecure is / replacement for tmpnam?
I considered using tmpnam to set the output file name of a QPrinter. But the Python documentation recommends against using it.
os.tmpnam()
Return a unique path name that i …
0
votes
5answers
127 views
How to stop a running thread safely on user request?
I'm in a scenario when I have to terminate a thread while the thread is running according to user action on GUI. I'm using Qt 4.5.2 on Windows. One way to do that is the following: …
0
votes
2answers
32 views
Qt Icon embedded in Executeable
I have some buttons on a tabwidget. These buttons need to have some icon on top of them.
I am aware of QPixmap that will allow me to put an image on top of a button, but I see tha …
1
vote
4answers
63 views
Qt Custom Window
Hi,
Pardon me, I am a newbie :)
Is it possible in Qt to create a custom window without borders but still draggable without holding down the Alt Key? I created a borderless window …
1
vote
3answers
37 views
Need a little help with the Qt painting classes
I'm trying to write a paint program (paint where ever a mouse press/hold is detected), but I'm having trouble using the Qt QPainter. I have read the documentation on their web site …
