mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
21 lines
409 B
C
21 lines
409 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Specifies the style of control to display.
|
||
|
enum class FlatStyle
|
||
|
{
|
||
|
// The control appears flat.
|
||
|
Flat,
|
||
|
// A control appears flat until the mouse pointer
|
||
|
// moves over
|
||
|
// it, at which point it appears three-dimensional.
|
||
|
Popup,
|
||
|
// The control appears three-dimensional.
|
||
|
Standard,
|
||
|
// The control appears three-dimensional.
|
||
|
System,
|
||
|
};
|
||
|
}
|