0
votes
2answers
53 views
string has not been declared, QT
I am trying to change a certain text box message. It will display my output.
This is what I have in my main()
#include "form2.h"
....
string recvMSG = "random";
182:: For …
0
votes
2answers
37 views
Question about how to send images in socket programming?
I've got a couple questions about sending images over.
How do I handle different types of files, jpeg, png, etc.
If the file is large, I ave to use sequence numbers... but I don' …
0
votes
1answer
27 views
Quick Question on QT and OpenGl
I've made a project with QT and OpenGl.
In QT paintGl() was repeatedly call I beleive, so I was able to change values outside of that function and call update() so that it would p …
0
votes
1answer
36 views
Question about what I should have before Connect
I have this included:
#include <sys/socket.h> /* for socket(), connect(), send(), and recv() */
/* Establish the connection to the echo server */
if (connect(sock, (struct …
2
votes
2answers
45 views
Building optimized Qt4 - “./configure” flags and their meanings
Hey everyone,
I recently followed a discussion on the Qt4-interest mailing list about whether it is legal or not to build a commercial/proprietary application and statically link …
0
votes
1answer
12 views
qprocess output in file
QProcess procWriteProject ..
...
1) procWriteProject.start("qconf",QStringList() << " -sprj " << projectList[0] << " >> " << "\"/tmp/testing.txt\"");
2) …
1
vote
0answers
24 views
How to receive drag and drop from Apple Address book in Qt 4.4 on Mac OS X 10.5/10.6
I am trying to trap drag and drop events from the standard Apple address book app to my Qt app. This code works fine with Qt 4.4. on Mac OS X 10.4:
void
MyView::contentsDropEvent …
0
votes
1answer
30 views
Set a QComboBox or QSpinBox to a value not allowed
I am maintaining an application which tries to help the user get his parameters to work together, as there are many interdependencies.
Now there is a default value of x for a var …
2
votes
2answers
57 views
How can I connect the pressed() signal of 32 buttons to a single function without declaring 32 slots?
I have a widget and inside it are 32 buttons. I need to connect each button's pressed() signal to a slot in order to call a function who's parameters depend on which button I have …
2
votes
4answers
87 views
What are the differences between Gtk+ and Qt?
A lot of people seem to have an opinion about which is better. I'm not really asking for these opinions, what I'd like to know are the details: What are the things that make one gr …
0
votes
0answers
18 views
Can you implement lazy array access in QtScript?
Is it possible to implement a QObject for use in QtScript which overloads [] to implement lazy array population?
I want to implement something like this:
var bar = foo["bar"];
…
0
votes
2answers
55 views
QGraphicsView/Scene - multithreading nightmare
Am I correct in thinking that the QGraphics* classes are not thread-safe? I am porting an old app to Qt and in the process attempting to make it multi-threaded too. I looked at the …
0
votes
1answer
28 views
Modifying Qt core components/widgets, best practices?
Hello everyone,
I'm trying to enhance Qt's QPrintPreviewWidget by allowing it to display page numbers (in the footer somewhere). Unfortunately, I can't quite figure out how to go …
1
vote
1answer
12 views
Can I decide where a Qaction is added to a Qmenubar
I need to add a QAction directly into a QMenuBar (not an QAction inside a QMenu but a QAction directly in the QMenuBar) I am able to do this with the following command.
ui->menu …
0
votes
1answer
27 views
QComboBox with single value: Select this value
I have a QComboBox which changes its selection possibilities depending on certain conditions.
Because of special combinations, it might have only one selection left over, which ha …
