Lua
C++
Edit

CreatePanel

This function creates a Panel widget. The Panel widget is a rectangular area for framing child widgets.

Syntax

Parameter Description
x initial x position of the widget
y initial y position of the widget
width initial width of the widget
height initial height of the widget
parent parent of the widget
style optional widget style, can be PANEL_DEFAULT, PANEL_BORDER, or PANEL_GROUP

Returns

Returns a new panel widget.

Example

#include "UltraEngine.h"

using namespace UltraEngine;

int main(int argc, const char* argv[])
{
    //Get the displays
    auto displays = GetDisplays();

    //Create a window
    auto window = CreateWindow("Ultra Engine", 0, 0, 800, 600, displays[0], WINDOW_TITLEBAR | WINDOW_RESIZABLE);

    //Create User Interface
    auto ui = CreateInterface(window);
    auto sz = ui->root->ClientSize();

    //Create widget
    auto panel = CreatePanel(50, 50, sz.x - 100, sz.y - 100, ui->root);
    panel->SetColor(0, 0, 0, 1);
    panel->SetLayout(1, 1, 1, 1);

    while (true)
    {
        const Event ev = WaitEvent();
        switch (ev.id)
        {
        case EVENT_WINDOWCLOSE:
            return 0;
            break;
        }
    }
    return 0;
}
Copyright © 2024 Ultra Software.
All rights reserved.