Tagged Questions
For issues relating to using Qt, version 3.
3
votes
3answers
707 views
Adding custom widgets to QMenuBar
Qt3 used to provide QMenuBar::insertItem with QWidget* parameter. This way any custom widget could be added to menu bar - for example a clock-widget.
In Qt4 there is no such overloaded method. What ...
2
votes
4answers
844 views
Hierachical data in TreeViews and TreeView updating technique
I have lots of (hierachical) data that I show in a TreeView (could be around 20K items or more, including children items). The peculiar problem with my data is that each object shown in the treeview ...
1
vote
1answer
105 views
Qt: window with movable widgets
I want to create a window with a variable number of custom widgets, each of the widgets can be a group of some simple objects. Widgets should behave similar to dialog windows: they can be moved ...
1
vote
1answer
20 views
compile error “QImage with no type”
Hello Can anyone help me figure out how to solve this bug message? I am trying to rewrite a Qt3 working code into Qt4 for converting IplImage to QImage and found the "right conversion types" however ...
1
vote
4answers
1k views
Generate .h and .cpp from .ui file
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 too?
How ...
1
vote
2answers
2k views
How to detect the mouse state in Qt without a MouseEvent
Okay, using Qt, I'd like to know how to detect the current state of the mouse at any point in time - without a MouseEvent.
Using QCursor::pos(), you can get its position, but is there a way to ...
0
votes
1answer
51 views
How can I make my application appear in the system tray?
How can I make my application appear in the system tray?
I already have a QDialog widget with parent as qApp->mainWidget() and disabled the task bar entry. Now I need it to appear in the system ...
0
votes
1answer
28 views
QDateTime to QString with milliseconds in Qt3
Is there a way in Qt3 to convert QDateTime into a QString and back to QDateTime, so that eventually QDateTime will contain information about milliseconds?
Thanks.
0
votes
0answers
23 views
How to arrange dock windows vertically in Qt LeftDock area?
I want to put 2 dock windows in LeftDock area in Qt3. Since LeftDock is horizontal area, it adds new dock window to the right side of the current dock window. But I want to add the new dock window to ...
0
votes
0answers
13 views
Qt3 program fonts compiled with VS2008
Qt3 program compiled with Visual Studio 2008 have very strange fonts on other window computers . On XP pro it's bold italic, on Win server 2003 it's so small that looks like a line (some dialog labels ...
0
votes
0answers
44 views
reimplementing QTable::PaintCell()
I am developing a gridview by sub classing Qt3's QTable to display matrix content. The matrix can be very large. I have overridden QTable::paintCell() and repainted unused cells in light grey color, ...
0
votes
0answers
66 views
Qt 3.x + Qwt - Advice on programming and plotting
I am looking for some guidance and advice from you people here, I got a peculiar situation where I would like your help. Just hear out my situation first with patience. Your contribution/reply will be ...
0
votes
0answers
24 views
embed IE inside qt3
I need your help.
I embed IE inside a Qt3 application, you can find a demo project (with .exe) here
I have the following issues with it:
1) handling keystrokes (like the tab key) (e.g. to change ...
0
votes
2answers
68 views
QScrollView with no scrollbars
im trying to make a QScrollView with around 100 different labels and buttons.
but after i add them scrollbad do not apear.
here is an example of the code i wrote:
self.btn = {}
self.scroll = ...
0
votes
0answers
50 views
Can i reuse QListViewItems in a QListView (qt3)
Is it possible, reusing somehow the QListViewItems of a QListView, if the list has to load too many items ? I've seen something like this in CocoaTouch, where a UITableView reuses items (iPhone/iPad ...
0
votes
1answer
409 views
Make a checkbox list in Qt4 [PyQt4]
Hey.
I'm working on a project, porting a software from Qt3 to Qt4. Its in PyQt, but I'm okay taking answers as if I was working with C++ and the originals Qt4 libraries.
In the old code, a ListView ...
0
votes
1answer
289 views
sample of standalone NPAPI adobeflash hosting application
Somebody can point me to opensource of sample of standalone NPAPI adobeflash hosting application?
0
votes
1answer
309 views
Missing rules XML file for qt's 'uic3 -convert'
I'm trying to run uic3 -convert to convert some QT3 .ui files to QT4.
When I run it, uic3 reports that it's unable to find the rules file (q3porting.xml).
Where does uic3 look for the ...
0
votes
1answer
144 views
Seeking advice on moving Qt 4 and Java applications between desktops on KDE 3
We've got a (perhaps?) unusual situation where we have a lot of applications built on Qt 4 and some applications built in Java (Swing) but we're using KDE 3. We're on Red Hat Enterprise Linux 5 and ...
0
votes
2answers
614 views
Why have QString in struct sometimes a bad-ptr?
I've got an complicated error. The software send PrintParamters to a Printer a couple of times. At a certain moment all QStrings of the Parameter Struct are broken (bad ptr)
Is there an general issue ...
0
votes
1answer
64 views
Margin in popup menu (qt3)
Is there any method to get rid of the huge margin on the right side? It appears to be constant, because adding some text to the menu items doesn't change its width at all.
0
votes
3answers
1k views
Qt, how to set text edit scroll bar to the bottom? C++
I have the text edit box as a chat window, but I was wondering if there was a way to set the scroll bar to be at the bottom to show the most updated message.
I am currently using Qt3 and C++.
...
0
votes
2answers
900 views