mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
523 B
C++
17 lines
523 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Forms
|
|
{
|
|
// Specifies responsibility for drawing a control or portion of a control.
|
|
enum class DrawMode
|
|
{
|
|
// The operating system paints the items in the control, and the items are each the same height.
|
|
Normal = 0,
|
|
// The programmer explicitly paints the items in the control, and the items are the same height.
|
|
OwnerDrawFixed = 1,
|
|
// The programmer explicitly paints the items in the control manually, and they may be different heights.
|
|
OwnerDrawVariable = 2
|
|
};
|
|
} |