Tagged Questions
A QWidget is the base class of all the user interface elements in the Qt framework.
8
votes
6answers
235 views
Qt: Can child objects be composed in their parent object?
In Qt, can I embed child widgets in their parent via composition, or do I have to create them with new?
class MyWindow : public QMainWindow
{
...
private:
QPushButton myButton;
}
...
8
votes
1answer
901 views
What Qt widget(s) to use for read-only, scrollable, collapsible, icon list
I'm relatively new to Qt, and am not entirely familiar with the out-of-the-box widgets. I have a somewhat (but not very) complex widget to create, and don't want to reinvent any wheels. What is the ...
6
votes
1answer
131 views
Why is QWidget's destructor not virtual?
Looking at qwidget.h, I found the destructor as below:
~QWidget();
I was wondering why this is not declared as virtual
6
votes
2answers
1k views
Finding a 3rd party QWidget with injected code & QWidget::find(hwnd)
Hey,
I have a Qt Dll wich I inject into a third-party Application using windows detours library:
if(!DetourCreateProcessWithDll( Path, NULL, NULL, NULL, TRUE,
...
5
votes
2answers
265 views
How can I prevent Gnome from showing two windows when doing alt-tab? (c++ qt app)
(see edits)
I'm developing a QT/c++ application under gnome.
The application a main window and QListBox child window.
Both of these windows show up as separate main windows when I alt-tab away ...
4
votes
1answer
327 views
Painting custom QWidget based on style sheet pseudo-state value
I have a custom QWidget (actually, derived from QAbstractButton) for which I have to implement my own paintEvent. How to I use the style sheet information?
For example, suppose someone defines the ...
4
votes
2answers
2k views
Qt Hide Taskbar Item
I have a custom QWidget and I simple don't want it to show up in the taskbar. I have a QSystemTrayIcon for managing exiting/minimizing etc.
4
votes
2answers
492 views
Resizing qt widgets when their children are hidden
I have the situation in the following image:
How would I go about resizing the widget when the retry child is hidden so that it looks as in the first image? The main layout is a QVBoxLayout, the ...
3
votes
1answer
109 views
QT hangs my toolbar and its buttons
I've created 2 classes, each:
has QWidget as a parent
has Q_OBJECT macros
inits some actions, creates menubar and toolbar, and connects actions to them
Then I created the main program file, ...
3
votes
1answer
109 views
Creating a window in Qt outside of main()?
Is it possible to make a window in Qt outside of the main() function like it's done in the tutorials? What's wrong with they way I did it here? There are no errors when I try to compile, but the ...
3
votes
1answer
449 views
Qt Stylesheets with derived classes
Can I use Qt stylesheets with a derived widget? I'd like to be able to define some custom properties on the widget (like various colors) and be able to define their value in a stylesheet.
Is this ...
3
votes
1answer
87 views
Get a list of all QObjects created in a Application
To get a list of all the QWidgets created in an application we can simply call QApplication::allWidgets().
I've read the documentation, and I haven't found anything like this to get a list of all ...
3
votes
2answers
1k views
Qt widget update later but when?
I'd like to know what happens exactly when I call a QWidget's update() method.
Here is the documentation:
http://doc.trolltech.com/4.5/qwidget.html#update
This function does not cause an
...
3
votes
2answers
2k views
Qt Increase QTabWidget's QTabBar size
I need to make the tabs that I have oriented at the bottom of my QTabWidget larger. We'll be using a touch-screen, so the default sizes are a little too small.
I see no easy way to do this (currently ...
3
votes
3answers
1k views
Painting Issue on QWidget outsite GUI thread
I am developing an appliation in which I want to continuously receive images from remote host and display them on my screen. for this I am following the given strategy
1) I have a main QWidget object ...
2
votes
1answer
43 views
Qt 4.4: disabled widgets receiving mouse events
As the title suggests, is there a way for a disabled widget to receive mouse events?
I'm using QWidget::setEnabled() for changing the appearance of widgets but I still want to receive their mouse ...
2
votes
3answers
113 views
How do I know if my Widget is obscured by another application or visible to the user?
Create a new widget, show it, and hide it behind another application.
Is there a way to find out if the widget is visible to the user?
For example, if you have two applications running and ...
2
votes
1answer
169 views
Detect if a QPushButton is being clicked
I'm trying to find out whether a button is being pressed or not from within the paintEvent(), so that I can draw the "down" state. However, I don't know where to find this information. I tried ...
2
votes
4answers
202 views
Qt - What exactly is QWidget
In the C++ GUI Programming with Qt 4 book, it mentions in an example in the first chapter that QWidget serves as the application's main window.
And, on the Qt Reference Documentation: ...
2
votes
1answer
380 views
Qt widget based on QWidget
I try to create my own widget based in QWidget. In constructor of the class i have:
Square(QWidget *parent = 0, const char *name = 0, WFlags fl = 0);
Square::Square(QWidget *parent = 0, const char ...
2
votes
1answer
1k views
Change table columns width on resizing window or splitter
Consider there is a QTablWidget and a QTextEdit. Both of them are in a horisontal QSplitte. Let the QTable widget has 2 columns.
The problem is to resize the table columns' width as you do resize ...
2
votes
1answer
3k views
Qt Show/Hide widget animation
I'm trying to implement a show/hide widget animation. The widget is a QDockWidget and therefore is inside the QMainWindowLayout.
Using QPropertyAnimation doens't seem to work, I got something looking ...
2
votes
2answers
863 views
Qt QHboxLayout cell size ssues
For those of you who haven't been reading my Qt questoins, I am learning Qt for a project. I have only limited experience with GUI design at all, and not in Qt.
I've got a horizontal layout that I ...
2
votes
2answers
505 views
Grab Information from “QWidget”
Anyone have any idea how to grab text from a QWidget window in a Windows application? This is what it looks like when I look at it using Winspector:
http://www.tightpoker.com/images/ftplobby.jpg
I ...
2
votes
2answers
2k views
Closing new nonchild window in Qt
i'm trying to make 2 windows. 2nd should be called in 1st. I don't connect them child->parent.
But when i called 2nd window and closed it 1st window closed too. What should i do?
Both windows are ...
2
votes
5answers
3k views
How to remove QWidgets from QSplitter
In my app have a window splitted by a QSplitter, and I need to remove an widget.
How can I do that? I can't find useful methods
1
vote
2answers
72 views
QT - Main Widget - Stack or Heap?
I am a little confused on whether I should prefer to initialize my main widgets on the stack or on the heap. In "C++ GUI Programming with QT 4," main widgets are initialized on the stack. Before I say ...
1
vote
1answer
55 views
How to use custom widget in Qt-Designer
I want to use a custom widget in the GUI-Designer of Qt-Creator IDE.
So i created a class which inherits from Qt's QWidget. It worked to place
it on a QMainWindow programaticaly, but have to do my ...
1
vote
0answers
71 views
Problems with QWidget delete and clean up memory used
Well, i'm a begginer with Qt development and i have a big problem. My project works with embedded Qt at Linux and for this i have care with used memory. Ok!
In my code i have a stack with QWidgets ...
1
vote
1answer
114 views
Making QListWidget resize its items to fill space
I've got a QListWidget and I've got a custom widget class, which I'm creating an instance of for each item appearing in the list widget.
But I can't figure out how to make my custom widget expand to ...
1
vote
0answers
98 views
Set consistent mouse cursor for QWidget
I have sub-classed QWidget to draw on it using mouse.
I use setCursor to change its cursor to cross shape.
It is working fine but as soon as I press the mouse button on it (for example to draw ...
1
vote
1answer
80 views
Border-image not working for QWidget
I have a class derived from QWidget. When I try to use the style-sheet to set the border-image, it appears to ignore it. I am using QT 4.4 and it looks like the QWidget should support border-image. ...
1
vote
1answer
118 views
Ignore minimum size when resizing QWidget
Is there a way to make a QWidget (and any subclass of it) completely ignore its minimum size? What I want is for a QPushButton to cut off when it is sized too small, rather than prevent the window ...
1
vote
1answer
116 views
Setting Background Stylesheet to QWidget shows on all controls
I have set the following CSS to the QWidget Stylesheet:
QWidget { background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #00b7ea, stop: 1 #009ec3); /* Chrome10+,Safari5.1+ */ }
It ...
1
vote
2answers
143 views
How can I add resizable widgets in Qt Creator?
How can I add resizable widgets in Qt Creator?
Specially widgets in QVBoxLayout or QHBoxLayout
1
vote
2answers
284 views
How to make a QWidget alpha-transparent
I need to create an alpha transparent widget, it's basically a navigation bar with a shadow and the widgets below need to be partially visible through the shadow. The widget loads a PNG then draws it ...
1
vote
1answer
77 views
Is there a way to drag QWidget over the QGraphicsView?
I want to drag custom items inherited by QWidget over the QGraphicsView? Any idea
Thanks
1
vote
1answer
127 views
Duplicate a QWidget
I need to be able to copy a Qwidget so I can duplicate a window because it will change during runtime. is this possible?
void Duplicate(QWidget * Show)
{
//I tried...
Qwidget Shw = *Show; //but ...
1
vote
1answer
56 views
Do QWidgets emits a signal when moved?
I need to know when a QWidget is being moved (when its x or y properties are changed). Is there any signal for that?
1
vote
2answers
575 views
Qt4: Placing QMainWindow instance inside other QWidget/QMainWindow
I'd like to place QMainWindow instance inside another QWidget (for example centralWidget of another QMainWindow).
I'm wondering why it doesn't work ? QMainWindow inherits directly from QWidget. ...
1
vote
1answer
140 views
Qt: Are non-rectangular QWidgets allowed to overlap?
If I have multiple non-rectangular custom QWidgets (e.g. circle-shaped buttons), can I overlap them?
It seems there is no way to let Qt know which parts of the widgets are opaque, so mouse event are ...
1
vote
2answers
131 views
how can I hide a widget that generated a signal in qt
Let's say we have more than one widgets and all of them have main menu button. so I connected all of the main menu buttons clicked signal to one slot, which is supposed to h
...
1
vote
2answers
625 views
Qt - QWidget: Cannot create a QWidget when no GUI is being used
I'm trying to run a simple Qt program, and when doing so, I get a console window mentioning: QWidget: Cannot create a QWidget when no GUI is being used, and the second line This application has ...
1
vote
1answer
184 views
Custom widget in ScrollArea is being squashed!
I have a qscrollarea and within that a qgridlayout. In the grid layout I create a number of custom widgets (for simplicity these widgets are simply a groupbox and a label) and add one on each row.
...
1
vote
1answer
156 views
Trouble loading Qt UI (with images) from plugin (.so)
I have a plugin that loads and shows a custom widget that displays an image (as a background for a QLabel) loaded from a resource file (resources.qrc). The problem I'm facing is that once the plugin ...
1
vote
3answers
193 views
How to check that Qwidget exist
Like in title how to check that child class from QWidget exist?
when i try something like that it break application end throw error
void MainWindow::slotAddLoginData() {
if(!addLoginData) {
...
1
vote
1answer
266 views
QWidget and setVisible() problem
I create a QWidget:
m_widget = new QWidget(parent); where parent is also a QWidget
then I set visible of m_widget to false
m_widget->setVisible(false);
after that I need to show m_widget
...
1
vote
1answer
394 views
How to hide a QWidget under its parent?
I have a modal QDialog, that on the click of a button slides a modeless child QDialog out from underneath it. The problem I have is that the child stays on top of its parent during the animation.
I ...
1
vote
1answer
2k views
Qt - change QWidget layout
Let's consider we have a QWidget and a layout named general_layout that contains other widgets and layouts. general_layout is set as the QWidget layout (setLayout(general_layout)).
Now I should to ...
1
vote
1answer
239 views
QT4 Designer - Implement Widget
I'm currently trying to get into QT4 and figure out a workflow for myself.
While trying to create a widget which allows the user to connect to a hostname:port some questions appeared. The widget ...