mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-01 11:33:48 +00:00
17 lines
345 B
C++
17 lines
345 B
C++
|
|
#include "UnitTest.h"
|
||
|
|
#include "Gwen/Controls/GroupBox.h"
|
||
|
|
|
||
|
|
using namespace Gwen;
|
||
|
|
|
||
|
|
class GroupBox2 : public GUnit
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
GWEN_CONTROL_INLINE(GroupBox2, GUnit)
|
||
|
|
{
|
||
|
|
Gwen::Controls::GroupBox* pGroup = new Gwen::Controls::GroupBox(this);
|
||
|
|
pGroup->Dock(Pos::Fill);
|
||
|
|
pGroup->SetText("Group Box");
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
DEFINE_UNIT_TEST(GroupBox2, L"GroupBox");
|