QMainWindow is a class in Qt library that implements the main window of an application.

learn more… | top users | synonyms

7
votes
1answer
5k views

How to set QMainWindow title

How do I set the title of a QMainWindow? I tried googling and found setCaption(), but it appears it no longer works in Qt 4.
5
votes
2answers
1k views

How to resize QMainWindow after removing all DockWidgets?

I’m trying to make an application consisting of a QMainWindow, the central widget of which is a QToolBar (it may not be usual, but for my purpose the toolbar’s well suited). Docks are allowed below ...
4
votes
1answer
2k views

How keep a QWidget alwyas on top?

I have two buttons on my QMainWindow. One to btnShowKb and another btnHideKb. When i press btnShowKb it shows an QWidget. I want this QWidget always to be on top of all windows till I press btnHideKb. ...
4
votes
2answers
402 views

store variables from a qdialog to use in qmainwindow

I've created a dialog.h, dialog.cpp and a dialog.ui, and I have qlineedit in the dialog, as well as ok and cancel button, and i want to store those linedit information to use in a mainwindow in a ...
3
votes
1answer
491 views

active resizing of widgets inside mainwindow

I have a few widgets in a main window. i want the user to be able to resize the widgets inside the window as they please, just like how one would resize the main window. Do I have to make a layout ...
3
votes
1answer
99 views

Qt4: Hide minor widgets while maintaining size of central widget

I have a QMainWindow with a main "display" widget, and several minor widgets. I'd like the ability to toggle the minor widgets on/off when the mouse enters or leaves the window. I can achieve this ...
2
votes
1answer
384 views

Using setCentralWidget on a subclass of QWidget?

Not sure if I'm even asking this question correctly because I'm new to C++ and Qt. But, say I have a subclass of QWidget: class childofqwidget : public QWidget Can I pass a pointer to an object of ...
2
votes
2answers
269 views

Why doesn't menu get added?

I'm clearly missing something here; why doesn't the File menu get added in this little example app? import sys from PySide.QtGui import * class Window(QMainWindow): def __init__(self): ...
2
votes
2answers
807 views

Qt/win: showMaximized() overlapping taskbar on a frameless window

I'm building an Qt-Application without the default window border as a frameless window. The window functions are included by setting window flags in the QMainWindow like: ...
2
votes
1answer
638 views

More efficient central widget in a QMainWindow: QGLWidget VS QGraphicsView

I am using a QMainWindow for my app and want to do some openGL rendering. 2 approaches: 1) set as central widget a QGLWidget and do all the rendering there, OR 2) set as central widget a ...
2
votes
1answer
429 views

QT 4.8 padding in QMainWindow

I'm started studying QT. When I create a MainWindow and placing some widgets on it in ane layout, there is a gap between edge of window and widgets, like that: How can I switch off this gaps? ...
2
votes
1answer
662 views

PyQt: Accesing Main Window's Data from a dialog?

So, I'm using Python and PyQt. I have a Main Window that contains a QTableWidget, and a dialog that opens modally and has some QLineEdit widgets... All right so far, but I have 2 problems: When the ...
2
votes
1answer
382 views

PyQT4 - Replacing widgets on main window

I`m new in PyQT4 and I've faced the problem below. Some application must collect users' data on one screen and show next screen on button click. main.py app = QtGui.QApplication(sys.argv) #here I ...
2
votes
2answers
1k views

Problem with hidden QMainWindow: application crashes after QMessageBox is displayed

// main.cpp #include <QApplication> #include "mainwindow.h" int main(int argc, char* argv[]) { QApplication app(argc, argv); MainWindow* window = new MainWindow(); ...
2
votes
1answer
301 views

Transparent widgets are not moving with their parent

I have created a Qt application which brings up a transparent widget. I have another Qt application already running which brings up a form. This Qt application will act as a parent for my transparent ...
2
votes
1answer
469 views

Preserve aspect ratio during minimize/maximize when displaying image?

I'm trying to implement a scalable image widget with qt creator that will preserve the aspect ratio of the image. All the examples or posts I've found suggest extending QLabel and reimplementing ...
1
vote
1answer
125 views

Qt non-main windows

If I want to create a window that is not a main application window (like say I want a Preferences window to pop up when a preferences menu has been clicked in the main window), how would I accomplish ...
1
vote
1answer
78 views

Can I have a Qt project without mainwindow?

I'm starting a new Qt project. Is it mandatory to have a mainwindow in my project? I only have qdialogs and qwidgetsas I don't need a toolbar.
1
vote
2answers
2k views

adding child in QMainWindow

How can i add two child Widget objects in equal portion of QMainWindow. MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { TreeArea *ta= new TreeArea(this); TreeArea *ta1= ...
1
vote
3answers
149 views

QMainWindow destructor

Why the QMainWindow's destructor is not virtual? If I inherit a class MainWindow from QMainWindow and have some pointer attribute on it I can't delete the memory using MainWindow's destructor.
1
vote
2answers
573 views

Put QMenuBar at QMainWindow Bottom in QT

Is there any way to put a QMenuBar at screen bottom (I mean, at QMainWindow bottom)? I'm working on my thesis project, and my director asked me to put a QMenuBar at screen bottom. Is this possible?, ...
1
vote
1answer
115 views

Using signal to pop-up a screen

I'm having a little trouble using a signal to make a little screen appear. Shortening all i have so far, this following code should show my problem. import sys from PyQt4 import QtGui, QtCore qApp = ...
1
vote
1answer
144 views

Qt Error segmentation fault when trying to show window

I have a class ClientWindow. I have created several instances of it and appended the their pointers to a a list. If i try to show any of the windows however, I get "Segmentation fault (core dumped)" I ...
1
vote
1answer
587 views

QMainWindow flashes and disappears when called from another QMainWindow

This fairly minimal code creates a systray item with three right click options. One is an instance of QDialog, another QMainWindow, and also Quit. It's for a systray-driven app that will have some ...
1
vote
1answer
168 views

Another Window over QMainWindow in Qt

Can i have another window over main window in Qt , and how can i implement it? I have a plugin which must return another window. I created in plugin a QWidget and set it as centralWidget but my app ...
1
vote
1answer
1k views

react on the resizing of a QMainWindow for adjust widget's size

How do I react on the resize of a QMainWindow? I have QTextBrowsers in a QScrollArea and I adjust them to the size of the content on creating them (the only thing that should scroll is the ...
1
vote
2answers
659 views

Add QTextEdit objects to a QMainWindow

I seem to be having an issue. Objective: I want to dynamically add QTextEdit to a QMainWindow, I have a lot of data I wish to split amongst various QTextEdit objects. I've been looking at ...
1
vote
1answer
39 views

Qt Designer can't promote QMainWindow

There is something I do not understand about Qt Designer. I have been working with it for a while now, and still I always end up editing the .ui files manually. As it can be seen in every single ...
1
vote
1answer
54 views

Application window on Multi monitor screen and centre placement

I've a QMainWindow, which is launched by another application. The problem is, in a multimonitor setup, the application launching my QMainWindow, might reside on the 3rd screen, but my window will ...
1
vote
1answer
204 views

Refreshing a layout requires a resize?

I'm trying to refresh a QWidget on a QMainWindow, actually I just change it's layout which is a QVBoxLayout filled with QGroupBoxs So, when a certain signal is emited, the QMainWindow hide all the ...
1
vote
1answer
222 views

child QMainWindow title bar disappeared on Mac OS X (add more description)

I develop a program on mac OS X using Qt 4.8 as the title. Now I'm facing a problem that I spent a lot of time on it but still cannot solve. I have a QWidget (called A) which will open a QMainWindow ...
1
vote
1answer
625 views

Qt WindowMaximize not changing geometry (C++)

So I'm making a web browser as my first Qt project (surprise!) and I'm wondering why calling setWindowState(Qt::WindowMaximized) is not changing window geometry. I have this code: From mainwindow.h: ...
1
vote
4answers
2k 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
898 views

Show QMainwindow in the middle of the screen

I want show my project main window in the middle of the screen . when i call "self.show()" then the window show in the middle of the screen .
1
vote
1answer
74 views

QMainWindow - wait untill 'show' function is done

Is there a signal that tells when 'show' function finishes? I have a problem in my code: If I write : QMainWinObj.show(); QMainWinObj.someGuiFunc(); the code doesn't work. But, if I write: ...
1
vote
1answer
122 views

How to add a floating toolbar to QFrame in PyQt4?

I have made a stand alone application inheriting from base class QtGui.QFrame, and now I want to add a floating toolbar to it as can be done in a QMainWindow. How should I do it?
1
vote
2answers
106 views

widgets freezing after minimise window

I am using Qt5 Creator for an app, and in the main window's constructor I call this->setWindowState(Qt::WindowMaximized). The radio buttons and the check box work fine (i.e. easily toggle between ...
1
vote
1answer
203 views

How to rezise the contents of a QMainWindow according to window size

I have a QMainWIndow with several widgets, one of which is a QTableView. The Main WIndow is resizable. How do I resize the contents of the window automatically, the font and everything, i.e. when ...
1
vote
0answers
89 views

Qt - GLWidget - get focus follows mouse between 2 QMainWindow

I begin with a Qt/OpenGL application. I have a first QMainWindow which contains a GLWidget subclass ("widget_2") of QGLWidget. This GLWidget renders a graphics animation. From the menu of this ...
0
votes
1answer
75 views

Qt:How to create a Window that does not minimize and do not block background GUI

I have a QMainWindow that is a child to another window. When the user clicks anywhere in the parent window, I do not want the child window to be minimized. The child window should lose the focus and ...
0
votes
1answer
17 views

How to derive from a Qt MainWindow class?

I have a Qt 4 base class that creates the main application dialog: class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = 0); }; ...
0
votes
1answer
80 views

Taking data from a Dialog in Qt and using it in a Ui

So I'm making a text editor using Qt and right now I have a button that opens a dialog called "Format text". I want it to work kind of like the dialog in notepad called "font" where you select a few ...
0
votes
3answers
399 views

hide qdialog and show mainwindow

I have a Qdialog in which i get some inputs to use on my mainwindow. so it must appear first than mainwindow. the problem is that my mainwindow does not show up. here's my main.cpp #include ...
0
votes
1answer
640 views

Exec() QDialog after MainWindow appears

I want to make a Modal QDialog appear (with exec()) after the MainWindow appears itself. I tried to call exec in MainWindow::showEvent ( QShowEvent * event ) but It still show before the ...
0
votes
1answer
101 views

QtDesigner layout confusion

I've been playing around with QtDesigner for some time now, but I can't find a real solution for my desired layout. Here's what I'm aiming for, kind of an Eclipse RCP-like layout: Five ...
0
votes
1answer
337 views

Qt QMainWindow difference between closing by user and abort via system

Could you tell me how can I determine between QMainWindow close event initiated by user and abonormal termination by SIG_KILL in Linux or TerminateProcess() in Windows? That's because the difference ...
0
votes
1answer
18 views

QDialog modality vs QMainWindow

I have a QMainWindow object parent to a QDialog Object. When I call the QDialog with exec() it stays open, but I can't use the QMainWindow at the same time. If I use show() instead, the QDialog opens ...
0
votes
1answer
35 views

QtMainWindow initialized event

I need to start a job when QMainWindow and all its widgets are initialized and rendered. How can I catch such event?
0
votes
3answers
40 views

Calling a QMainWindow method in its instance class method

I have a MainWindow class class MainWindow : public QMainWindow { customClass * obj; public: void foo(bool); } Here is my customClass: class customClass { void foo1(bool); } Now, I ...
0
votes
1answer
138 views

Resolution handling in QMainWindow

I've a QMainWwindow, and I've fixed its size. i.e. I've set Minimum and maximum size of the window to the same number. Could anyone tell me whether this will be a problem if I'm to use this in ...

1 2 3