Luna::Window::MessageBoxIcon

enum MessageBoxIcon : u32
{
    none= 0
    information= 1
    warning= 2
    question= 3
    error= 4
}

Specifies the icon that will be displayed on the message box.

Options

  • none

    No icon will be displayed.

  • information

    Displays information icon. The shape of the icon is platform-specific, usually one icon with letter "i".

  • warning

    Displays warning icon. The shape of the icon is platform-specific, usually one yellow icon with symbol "!".

  • question

    Displays question icon. The shape of the icon is platform-specific, usually one icon with symbol "?".

  • error

    Displays error icon. The shape of the icon is platform-specific, usually one red icon with symbol "X".