class ui.GroupBox

class GroupBox: ui.Widget {
    // properties

    string_t autoget property m_title;
    ui.Layout* autoget property m_layout;
    bool autoget property m_isCheckable;
    bool bindable autoget property m_isChecked;

    // construction

    construct(
        string_t title = null,
        ui.Layout* layout = null
    );

    construct(ui.Layout* layout);
};

Inherited Members

public:
    // properties

    int autoget property m_minimumWidth;
    int autoget property m_minimumHeight;
    int autoget property m_maximumWidth;
    int autoget property m_maximumHeight;
    ui.SizePolicy autoget property m_horizontalSizePolicy;
    ui.SizePolicy autoget property m_verticalSizePolicy;
    int autoget property m_horizontalStretch;
    int autoget property m_verticalStretch;
    bool autoget property m_isVisible;
    bool autoget property m_isEnabled;
    string_t autoget property m_toolTip;
    string_t autoget property m_styleSheet;

    // methods

    void setFocus();