MQGroupBox class

(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

MQGroupBox

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);

id
A widget ID created outside the plug-in

It is a constructor.


virtual MQGroupBox::~MQGroupBox();

This method is a destructor. It is defined as a virtual function.


std::wstring MQGroupBox::GetText();

Return value
A title string

It returns a string displayed at a title.


void MQGroupBox::SetText(const std::wstring& text);

text
A title string

It specifies a string displayed at a title.


bool MQGroupBox::GetCanMinimize();

Return value
Whether a frame can be minimized or not

It returns whether a frame can be minimized or not when a title is clicked.


void MQGroupBox::SetCanMinimize(bool value);

value
Whether a frame can be minimized or not

It specifies whether a frame can be minimized or not when a title is clicked.


bool MQGroupBox::GetMinimized();

Return value
Whether a frame is minimized or not

It returns whether a frame is minimized.


void MQGroupBox::SetMinimized(bool value);

value
Whether a frame is minimized or not

It specifies whether a frame is minimized or not.


bool MQGroupBox::GetShowTitle();

Return value
Whether to show a title

It returns whether to show a title or not.


void MQGroupBox::SetShowTitle(bool value);

value
Whether to show a title

It specifies whether to show a title or not.