Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
673 views

How to create artificial nodes in QAbstractItemModel for QTreeView

my question is about Qt and its QAbstractItemModel. I have a map of strings and doubles (std::map<stringclass, double>) which I would like to present in a Qt widget. While I could use ...
1
vote
2answers
46 views

Alignment in a GridLayout in PyQt4

I'm trying to create a QGridLayout in PyQt4, and I can't figure out for the life of me how to change the alignment of the contents of the cells. The docs say that any nonzero value for the 5th (6th ...
1
vote
1answer
162 views

PyQt4 filename dialog

I am a bit of a novice so be kind ;-) I had a GUI that I made using PyQt4 and python 2.6 with a working file dialog, (ie you clicked a button and a window popped up and allowed you to pick a file to ...
1
vote
1answer
177 views

Qt - How to override a widget?

I've created a form using the Qt designer which includes a QToolButton. I can turn it using ui->favouriteToolButton. I used the designer because it's much more simple then code all the gui. ...
1
vote
1answer
44 views

QWizardPages to keep their own minimum sizes

I'm working with Qt (version 4.6 on Windows XP 32-bit and compiling in Qt Creator 2.0.0) and trying to get a QWizard to work out. First Problem: I have three QWizardPages in my QWizard so far. Each ...
1
vote
1answer
516 views

Qt: Detect Double-Click with Modkey (Shift, CTRL, etc.)

How can I detect whether a double click on a QWidget (QStatusBar, in my case) occured while a modifier key was held down? I can overload void QWidget::mouseDoubleClickEvent ( QMouseEvent * event ) to ...
0
votes
2answers
35 views

How to connect signals to slots manually in .ui files?

Since I'm using SCons instead of qmake, I have no project (.pro) file, and for this reason Qt Creator (I use it only to make GUI) refuses to connect signals to slots. I'd like to manually edit .ui ...
0
votes
2answers
55 views

QMainWindow not responding when OpenCV process is running

I'm using a custom OpenCV VideoProcessor-Class in my QtGui-Application. My MainWindow has 2 ViewerWidgets for displaying the Input and the Output frames produced by the VideoProcessor Object. The ...
0
votes
0answers
22 views

getting rid of padding in a QTableView

I have a QTableView that works fine on Linux and Windows, but has an extra 1pixel padding on OSX (see screenshot link). I tried to change the stylesheet to get rid of it, but it doesn't work Building ...
0
votes
1answer
19 views

How to display a screen and run some “background” tasks (not with thread)

I am trying to develop a Qt application for a touchscreen ; this application is running on an ARM system, with Qt Everywhere 4.7.2. In this application, I need to display a specific screen for login ...
0
votes
1answer
131 views

Running PyQt Webkit script with Xvfb from a shell script

I am trying to run a Python script that involves PyQt Webkit on a headless server using xvfb. The following command works when I run it from the command line, but not from a bash script: # ...
0
votes
1answer
50 views

QDockWidgets, set nested state from UIDesigner

I created a QtGui with the GuiCreator and added some DockWidgets. I can only allow the nested state from the property editor but how can I set it active for the DockWidgets? At runtime the user can ...
0
votes
2answers
226 views

How to know the file's type to save, using QFileDialog

About pyQt4 I prefer to use the static method for the getSaveFilename in the QFileDialog so that the user sees the Windows/Mac native dialog. My problem is that if the user doesn't type the file ...
0
votes
2answers
191 views

Benchmark application for Qt?

I would like to do some profiling and benchmarking of Qt. The purpose of the profiling and benchmarking is to get the better understanding of Qt, and see what functions take most of the time, where ...
0
votes
1answer
74 views

QPolygon: How do I obtain the edges of the polygon

I am using QPolygon class. Is there any method which gives the edges of the respective polygon?
0
votes
1answer
275 views

How to make selection on QGraphicsScene?

I'm writing a diagram editor in Qt with Graphics View Framework. Currently I'm just trying to create a simple Node (QGraphicsItem) on GraphScene (QGraphicsScene). I created a Canvas (QGraphicsView) ...
0
votes
1answer
96 views

When does QVBoxLayout recalculate the layout?

I have a window with a a QVBoxLayout in it. The layout has some child widgets (defined in a .ui file). In my window class' constructor, I create and assign a menu to the layout. The position of the ...
0
votes
2answers
596 views

How to run GUI application from userdefined boot time daemon server

Dear All, I am writing one simple server daemon and running with /etc/init.d/server its running properly but when i want to run one simple QT GUI with system() function , its not able to run it and ...
0
votes
3answers
273 views

Is there a simple way to restore widget sizes in Qt?

I'm looking for a way to preserve the size of windows in a Qt app. I've seen that there is the possibility of using the following method for every widget: saveGeometry() But really, I don't find ...