XenevaOS
Loading...
Searching...
No Matches
rect.h
Go to the documentation of this file.
1
32#ifndef __RECT_H__
33#define __RECT_H__
34
35#include "deodxr.h"
36
43extern int RectSetLeft(Rect* rect, int new_left);
44
51extern int RectSetRight(Rect* rect, int new_right);
52
59extern int RectSetTop(Rect* rect, int new_top);
60
67extern int RectSetBottom(Rect* rect, int new_bottom);
68
73extern int RectGetLeft(Rect* rect);
74
79extern int RectGetRight(Rect* rect);
80
85extern int RectGetTop(Rect* rect);
86
91extern int RectGetBottom(Rect* rect);
92
93
94#endif
int RectSetLeft(Rect *rect, int new_left)
RectSetLeft – set a new left edge value to the given rect.
Definition rect.cpp:39
int RectGetBottom(Rect *rect)
RectGetBottom – returns the bottom edge value.
Definition rect.cpp:109
int RectSetTop(Rect *rect, int new_top)
RectSetTop – set a new top edge value to the given rectangle.
Definition rect.cpp:64
int RectSetRight(Rect *rect, int new_right)
Definition rect.cpp:52
int RectSetBottom(Rect *rect, int new_bottom)
RectSetBottom – set a new bottom edge value to the given rectangle.
Definition rect.cpp:76
int RectGetLeft(Rect *rect)
RectGetLeft – returns the left edge value.
Definition rect.cpp:85
int RectGetRight(Rect *rect)
RectGetRight – returns the right edge value.
Definition rect.cpp:93
int RectGetTop(Rect *rect)
RectGetTop – returns the top edge value.
Definition rect.cpp:101
Definition deodhai.h:69