1
vote
1answer
21 views

Need held with instancing a QWidget with PyQt4

This code works: from PyQt4 import QtGui import sys app=QtGui.QApplication(sys.argv) window1=QtGui.QWidget() window1.show() window2=QtGui.QWidget() window2.show() But this doesnt: from ...
0
votes
1answer
29 views

Superimpose widgets in Qt designer

I have a Qt application and I would like to superimpose a button on a QTreeWidget using the layouts. In fact, when I click on an item, I want the button to set visible, and centered above the tree. ...
0
votes
1answer
21 views

Implementing PySide callout

I'm working on a GUI application using Python 2.7 and PySide (Qt wrapper). I want to have callout widgets floating above other widgets (similar to tool tips), but without using the standard tooltip ...
0
votes
1answer
25 views

What's kind of widget is the toolbox in qtdesigner?

I mean widget from which widgets could be transfered to form. I want make up some widget like that one. Maybe there already is some open source solutions in web. It would be great.
1
vote
2answers
69 views

QT - Adding widgets to horizontal layout step by step

I have a horizontal layout and when user enters a number, i am adding that number of widgets (which contain picture) to that layout. void MainWindow::on_pushButton_2_clicked() { for(int i=0; ...
0
votes
2answers
51 views

QT - Adding widgets to horizontal layout

i have an horizontal layout and i am adding widgets by using ui->horizontalLayout->addWidget(label); But adding strategy is not what i want. For example, when i add items, it first puts the ...
0
votes
1answer
51 views

Qt thread calculations output to own widgets in GUI?

So basically this program I'm manipulating uses threading in Qt to find all prime numbers within a specified range using a specified number of threads (up to a maximum of 4 threads). Each thread must ...
0
votes
0answers
21 views

Using MarbleWidget in Qt on OSX: plugin issues

I'm trying to use MarbleWidget in a Qt application, and I'm using Mac OSX. I managed to get Marble to compile, and copied header files, libraries, and plugins to appropriate places, and fixed them so ...
0
votes
1answer
55 views

How to change the index of QStackedWidget from a contained widget

I have a QStackedWidget that contains 2 layers of widgets (widget inside another widget). The final widget contains a multiplicity of buttons. How can I change the index of that QStackedWidget when I ...
0
votes
1answer
39 views

Guidance on creating a widget

I would like to display some values into a widget in a similar way as the mechanical counters in a power meter. I have so far only written a function to split the total value into a single digit ...
0
votes
1answer
91 views

How to resize an OpenGL widget inside a Qt form class

I have an OpenGL widget (myWidget) inside a QVBoxLayout (verticalLayout_2), in a Qt form class (MyForm). I want to resize the OpenGL widget when the form has been resized. What should I write inside ...
-1
votes
1answer
56 views

QSlider is not showing on widget (Qt)

I have simple tab with label and checkbox. I want to add slider, but slider is not showing. Method setGeometry wrong there? RollsTab::RollsTab(QWidget *parent) : QWidget(parent) { QFont ...
-1
votes
1answer
308 views

netbeans: how to add widgets to QT variable

I have seen posts in which people say that Qt 5 projects are now required to add widgets to QT variable and this is why simple Qt example in netbeans doesn't work: cannot include QtGui/QApplication -> ...
0
votes
1answer
64 views

how to create an overlaying frame with qt4 in python

I would like to know if it is possible and how to create an overlaying frame (or any other widget) at a fixed position that would overlaying the content of the MainWindow with PyQt4. The idea is to ...
0
votes
1answer
201 views

Custom widget in pyside (python/Qt) won't show up

I am just trying my first prototype in pyside (python/Qt). The application itself starts up fine, creates a window with widgets according to my layout. Threads are started and execute, all fine. ...
0
votes
1answer
23 views

qt widget for scrolled window enabling to port ouput of terminal

I am new to Qt and was wondering if there was a widget which could enable one to port the output of the terminal to a scrolled window like widget. Basically I am wanting it to use it in a plasmoid. ...
2
votes
1answer
87 views

Qt Resizing a window to fit an aspect ratio in a scroll area issue

I've made a preview object using Qt which is a container that has the screen widget inside it. In order to make its aspect ratio correct, when the width of the screen is changed the height also needs ...
1
vote
2answers
183 views

showing hidden dockwidget in qt

hi i create a dockwidget which i am starting it as hidden. The problem is that afterwards i cannot show it, while i can get the status correctly from the isHidden() function. The weird thing is that ...
0
votes
2answers
80 views

Name and implementations of the special “+” tab

I have always been wondering whether the special "+" tab used to add other tabs (as in internet browsers) had a special name. Also, is there any popular framework (Qt, wxWidgets, etc...) that has a ...
1
vote
1answer
196 views

Gtk-CRITICAL **: IA__gtk_widget_style_get: assertion `GTK_IS_WIDGET (widget)' failed

After a static build of my qt application ./configure -static -debug-and-release -confirm-license -nomake demos -nomake examples -nomake tools it works fine but I get several output messages ...
0
votes
3answers
189 views

Transition effect when showing a custom widget in Qt

I would like to progressively show a custom widget, something like beginning with 0 opacity and going to 100 in a given time. Is it possible to do it in a easy Qt way developed for this purpose? Or ...
0
votes
3answers
105 views

Qt widget opacity issue

I am trying to capture the mouse over event from a widget which is a subclass of QLabel in which I paint pixmaps. I just need to capture this event for creating a transparency effect by setting the ...
0
votes
1answer
62 views

Creating a function to place child widgets

I am working on a project that requires multiple instances to be placed inside a specific area. I am having trouble creating a function that will do that for me. Right now I have to manually set the ...
0
votes
0answers
111 views

Developing a GUI for a 2D game, what are the alternatives? [closed]

I'm currently writing a game using SFML and Box2D, but have come to the conclusion that I need a GUI (of course). I've done some re-search and have come up with two possible solutions: SFGUI - A ...
0
votes
2answers
62 views

QCalendarWidget with date

I want to have visual element that pop-ups on button press and allows user to choose date and time. Is it in Qt some visual widget like QCalendarWidget but also with time?
0
votes
1answer
80 views

QT - How to synchronize data between two widgets?

I have a QT program with a custom widget that I'm implementing. This widget is an Hexeditor, and it's already functional. But now I want to put on the window another instance of the same Hexeditor, ...
0
votes
1answer
202 views

How can I set QTabWidget's tab bar's length?

I have been able to resize the QTabWidget's QTabBar size, but the string inside is always limited to a fixed length. QTabWidget *tabWidget = new QTabWidget; tabWidget->setStyleSheet("QTabBar::tab ...
1
vote
2answers
253 views

Which widget to use for implementing image thumbnail browser (displaying tiles)?

I'm looking to essentially replicate this: What is the most appropriate Qt container widget for displaying my custom widgets containing image+subscript? I'm looking at QTableView and it seems to be ...
0
votes
1answer
49 views

make a new widget and use in a form

I'm new to the Qt Framework and Qt Creator, and I need to make a new widget with a UI contains some pushButtons, Labels, functions, and events and then use it in another form.ui. or come to Qt desiner ...
0
votes
1answer
43 views

How to programaticaly add a UI to a widget based on a Qtvtkwidget?

I am trying to write a program based of of this example i.e. a widget based on QVTKWidget, so that I can use the PCL Visualizer inside the widget, with no UI and the first step for me would be to add ...
0
votes
1answer
81 views

Adding custom QWidget during runtime

I'm trying to implement a custom widget hierarchy: QMainWindow -> QFrame -> MyWidget -> QFrame -> MySubWidget Here is how MyWidget class looks like: class MyWidget : public QWidget { ...
0
votes
1answer
147 views

Displaying lot of pixmaps with a QLabel under them on a QGraphicsPixmap

I need a widget where i can place a variety of clickable icons and under those icons some text using QLabel. This is an image: I know this will need some tweaking and sub-classing. What would be ...
1
vote
1answer
104 views

How to detect if focus shift from a widget inside a QWidget to one outside?

I'm programming in Python using Qt with PySide and I have custom QWidget defined in a file called editor.py which is inserted in my ui in windowUi.py using the promotion method in the Qt Designer. ...
1
vote
2answers
81 views

installing widgets for qt

I resently found a very useful set of widgets set for qt from http://www.wysota.eu.org/wwwidgets/ and I downloaded wwWidgets 1.0 installer for MinGW and simply installed it. now I can see those ...
1
vote
2answers
349 views

installing a qt widget for qt designer

I downloaded a very useful widget for my applications. A LED indicator from http://qt-apps.org/content/show.php/QLedIndicator?content=118610 But there is no README file or any instruction files. I ...
-1
votes
2answers
79 views

Unable to change widget inside StackedWidget

I am trying to replace a widget for another. I am using a StackedWidget. I have the following. First, I register add some widgets to the StackedWidget: self.stackedWidget.addWidget(w1) ...
0
votes
1answer
125 views

Qt open-source library to draw routers with links?

I want to draw a network topology diagram with qt. To simplify, I only need to draw routers, pcs and links between them, but I want the routers able to be dragged with links with mouse and to save all ...
0
votes
0answers
60 views

QT Proxy Widgets Animation

I'm creating a game using QGraphicsScene / QGraphicsView framework. I want to make each small object its own widget so that I can handle animations within each object while concurrently moving that ...
0
votes
2answers
129 views

QT Widget Pointer

I'm fairly new to QT and am struggling getting a basic painting example to work. I am creating a game where I instantiate a widget in my main game controller. I want to pass this to multiple different ...
0
votes
1answer
118 views

How to make QML component (widget) adjusts according to data

I have a Widget as QML component in Qt Quick application which is to be used in various screens to display contents. How can I use this particular QML component to adjust according to the items in ...
0
votes
2answers
90 views

Read-Only QT form

I am looking to make a QT form read-only, but NOT disabled. What I am trying to achieve is that the user is still able to use the controls on it, for example see what elements are there in a combo ...
2
votes
1answer
124 views

WPF Designer vs Qt Designer and Widget Parenting

I'm an experienced C++/Qt developer but a newbie C#/WPF developer, and I'm wondering if I'm missing something with the Visual Studio 2010 WPF designer. In Qt, all widgets have a parent. I found this ...
0
votes
1answer
219 views

QTableWidget::item() QTableWidget::cellWidget ()?

Does anyone know the relation between return value of QTableWidget::item(x, y) and QTableWidget::cellWidget (x, y) in the same QTableWidget and same row.column.
0
votes
1answer
417 views

Accessing Qt Layout created in UI from code?

This is probably the dumbest problem I have ever had, but I am extremely confused. I am trying to get started with layouts, but for some reason cannot figure this one out. I have tried adding a ...
1
vote
2answers
247 views

QGridLayout vs QHBoxLayout & QVBoxLayout

I have recently come back to Qt (tried it for previous projects and opted against it) and am really liking everything about it thus far. I am writing a TV Guide style application that will display ...
0
votes
2answers
161 views

QT: two layouts add the same widget

In Qt: I create a widget-ui class, and I want to make the widget appear in two different layouts in two separate base widget(or window). So I want to: widget_based_class* inside = new ...
0
votes
1answer
71 views

How to keep buttons close to each other (horizontally) in Qt widget?

QGridLayout *layout = new QGridLayout (); centralWidget->setLayout (layout); layout->addWidget (refresh, 0, 0); layout->addWidget (zoomIn, 1, 0); layout->addWidget ...
0
votes
3answers
94 views

QT - why specify parent with graphic widgets?

Question: Specifying a parent with Qt is always seem to be a good idea. However I don't understand why it is required in some particular cases. There is plenty examples of using QGraphicsView in the ...
2
votes
2answers
237 views

Qt Widget temporarily fullscreen

Consider a QWidget, normally a child in some Layout. Supposed I want to make it fullScreen for a while, then have it return to it's old spot. QWidget::setFullScreen() requires that the widget needs ...
1
vote
1answer
260 views

How would I draw a shadow under a widget in Qt?

I am wondering how I would draw a shadow under a widget (which isn't the main widget, say, a label.) in Qt. Would I neeed use a stylesheet or would I code it (in C++)?

1 2 3 4 5