C# Class Core.WindowRenderer

Mostrar archivo Open project: vogon101/BasicOS Class Usage Examples

Protected Properties

Property Type Description
bgColour int
window Window
windowManager WindowManager

Public Methods

Method Description
WindowRenderer ( Window w, WindowManager wm, int bg ) : System
clear ( ) : void
drawPixel ( int x, int y, int c ) : void
renderEdge ( ) : void
renderString ( int x, int y, string text ) : void

Method Details

WindowRenderer() public method

public WindowRenderer ( Window w, WindowManager wm, int bg ) : System
w Window
wm WindowManager
bg int
return System

clear() public method

public clear ( ) : void
return void

drawPixel() public method

public drawPixel ( int x, int y, int c ) : void
x int
y int
c int
return void

renderEdge() public method

public renderEdge ( ) : void
return void

renderString() public method

public renderString ( int x, int y, string text ) : void
x int
y int
text string
return void

Property Details

bgColour protected_oe property

protected int bgColour
return int

window protected_oe property

protected Window,Core window
return Window

windowManager protected_oe property

protected WindowManager,Core windowManager
return WindowManager