rita.support.gui
Interface TextField

All Known Implementing Classes:
RiTextField

public interface TextField


Method Summary
 void draw()
           
 void setActiveColor(float gray)
           
 void setActiveColor(float gray, float alpha)
           
 void setActiveColor(float r, float g, float b)
           
 void setActiveColor(float r, float g, float b, float alpha)
          Set the active color for this object
 void setBgColor(float gray)
           
 void setBgColor(float gray, float alpha)
           
 void setBgColor(float r, float g, float b)
           
 void setBgColor(float r, float g, float b, float alpha)
          Set the bg color for this object
 void setFgColor(float gray)
           
 void setFgColor(float gray, float alpha)
           
 void setFgColor(float r, float g, float b)
           
 void setFgColor(float r, float g, float b, float alpha)
          Set the fg color for this object
 void setVisible(boolean visible)
          Sets the visibility for this object
 

Method Detail

draw

void draw()
Invisible:

setVisible

void setVisible(boolean visible)
Sets the visibility for this object


setFgColor

void setFgColor(float r,
                float g,
                float b,
                float alpha)
Set the fg color for this object

Parameters:
r - red component (0-255)
g - green component (0-255)
b - blue component (0-255)
alpha - transparency (0-255)

setFgColor

void setFgColor(float gray)

setFgColor

void setFgColor(float gray,
                float alpha)

setFgColor

void setFgColor(float r,
                float g,
                float b)

setActiveColor

void setActiveColor(float r,
                    float g,
                    float b,
                    float alpha)
Set the active color for this object

Parameters:
r - red component (0-255)
g - green component (0-255)
b - blue component (0-255)
alpha - transparency (0-255)

setActiveColor

void setActiveColor(float gray)

setActiveColor

void setActiveColor(float gray,
                    float alpha)

setActiveColor

void setActiveColor(float r,
                    float g,
                    float b)

setBgColor

void setBgColor(float r,
                float g,
                float b,
                float alpha)
Set the bg color for this object

Parameters:
r - red component (0-255)
g - green component (0-255)
b - blue component (0-255)
alpha - transparency (0-255)

setBgColor

void setBgColor(float gray)

setBgColor

void setBgColor(float gray,
                float alpha)

setBgColor

void setBgColor(float r,
                float g,
                float b)