(new in Rev4.00)
MQWindow class manages a window. It inherits MQWidgetBase - MQWindowBase class.
Please refer the inherited class about member functions declared in the inherited class.
Class | |
MQWindow | Constructor |
~MQWindow | Destructor |
Static functions | |
GetMainWindow | Get a main window |
CreateWindow | Create a new window |
MQWindow::MQWindow();
MQWindow::MQWindow(int id);
MQWindow::MQWindow(MQWindowBase& parent);
It is a constructor.
virtual MQWindow::~MQWindow();
It is a destructor. It is defined as a virtual function.
MQWindow MQWindow::GetMainWindow();
It returns a main window in the main program.
A main window is usually used as a parent widget to create child windows or a child widgets. An unexpected malfunction may be caused when you operate the main window.
MQWindow *MQWindow::CreateWindow(MQWindowBase& parent);
It creates a new window.