(new in Rev4.00)
MQGroupBox class manages a group box. Multiple child widgets can be contained horizontally or vertically in the frame. It inherits a MQFrameBase class.
Please refer the inherited class about member functions declared in the inherited class.
Class | |
Constructor | |
~MQGroupBox | Destructor |
Member functions | |
GetText | Get a title string |
SetText | Set a title string |
GetCanMinimize | Get a minimizing capability |
SetCanMinimize | Get a minimizing capability |
GetMinimized | Get a minimized status |
SetMinimized | Set a minimized status |
GetShowTitle | Get a title showing |
SetShowTitle | Set a title showing |
MQGroupBox::MQGroupBox();
MQGroupBox::MQGroupBox(int id);
It is a constructor.
virtual MQGroupBox::~MQGroupBox();
This method is a destructor. It is defined as a virtual function.
std::wstring MQGroupBox::GetText();
It returns a string displayed at a title.
void MQGroupBox::SetText(const std::wstring& text);
It specifies a string displayed at a title.
bool MQGroupBox::GetCanMinimize();
It returns whether a frame can be minimized or not when a title is clicked.
void MQGroupBox::SetCanMinimize(bool value);
It specifies whether a frame can be minimized or not when a title is clicked.
bool MQGroupBox::GetMinimized();
It returns whether a frame is minimized.
void MQGroupBox::SetMinimized(bool value);
It specifies whether a frame is minimized or not.
bool MQGroupBox::GetShowTitle();
It returns whether to show a title or not.
void MQGroupBox::SetShowTitle(bool value);
It specifies whether to show a title or not.