Exemple #1
0
 /// <summary>
 /// Outlines a rectangular area with the currently set color
 /// </summary>
 /// <param name="LineThickness">Thickness of the line in pixels</param>
 /// <param name="pos">Origin location of the area</param>
 /// <param name="size">Size of the area</param>
 public abstract void Draw_Rect(int LineThickness, ReadOnlyPoint2i Pos, ReadOnlyRect2i Size);
Exemple #2
0
 /// <summary>
 /// Fills a rectangular area with the currently set color
 /// </summary>
 /// <param name="pos">Origin location of the area</param>
 /// <param name="size">Size of the area</param>
 public abstract void Fill_Rect(ReadOnlyPoint2i Pos, ReadOnlyRect2i Size);
Exemple #3
0
 /// <summary>
 /// Sets the location of this window relative to the top, left origin of the desktop
 /// </summary>
 protected abstract void Set_Window_Location(ReadOnlyPoint2i Pos);