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
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 win
I have an issue capturing the key and mouse events. I have a class which inherits QGLWidget. I invoke a context menu QCustomContextMenu by setting the context menu policy of the widget. As the context
i\'m having difficulties implementing custom widget rendering in a QListView. I currently have a QListView displaying my custom model called PlayQueue based on QAbstractListModel.
I\'m developing a project, and I first began making it without GUI, but now I\'m porting it to Qt, but I have a problem.
I\'d like to place QMainWindow instance inside another QWidget (for example centralWidget of another QMainWindow).
I\'m trying to create a delegate to draw custom widgets as elements in a listview on icon mode. I have it more or less working but I can\'t get the widgets to draw in the right place, it seems they ar
In Qt, can I embed child widgets in their parent via composition, or do I have to create them with new?
How can I pass data from one form to another in Qt? I have created a QWidgetProgect -> QtGuiApplication, I have two forms currently. Now I want to pass data from one form to another.
In my previous thread, people here told me, that every widget has a parent which helps in cases of deletion, i.e. when the parent gets deleted, the child gets automatically thrown out to /dev/null.