Package org.lwjgl.system.windows
Class RECT
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.system.windows.RECT
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class RECT extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RECT.Buffer
An array ofRECT
structs.
-
Constructor Summary
Constructors Constructor Description RECT(java.nio.ByteBuffer container)
Creates aRECT
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
bottom()
the y-coordinate of the lower-right corner of the rectangleRECT
bottom(int value)
Sets the specified value to thebottom()
field.static RECT
calloc()
Returns a newRECT
instance allocated withmemCalloc
.static RECT.Buffer
calloc(int capacity)
Returns a newRECT.Buffer
instance allocated withmemCalloc
.static RECT.Buffer
calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newRECT.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static RECT
calloc(org.lwjgl.system.MemoryStack stack)
Returns a newRECT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static RECT
callocStack()
Deprecated.static RECT.Buffer
callocStack(int capacity)
Deprecated.static RECT.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static RECT
callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.static RECT
create()
Returns a newRECT
instance allocated withBufferUtils
.static RECT.Buffer
create(int capacity)
Returns a newRECT.Buffer
instance allocated withBufferUtils
.static RECT
create(long address)
Returns a newRECT
instance for the specified memory address.static RECT.Buffer
create(long address, int capacity)
Create aRECT.Buffer
instance at the specified memory.static RECT
createSafe(long address)
static RECT.Buffer
createSafe(long address, int capacity)
int
left()
the x-coordinate of the upper-left corner of the rectangleRECT
left(int value)
Sets the specified value to theleft()
field.static RECT
malloc()
Returns a newRECT
instance allocated withmemAlloc
.static RECT.Buffer
malloc(int capacity)
Returns a newRECT.Buffer
instance allocated withmemAlloc
.static RECT.Buffer
malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newRECT.Buffer
instance allocated on the specifiedMemoryStack
.static RECT
malloc(org.lwjgl.system.MemoryStack stack)
Returns a newRECT
instance allocated on the specifiedMemoryStack
.static RECT
mallocStack()
Deprecated.static RECT.Buffer
mallocStack(int capacity)
Deprecated.static RECT.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.static RECT
mallocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.static int
nbottom(long struct)
Unsafe version ofbottom()
.static void
nbottom(long struct, int value)
Unsafe version ofbottom
.static int
nleft(long struct)
Unsafe version ofleft()
.static void
nleft(long struct, int value)
Unsafe version ofleft
.static int
nright(long struct)
Unsafe version ofright()
.static void
nright(long struct, int value)
Unsafe version ofright
.static int
ntop(long struct)
Unsafe version oftop()
.static void
ntop(long struct, int value)
Unsafe version oftop
.int
right()
the x-coordinate of the lower-right corner of the rectangleRECT
right(int value)
Sets the specified value to theright()
field.RECT
set(int left, int top, int right, int bottom)
Initializes this struct with the specified values.RECT
set(RECT src)
Copies the specified struct data to this struct.int
sizeof()
int
top()
the y-coordinate of the upper-left corner of the rectangleRECT
top(int value)
Sets the specified value to thetop()
field.
-
-
-
Constructor Detail
-
RECT
public RECT(java.nio.ByteBuffer container)
Creates aRECT
instance at the current position of the specifiedByteBuffer
container. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
left
public int left()
the x-coordinate of the upper-left corner of the rectangle
-
top
public int top()
the y-coordinate of the upper-left corner of the rectangle
-
right
public int right()
the x-coordinate of the lower-right corner of the rectangle
-
bottom
public int bottom()
the y-coordinate of the lower-right corner of the rectangle
-
set
public RECT set(int left, int top, int right, int bottom)
Initializes this struct with the specified values.
-
set
public RECT set(RECT src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static RECT malloc()
Returns a newRECT
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static RECT calloc()
Returns a newRECT
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static RECT create()
Returns a newRECT
instance allocated withBufferUtils
.
-
create
public static RECT create(long address)
Returns a newRECT
instance for the specified memory address.
-
createSafe
@Nullable public static RECT createSafe(long address)
-
malloc
public static RECT.Buffer malloc(int capacity)
Returns a newRECT.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static RECT.Buffer calloc(int capacity)
Returns a newRECT.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static RECT.Buffer create(int capacity)
Returns a newRECT.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static RECT.Buffer create(long address, int capacity)
Create aRECT.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static RECT.Buffer createSafe(long address, int capacity)
-
mallocStack
@Deprecated public static RECT mallocStack()
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static RECT callocStack()
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static RECT mallocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)
instead.
-
callocStack
@Deprecated public static RECT callocStack(org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)
instead.
-
mallocStack
@Deprecated public static RECT.Buffer mallocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead.
-
callocStack
@Deprecated public static RECT.Buffer callocStack(int capacity)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
mallocStack
@Deprecated public static RECT.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)
instead.
-
callocStack
@Deprecated public static RECT.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)
instead.
-
malloc
public static RECT malloc(org.lwjgl.system.MemoryStack stack)
Returns a newRECT
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
calloc
public static RECT calloc(org.lwjgl.system.MemoryStack stack)
Returns a newRECT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
malloc
public static RECT.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newRECT.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
calloc
public static RECT.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newRECT.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
nleft
public static int nleft(long struct)
Unsafe version ofleft()
.
-
ntop
public static int ntop(long struct)
Unsafe version oftop()
.
-
nright
public static int nright(long struct)
Unsafe version ofright()
.
-
nbottom
public static int nbottom(long struct)
Unsafe version ofbottom()
.
-
nleft
public static void nleft(long struct, int value)
Unsafe version ofleft
.
-
ntop
public static void ntop(long struct, int value)
Unsafe version oftop
.
-
nright
public static void nright(long struct, int value)
Unsafe version ofright
.
-
nbottom
public static void nbottom(long struct, int value)
Unsafe version ofbottom
.
-
-