A QWidget is the base class of all the user interface elements in the Qt framework.

learn more… | top users | synonyms

0
votes
1answer
10 views

How to avoid QWidget from going out of sight

Is there a way to avoid a QWidget from going out of sight? I've got a line connecting some points; every point shows a widget (always the same) with some values; if I move the mouse over a point ...
2
votes
2answers
40 views

Interpreting QCloseEvent differently

I have a desktop windows application programmed in C++ with Qt. The application has several top - level windows which occasionally need to be closed and recreated programmatically. Also, when the user ...
0
votes
2answers
27 views

Is Hidden QWidget object receives signals

Simple Query: If GUI widget window is hidden does it receives signals from other objects? In our Qt application we have seen this issue/behaviour. However, when window is shown it receives and ...
0
votes
2answers
33 views

QWidget is not updating when using show instead of exec

In my project, I need to create a non-blocking QWizard on the top of my Mfc application. To do this, I followed the instruction here (link) Doing this have a strange side-effect, it looks like that ...
2
votes
1answer
36 views

How can I prevent a QWidget from painting, but still respond to events?

I have a QGLWidget that renders an OpenGL scene inside a Qt application. I would like to add some other translucent Qt widgets that are overlaid on top of the QGLWidget. This is more difficult than ...
0
votes
1answer
35 views

Add QRadioButton into QWidget without layout

I am trying to do something that I thought it would be terribly easy : Adding QRadioButton into my QWizardPage without any layout. The following code that adds QRadioButton is being called when user ...
0
votes
1answer
19 views

Custom-shaped QWidgets disappearing

I am unsuccessfully trying to modify Qt's WindowFlags example in order to have a custom Widget. At first it seems quite easy, but I can't figure out why it doesn't work. The only addition to the ...
0
votes
3answers
30 views

QPlainTextEdit force redraw

I'd like to force a redraw over a QPlainTextEdit widget, because my highlighting rules changed. However, all lines and blocks aren't redrawn, respecting the new rules. This is true because if I ...
0
votes
0answers
24 views

Unable to get the correct QWidget width after expansion

I am trying to embed a Qtreeview inside a QWidget. The user has the choice of expanding the QWidget. The width of the columns in the Qtreeview are calculated based on the current QWidget width. There ...
0
votes
0answers
21 views

Resizing Qt Widgets based on Window size

I have certain Qt widgets inserted into QLayouts that are children of a Qt Window. I am trying to add a suggested size that the widgets need to be initialized with. I would also like Qt to resize the ...
0
votes
1answer
34 views

dock widget loaded from separate ui file to main window

I'm building an application using PySide and would like the ability to load widgets from separate .ui files. below is some code I've tried out but it wont let me dock the dock widget loaded separately ...
-1
votes
1answer
32 views

make Custom QWidget selectable

I'm working on a boardgame and I'm trying to make QWidgets (Rectangles) selectable. So I have a BoardView (inherited from QWidget) which contains BuildingViews, PlantationViews (both inherited from ...
0
votes
0answers
35 views

link qwidget to qml

I'm try to link a a qwidget to my qml project. In fact, I want play a video on qml component. To play the video, I use mplayer. My problem is to link the qwidget target for the video and a component ...
1
vote
0answers
11 views

QWidget::setCursor on MacOS X does not work second time

Qt 5.0.1, MacOS X 10.8.3 Setting cursor from resource QPixmap works only first time. All consequent calls to QWidget::setCursor for another cursors created from QPixmap apply first cursor. Same if ...
0
votes
1answer
34 views

Why I do have strange extra space?

I have a SingleTweetWidget to display a tweet. If I put it into a QScrollArea, everything is working fine. class TweetListWidget(QtGui.QWidget): def __init__(self, client=None, parent=None): ...
0
votes
1answer
49 views

How to check current cursor shape in Qt

Qt 4.8 on Fedora 17 x64 In my QWidget::mouseMoveEvent, I am trying to check to see if the cursor is currently set to either Qt::SizeVerCursor or Qt::SizeHorCursor, but the QCursor returned by calling ...
0
votes
2answers
66 views

passing a parameter between two QWidget forms in QT

I'm new to QT and i'm trying to pass a parameter between two forms but i'm not able to do that ..could anybody help me please by giving me a simple example of passing a string constant "parameter" ...
0
votes
0answers
10 views

Qt widget/Java integration

I'm wondering if anyone has tried to integrate a java program into a Qt widget? I have a simple Qt project I am working on in order to learn Qt and would like to have a widget that does this ...
0
votes
1answer
22 views

Accessing methods from another class inside a QWidget

I have a class/ QDialog (let's call it "Frame") that contains other classes. This is what it looks like: In the above screenshot, everything inside the green rectangle is actually a separate ...
0
votes
1answer
62 views

Add widgets to a ScrollArea

I am creating a window dimanica to the downloads list. But the scrollbar does not work and the "widgets children" are "cut". Where can I be wrong? Thanks. Source: QWidget *central = new ...
3
votes
0answers
99 views

QDoppelganger (clone a QWidget into another container)

Overflowers: We have a complex dock widget with several complex, aggregate QWidgets in it. I need to allow users to minimize the dock widget down to a ribbon (as a QToolBar), containing only the most ...
1
vote
2answers
55 views

Qt5: Name in Taskbar unknown whereas window title is correct

I set the window title by QWidget::setWindowTitle("test"); so the title of the window is "test". But in the taskbar it's displayed as "unknown". What's the correct way to set the taskbar name? ...
0
votes
0answers
15 views

PyQt Adding menus that are defined in other modules

I am trying to develop a modular (plugin) PyQt Application. I am talking here about a plugin that may have been written by another developer and that extends my application. At application start up ...
2
votes
0answers
41 views

pyqt - displaying widget on top of widget

I'm making an application that shows a map of an area and I'm trying to draw nodes on top of it which can represent information. I made it all worked but did so simply by making 1 custom widget which ...
1
vote
2answers
77 views

How to disable drag of QWidget with Qt::CustomizeWindowHint?

I create simple QWidget with Qt::Window | Qt::CustomizeWindowHint flags + fixed size (OS: Windows 7). How can I disable dragging of this window by the top border? Window created without title bar - ...
0
votes
1answer
43 views

QWidget doesn't close when main window is closed

I'm trying to make a main window (QWidget) which open a new QWidget when a button is clicked but when I close the main window, the QWidget recently opened doesn't close. main.cpp QApplication ...
0
votes
2answers
88 views

QWidget pos() not updated during resizes involving origin

I am desperately failing at the supposedly simple problem to obtain the position and geometry of a Qt window on the screen. I originally stumbled upon this problem in a Python/PyQt context, but have ...
0
votes
1answer
42 views

Change QWizard buttons size

I am trying to do something that looks easy, but I cannot make it working. I want to make buttons bigger in my QWizard. Here is the code : #include "wizard.h" #include "ui_wizard.h" #include ...
0
votes
0answers
10 views

QWidget is raised when mouse over it

I have a problem with my Qt application, which has 2 QWidgets as windows: A & B. When I move the mouse over 'A', a child QWidget C is shown for 2 seconds. The problem is when I move the mouse ...
0
votes
0answers
53 views

Qt, QWidget, QTabWidget, QTabBar: How to move the text to the bottom of icon?

By default, the text is always on the right-side of the tab icon... What should I do to move the text to the bottom of it ? And is there an option to do icon/text alignment ?? (I'm designing the ...
1
vote
0answers
46 views

Qt: set locations for ToolTip

I need to set tooltip visible when mouse is located on the rectangles with known coordinates. How to organize that because I know how to make tooltip for a whole QWidget, but I need for exact ...
0
votes
1answer
38 views

Qt: setting QLabel coordinates inside Widget

I'm writing a day schedule and got some troubles: I'm drawing a rectangle on the scheme (rect = event) and I need to put label directly inside of the rectangle. Are there any ways to do that? P.S. At ...
0
votes
1answer
93 views

QTableWidget::setCellWidget() disables signals from QTableWidget?

I have a QTableWidget instance with its cellEntered(int,int) signal associated to a slot X (that higlights the row in which the cell is contained). Also I have one column containing check boxes. The ...
0
votes
1answer
54 views

MDIsubwindow inside mdi subwindow Qt

I only wants to know if it is possible to do in QT what I'm imaging: I want to open several different Windows (lets say widgets) inside several MIDsubwindows. So the MDIsubwindows functionality ...
0
votes
1answer
56 views

Qt: enterEvent and leaveEvent doesnt work

I have strange problem with mouse events in Qt. I have following code: #ifndef QSTONEFIELD_HPP_ #define QSTONEFIELD_HPP_ #include <QtGui> #include <QWidget> class QStoneField : public ...
0
votes
1answer
89 views

QWidget when setMaximumSize Maximize button doesn't work

I have a QWidget which have an horizontal layout which holds a QScrollArea. When I add a widget to the QScrollArea, I change the maximum size for the container QWidget with: ...
1
vote
3answers
70 views

Make QWidget disappears after click not on it

I'm showing QTableWidget, and want it to disappear after some item in this table was selected and if user clicked outside QTableWidget area. connect(tableWidget, SIGNAL(itemClicked(QTableWidgetItem ...
0
votes
1answer
48 views

Setting CSS style through web pages and QWidgets

I'm creating a Qt application with some web pages loaded on QWebViews and also some plain QWidgets, all inside a QMainWindow. Both the webpages and widgets are going to have some checkboxes here and ...
0
votes
2answers
118 views

How do I use QPainter in only one cpp file?

here's my code: #include<QApplication> #include<QWidget> #include<QPaintEvent> #include<QPainter> int main(int argc,char**argv) { QApplication app(argc,argv); QWidget*wid=new ...
0
votes
1answer
79 views

QWidget::setFixedHeight() not working/still resizable

I recently moved to Qt5 and encountered a problem i'm not getting in Qt4. I have a modal dialog that needs to have a fixed height but a resizeable width. For demonstration here's a stripped down ...
2
votes
1answer
516 views

A qt5 simple app doesn't run in windows 7

I use Qt 5.0.1 and Qt Creator 2.6.2 in W7. I tried to run a simple app from examples which contains only a window ("Widgets tutorial - creating a window"). When I run it in Qt Creator, it works. But ...
0
votes
1answer
50 views

How to get widget background QColor

I am trying to find out the background color of a QWidget or QGLWidget so that I can use it with qglClearColor() to make the OpenGL part appear natively within the widget (without for example a black ...
0
votes
1answer
58 views

Modifying QWidget before putting it in QTableWidget

In my QT UI, I need to create a QTableWidget in which the user can add a double to each cell. The table has four columns: the first column is a value from 0-255, the second column to fourth columns ...
1
vote
0answers
66 views

Custom shaped QWidget and setmask

I want to create custom shaped qwidget. Im using MDI, and want to create tabshapped widget inside mdiarea (widget would look like tab but have funcionality like window). I draw .png file which I use ...
0
votes
1answer
142 views

creating several OpenGL widgets in QMainWindow

I work with Qt5 and must code something like simple 3D-editor. I need to have 4 projection-views in my main window (for different scene-projections). I saw OpenGLWindow example, but there was only ...
0
votes
1answer
216 views

Qt::Pixmap in Qwidget doesn't show up in MainWindow

Here is another newbie to Qt. What I need to do is to have a scrollable Area in the center of MainWindow, which displays images, and allows user to paint on the image. Since I cannot add a QPixmap ...
0
votes
0answers
13 views

How to relate a QPushPutton to an element in a list of objects

I want to create a list of small layouts with a line edit showing the name + edit name btn + delete item. The idems are objects i have created.They have unique names. The line edit is not editable ...
0
votes
2answers
86 views

QWidget - Not sure where to start

I'm doing a college project in QT with C++. I basically have it all done, but I kind of want to end of a flourish! At the endgame, you get to the last room and press the control panel and a keypad ...
0
votes
1answer
70 views

Delete ellipse in qwidget created using qpainter

I have elipses on QWidget that are drawn using QPainter, is there a way to delete a certain ellipse (at a certain coordinate)? Thanks
0
votes
1answer
285 views

Position pop up window over a QWidget in runtime

I know there are answers, but they don´t satisfy my question. It´s not working for me. I have a simple custom widget called PopUp. It inherits the SmartPanel which is a styled panel and just ...

1 2 3 4 5 7