1
vote
0answers
55 views
Play RTP video stream using Qt?
I want to create an GUI application that plays an incoming RTP video stream. The RTP video stream is encoded in H264 and there are no audio streams.
My basic plan for implementation is this:
…
0
votes
1answer
34 views
qt soap client + ASP.net Web service
Hi,
I'm writing Qt client for ASP.NET web service with FORMS based authenitcation.
The service consists of 3 methods:
Login(user,pass)
Helloworld() - this method returns info oabout athenticated …
0
votes
3answers
93 views
Deleting And Reconstructing Singleton in C++
Hi all,
I have an application which runs on a controlling hardware connected with different sensors. On loading the application, it checks the individual sensors one by one to see whether there is …
1
vote
1answer
42 views
Qt for Symbian - odd network sockets behavior
I grabbed the 4.6.0 release, and immediately tried writing a little test app for it. This application simply shows an edit box for a host address, and a checkbox if it's to use an encrypted …
0
votes
1answer
24 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 …
0
votes
0answers
44 views
Qt, text on a black and white screen
I'm using Qt (embedded) to make a GUI on a black and white screen. The problem is Qt renders text with shades of grey so it is unreadable on the black and white screen. Does anyone have any idea how …
0
votes
3answers
54 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 about it without …
0
votes
1answer
32 views
Problem with drawing focus frame in Qt
I'm trying to create custom widget inheriting QFrame. All works fine, but I'm unable to draw the focus rectangle around my widget. Below is the sample code I use for drawing:
frame.h
class Frame : …
0
votes
2answers
45 views
Is QImage able to open and render pure 16-bit images?
I think the headline already explains what I want to know.
Is there a possible way to open and save images with 16-bit with Qt? And I don't mean the 3*8=24bit or 4*8=32bit, what is quite the same as a …
0
votes
1answer
39 views
List view is not refreshed if setTabText() is called
Yes, I know this sounds crazy. But here's the situation.
I composed a minimal code reproducing the bug. The code creates main window with QTabWidget, which, in turn, has one tab with QListView and a …
0
votes
1answer
22 views
No readyReadStandardOutput signal from QProcess
Why do I never get the readyReadStandardOutput signal when I run the following?
import os, sys, textwrap
from PyQt4 import QtGui, QtCore
out_file = open("sleep_loop.py", 'w')
…
0
votes
1answer
35 views
How to group Widgets in my Qt app?
Easy question (I hope!). This is my first Qt app and I'm struggling with how to have groups of elements on my Gui.
I need about 8 standard QWidgets (labels, edits, buttons) for each File object, …
0
votes
1answer
96 views
Calling static pointer to a list from a shared library in c++
Hi,
I have a static class member
class bar {...}
class foo {
public:
static QHash<qint64,bar>* barRepHash;
}
Now I call a function which accesses this member within a shared …
0
votes
1answer
18 views
How do I resize QTableView so that the area is not scrolled anymore
I want the size of the QTableView to be the same as the table it contains (and fixed) so that it does not have a scrollbar
0
votes
2answers
44 views
How to show Tooltips in Qt
I'm writing a program using Qt4.5 that shows a book in another language. So I have a large body of text and I want to display a different tooltip for each word (the tooltip will contain parsing …
