0
votes
0answers
4 views
qtconcurrent function calling two qprocess::start
How is it possible to use QFuture and QFutureWatcher to get result from qprocess::start, called in a functionF used in
QtConcurrent::map(sequence, functionF) and send it to another qprocess::start …
0
votes
1answer
15 views
QAbstractSocket::UnknownSocketError
What could be cause of QAbstractSocket::UnknownSocketError when using QTcpSocket?
CODE
I'm getting this error code with the following code:
this->connect(socket, …
0
votes
1answer
18 views
Qt Application Customization
How to make Qt app look in Adoby Lightroom style?
Is it skin or css style?
Or maybe some other UI framework is used in Lighroom?
I want to create some form with "Video Timeline" custom widget, …
0
votes
0answers
11 views
QSignalMapper and original Sender()
I have a bunch of qComboboxes in a table.
So that I know which one was triggered I remap the signal to encode the table cell location (as described in …
1
vote
1answer
19 views
Most elegant/safe/easy solution to store and edit (GUI) a directory-like tree structure?
Hello,
I've got a slightly tricky problem to solve; imagine this:
One of my applications needs to make heavy use of scripting, so my idea was to provide the user a way to write script snippets and …
2
votes
1answer
25 views
Updating a QProgressDialog with a QFuture
What's the proper way for the main GUI thread to update a QProgressDialog while waiting for a QFuture. Specifically, what goes in this loop:
QProgressDialog pd(...);
QFuture f = ...;
while …
0
votes
3answers
30 views
GUI for touchscreen panel
Hi Geeks,
I am planning to design an embedded device which will have atom processor platform and linux OS in it. It will have an 7" touchscreen panel. In stead of going for KDE and GNOME desktops I …
0
votes
1answer
16 views
QPlainTextEdit for single line of input
I'm using Qt to write a database type program where the majority of inputs will be single lines, not documents of arbitrary length.
Do I understand correctly that QPlainTextEdit is the most …
0
votes
0answers
33 views
QT: QHeaderView misbehaving.
I want to enable interactive resizing for a vertical header in my QTableWidget.
In other words, I want to be able to resize vertical's column width.
Changing vertical's column height is working OK.
…
0
votes
2answers
37 views
QT: Context menu (QMenu) reference from the QTableWidget.
I want to add a submenu in my context menu which is created like this:
self.widget_alignment.setContextMenuPolicy(Qt.ActionsContextMenu)
where widget_alignment is QTableWidget.
I created a new …
0
votes
1answer
20 views
Qt4 compatible RegExp for URL highlighting
I'd like to automatically highlight and extract URLs from a QWebView or QTextEdit. I've found a lot of RegEx examples on the web which allows to do just that, but most of them seem overly complicated, …
0
votes
1answer
41 views
Displaying multiple icons in a single cell of a QTableView
I am writing a small gui app with QT4.5 in QtCreator.
The main screen on the app contains a QTreeView with two columns, the first is text the second is a group of icons. These icons represent the …
1
vote
2answers
60 views
QCheckBox: is it really not possible to differentiate between user-induced changes to state and those made programmatically? If so, should it be considered an inconsistency?
Do I miss something or there is really no (ready / built-in) way to programmatically change the state of a QCheckBox without emitting the "void stateChanged ( int state )" signal?
The above-mentioned …
0
votes
1answer
13 views
QtRuby: loading HTML file into QTextEdit
How do I load a custom HTML-file into QTextEdit while in runtime?
0
votes
3answers
82 views
Linker error ‘unresolved external symbol’ : working with templates
I have a template based class [Allotter.h & Allotter.cpp]:
template <typename allotType> class Allotter {
public:
Allotter();
quint32 getAllotment(allotType*);
bool …
