![]() ![]() ![]()
|
BREW C++ Class Library & GUI Framework & XML Middleware : SophiaFramework 4.1 |

The SFXFrameColor class is composed of 2 colors of the SFXRGBColor class: the frame color(F) and the shadow colow(S) for the 3-D looking rectangle(frame). This class is used to draw the responders.
The frame color(F) is the color to draw the inside of the frame. The shadow color(S) is the color to draw the shadow of the frame. By using these 2 colors, the frame could be drawn in 3D effect.
In the functions of the SFXFrameColor class, 255 or 0 will be returned as return value when result value of color operation is over 255 or under 0, respectively.
| Constructor/Destructor |
|---|
|
SFXFrameColor( Void ) Constructor of SFXFrameColor class.
|
|
SFXFrameColor(
SFXFrameColorConstRef param
) Constructor of SFXFrameColor class.
|
|
SFXFrameColor(
SFXRGBColorConstRef frame
, SFXRGBColorConstRef shadow
) Constructor of SFXFrameColor class.
|
|
SFXFrameColor(
SFXRGBColorConstRef plain
) Constructor of SFXFrameColor class.
|
|
SFXFrameColor(
UInt08 red
, UInt08 green
, UInt08 blue
, UInt08 alpha
) Constructor of SFXFrameColor class.
|
|
SFXFrameColor(
UInt08 mono
, UInt08 alpha
) Constructor of SFXFrameColor class.
|
| Public Functions | |
|---|---|
| SFXFrameColorRef |
Add(
SFXFrameColorConstRef param
) Add( UInt08 mono , UInt08 alpha ) Add( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Add( SFXRGBColorConstRef plain ) Add( SFXRGBColorConstRef frame , SFXRGBColorConstRef shadow ) Add a specified value to the RGBA value.
|
| SFXFrameColorRef |
AddAlpha(
UInt08 param
) Add a specified value to the A value.
|
| SFXFrameColorRef |
AddBlue(
UInt08 param
) Add a specified value to the B value.
|
| SFXFrameColorRef |
AddFrame(
SFXRGBColorConstRef param
) AddFrame( UInt08 mono , UInt08 alpha ) AddFrame( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Add a specified value to the RGBA value of frame color.
|
| SFXFrameColorRef |
AddFrameAlpha(
UInt08 param
) Add a specified value to the A value of frame color.
|
| SFXFrameColorRef |
AddFrameBlue(
UInt08 param
) Add a specified value to the B value of frame color.
|
| SFXFrameColorRef |
AddFrameGreen(
UInt08 param
) Add a specified value to the G value of frame color.
|
| SFXFrameColorRef |
AddFrameRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) AddFrameRGB( UInt08 mono ) Add a specified value to the RGB value of frame color.
|
| SFXFrameColorRef |
AddFrameRed(
UInt08 param
) Add a specified value to the R value of frame color.
|
| SFXFrameColorRef |
AddGreen(
UInt08 param
) Add a specified value to the G value.
|
| SFXFrameColorRef |
AddRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) AddRGB( UInt08 mono ) Add a specified value to the RGB value.
|
| SFXFrameColorRef |
AddRed(
UInt08 param
) Add a specified value to the R value.
|
| SFXFrameColorRef |
AddShadow(
SFXRGBColorConstRef param
) AddShadow( UInt08 mono , UInt08 alpha ) AddShadow( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Add a specified value to the RGBA value of shadow color.
|
| SFXFrameColorRef |
AddShadowAlpha(
UInt08 param
) Add a specified value to the A value of shadow color.
|
| SFXFrameColorRef |
AddShadowBlue(
UInt08 param
) Add a specified value to the B value of shadow color.
|
| SFXFrameColorRef |
AddShadowGreen(
UInt08 param
) Add a specified value to the G value of shadow color.
|
| SFXFrameColorRef |
AddShadowRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) AddShadowRGB( UInt08 mono ) Add a specified value to the RGB value of shadow color.
|
| SFXFrameColorRef |
AddShadowRed(
UInt08 param
) Add a specified value to the R value of shadow color.
|
| Bool |
Equals(
SFXFrameColorConstRef param
) Equals( UInt08 mono , UInt08 alpha ) Equals( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Equals( SFXRGBColorConstRef plain ) Equals( SFXRGBColorConstRef frame , SFXRGBColorConstRef shadow ) Check whether the RGBA values of this frame color equal those of a specified frame color or not.
|
| Bool |
EqualsRGB(
SFXFrameColorConstRef param
) EqualsRGB( UInt08 mono ) EqualsRGB( UInt08 red , UInt08 green , UInt08 blue ) EqualsRGB( SFXRGBColorConstRef plain ) EqualsRGB( SFXRGBColorConstRef frame , SFXRGBColorConstRef shadow ) Check whether the RGB values of this frame color equal those of a specified frame color or not.
|
| SFXRGBColorConstRef |
GetFrame( Void ) Get the RGBA value of the frame color.
|
| UInt08 |
GetFrameAlpha( Void ) Get the A value of the frame color.
|
| UInt08 |
GetFrameBlue( Void ) Get the B value of the frame color.
|
| UInt08 |
GetFrameGreen( Void ) Get the G value of the frame color.
|
| UInt08 |
GetFrameRed( Void ) Get R value of the frame color.
|
| SFXRGBColorConstRef |
GetShadow( Void ) Get the RGBA value of the shadow color.
|
| UInt08 |
GetShadowAlpha( Void ) Get the A value of the shadow color.
|
| UInt08 |
GetShadowBlue( Void ) Get the B value of the shadow color.
|
| UInt08 |
GetShadowGreen( Void ) Get the G value of the shadow color.
|
| UInt08 |
GetShadowRed( Void ) Get R value of the shadow color.
|
| SFXFrameColorRef |
Set(
SFXFrameColorConstRef param
) Set( UInt08 mono , UInt08 alpha ) Set( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Set( SFXRGBColorConstRef plain ) Set( SFXRGBColorConstRef frame , SFXRGBColorConstRef shadow ) Set the RGBA value.
|
| SFXFrameColorRef |
SetAlpha(
UInt08 param
) Set the A value.
|
| SFXFrameColorRef |
SetBlue(
UInt08 param
) Set the B value.
|
| SFXFrameColorRef |
SetFrame(
SFXRGBColorConstRef param
) SetFrame( UInt08 mono , UInt08 alpha ) SetFrame( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Set the RGBA value of the frame color.
|
| SFXFrameColorRef |
SetFrameAlpha(
UInt08 param
) Set the A value of the frame color.
|
| SFXFrameColorRef |
SetFrameBlue(
UInt08 param
) Set the B value of the frame color.
|
| SFXFrameColorRef |
SetFrameGreen(
UInt08 param
) Set the G value of the frame color.
|
| SFXFrameColorRef |
SetFrameRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SetFrameRGB( UInt08 mono ) Set the RGB value of the frame color.
|
| SFXFrameColorRef |
SetFrameRed(
UInt08 param
) Set the R value of the frame color.
|
| SFXFrameColorRef |
SetGreen(
UInt08 param
) Set the G value.
|
| SFXFrameColorRef |
SetRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SetRGB( UInt08 mono ) Set the RGB value.
|
| SFXFrameColorRef |
SetRed(
UInt08 param
) Set the R value.
|
| SFXFrameColorRef |
SetShadow(
SFXRGBColorConstRef param
) SetShadow( UInt08 mono , UInt08 alpha ) SetShadow( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Set the RGBA value of the shadow color.
|
| SFXFrameColorRef |
SetShadowAlpha(
UInt08 param
) Set the A value of the shadow color.
|
| SFXFrameColorRef |
SetShadowBlue(
UInt08 param
) Set the B value of the shadow color.
|
| SFXFrameColorRef |
SetShadowGreen(
UInt08 param
) Set the G value of the shadow color.
|
| SFXFrameColorRef |
SetShadowRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SetShadowRGB( UInt08 mono ) Set the RGB value of the shadow color.
|
| SFXFrameColorRef |
SetShadowRed(
UInt08 param
) Set the R value of the shadow color.
|
| SFXFrameColorRef |
Sub(
SFXFrameColorConstRef param
) Sub( UInt08 mono , UInt08 alpha ) Sub( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Sub( SFXRGBColorConstRef plain ) Sub( SFXRGBColorConstRef frame , SFXRGBColorConstRef shadow ) Subtract a specified value from the RGBA value.
|
| SFXFrameColorRef |
SubAlpha(
UInt08 param
) Subtract a specified value from the A value.
|
| SFXFrameColorRef |
SubBlue(
UInt08 param
) Subtract a specified value from the B value.
|
| SFXFrameColorRef |
SubFrame(
SFXRGBColorConstRef param
) SubFrame( UInt08 mono , UInt08 alpha ) SubFrame( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Subtract a specified value from the RGBA value of frame color.
|
| SFXFrameColorRef |
SubFrameAlpha(
UInt08 param
) Subtract a specified value from the A value of frame color.
|
| SFXFrameColorRef |
SubFrameBlue(
UInt08 param
) Subtract a specified value from the B value of frame color.
|
| SFXFrameColorRef |
SubFrameGreen(
UInt08 param
) Subtract a specified value from the G value of frame color.
|
| SFXFrameColorRef |
SubFrameRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SubFrameRGB( UInt08 mono ) Subtract a specified value from the RGB value of frame color.
|
| SFXFrameColorRef |
SubFrameRed(
UInt08 param
) Subtract a specified value from the R value of frame color.
|
| SFXFrameColorRef |
SubGreen(
UInt08 param
) Subtract a specified value from the G value.
|
| SFXFrameColorRef |
SubRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SubRGB( UInt08 mono ) Subtract a specified value from the RGB value.
|
| SFXFrameColorRef |
SubRed(
UInt08 param
) Subtract a specified value from the R value.
|
| SFXFrameColorRef |
SubShadow(
SFXRGBColorConstRef param
) SubShadow( UInt08 mono , UInt08 alpha ) SubShadow( UInt08 red , UInt08 green , UInt08 blue , UInt08 alpha ) Subtract a specified value from the RGBA value of shadow color.
|
| SFXFrameColorRef |
SubShadowAlpha(
UInt08 param
) Subtract a specified value from the A value of shadow color.
|
| SFXFrameColorRef |
SubShadowBlue(
UInt08 param
) Subtract a specified value from the B value of shadow color.
|
| SFXFrameColorRef |
SubShadowGreen(
UInt08 param
) Subtract a specified value from the G value of shadow color.
|
| SFXFrameColorRef |
SubShadowRGB(
UInt08 red
, UInt08 green
, UInt08 blue
) SubShadowRGB( UInt08 mono ) Subtract a specified value from the RGB value of shadow color.
|
| SFXFrameColorRef |
SubShadowRed(
UInt08 param
) Subtract a specified value from the R value of shadow color.
|
| static SFXFrameColorConstRef |
ZeroInstance( Void ) Get the instance that represents 0.
|
| SFXFrameColorRef |
operator+=(
SFXFrameColorConstRef param
) Add a specified value to the RGBA value.
|
| SFXFrameColorRef |
operator-=(
SFXFrameColorConstRef param
) Subtract a specified value from the RGBA value.
|
| SFXFrameColorRef |
operator=(
SFXFrameColorConstRef param
) Assign a RGBA value.
|
| SFXFrameColor::AtomRec * |
atomic_cast(
SFXFrameColor * param
) Convert SFXFrameColor into SFXFrameColor::AtomRec.
|
| SFXFrameColor::AtomRec const * |
atomic_cast(
SFXFrameColor const * param
) Convert SFXFrameColor into SFXFrameColor::AtomRec.
|
| Bool |
operator==(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Check the "==" relation.
|
| SFXFrameColor |
operator-(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Subtract a specified value from the RGBA value.
|
| Bool |
operator!=(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Check the "!=" relation.
|
| SFXFrameColor |
operator+(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Add a specified value to the RGBA value.
|
| Types |
|---|
|
AtomRec
Structure that represents the frame color (F) and shadow color (S).
|
| Global Functions | |
|---|---|
| SFXFrameColor::AtomRec * |
atomic_cast(
SFXFrameColor * param
) Convert SFXFrameColor into SFXFrameColor::AtomRec.
|
| SFXFrameColor::AtomRec const * |
atomic_cast(
SFXFrameColor const * param
) Convert SFXFrameColor into SFXFrameColor::AtomRec.
|
| Bool |
operator==(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Check the "==" relation.
|
| SFXFrameColor |
operator-(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Subtract a specified value from the RGBA value.
|
| Bool |
operator!=(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Check the "!=" relation.
|
| SFXFrameColor |
operator+(
SFXFrameColorConstRef left
, SFXFrameColorConstRef right
) Add a specified value to the RGBA value.
|
[ public, explicit ] SFXFrameColor(Void);
[ public ]
SFXFrameColor(
SFXFrameColorConstRef param // source SFXFrameColor
);
[ public, explicit ]
SFXFrameColor(
SFXRGBColorConstRef frame // frame color
SFXRGBColorConstRef shadow // shadow color
);
[ public, explicit ]
SFXFrameColor(
SFXRGBColorConstRef plain // frame color and shadow color
);
[ public, explicit ]
SFXFrameColor(
UInt08 red // R value of frame color and shadow color
UInt08 green // G value of frame color and shadow color
UInt08 blue // B value of frame color and shadow color
UInt08 alpha // A value of frame color and shadow color
);
[ public, explicit ]
SFXFrameColor(
UInt08 mono // RGB value of frame color and shadow color
UInt08 alpha // A value of frame color and shadow color
);
[ public ] SFXFrameColorRef Add( SFXFrameColorConstRef param // value to add to SFXFrameColor color );
[ public ] SFXFrameColorRef Add( SFXRGBColorConstRef frame // value to add to the frame color SFXRGBColorConstRef shadow // value to add to the shadow color );
[ public ] SFXFrameColorRef Add( SFXRGBColorConstRef plain // color );
[ public ] SFXFrameColorRef Add( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value UInt08 alpha // value to add to the A value );
[ public ] SFXFrameColorRef Add( UInt08 mono // value to add to the RGB value UInt08 alpha // value to add to the A value );
SFXFrameColor::AddRed | SFXFrameColor::AddGreen | SFXFrameColor::AddBlue | SFXFrameColor::AddAlpha | SFXFrameColor::AddRGB | SFXFrameColor::AddFrame | SFXFrameColor::AddShadow | SFXFrameColor::Sub | operator+ | SFXFrameColor::operator+=
[ public ] SFXFrameColorRef AddAlpha( UInt08 param // value to add to the A value );
SFXFrameColor::Add | SFXFrameColor::AddRed | SFXFrameColor::AddGreen | SFXFrameColor::AddBlue | SFXFrameColor::AddRGB | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddShadowAlpha | SFXFrameColor::SubAlpha
[ public ] SFXFrameColorRef AddBlue( UInt08 param // value to add to the B value );
SFXFrameColor::Add | SFXFrameColor::AddRed | SFXFrameColor::AddGreen | SFXFrameColor::AddAlpha | SFXFrameColor::AddRGB | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddShadowBlue | SFXFrameColor::SubBlue
[ public ] SFXFrameColorRef AddFrame( SFXRGBColorConstRef param // color );
[ public ] SFXFrameColorRef AddFrame( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value UInt08 alpha // value to add to the A value );
[ public ] SFXFrameColorRef AddFrame( UInt08 mono // value to add to the RGB value UInt08 alpha // value to add to the A value );
SFXFrameColor::Add | SFXFrameColor::AddFrameRed | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadow | SFXFrameColor::SubFrame
[ public ] SFXFrameColorRef AddFrameAlpha( UInt08 param // value to add to the A value );
SFXFrameColor::AddAlpha | SFXFrameColor::AddFrame | SFXFrameColor::AddFrameRed | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadowAlpha | SFXFrameColor::SubFrameAlpha
[ public ] SFXFrameColorRef AddFrameBlue( UInt08 param // value to add to the B value );
SFXFrameColor::AddBlue | SFXFrameColor::AddFrame | SFXFrameColor::AddFrameRed | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadowBlue | SFXFrameColor::SubFrameBlue
[ public ] SFXFrameColorRef AddFrameGreen( UInt08 param // value to add to the G value );
SFXFrameColor::AddGreen | SFXFrameColor::AddFrame | SFXFrameColor::AddFrameRed | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadowGreen | SFXFrameColor::SubFrameGreen
[ public ] SFXFrameColorRef AddFrameRGB( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value );
[ public ] SFXFrameColorRef AddFrameRGB( UInt08 mono // value to add to the RGB value );
SFXFrameColor::AddRGB | SFXFrameColor::AddFrame | SFXFrameColor::AddFrameRed | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubFrameRGB
[ public ] SFXFrameColorRef AddFrameRed( UInt08 param // value to add to the R value );
SFXFrameColor::AddRed | SFXFrameColor::AddFrame | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadowRed | SFXFrameColor::SubFrameRed
[ public ] SFXFrameColorRef AddGreen( UInt08 param // value to add to the G value );
SFXFrameColor::Add | SFXFrameColor::AddRed | SFXFrameColor::AddBlue | SFXFrameColor::AddAlpha | SFXFrameColor::AddRGB | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddShadowGreen | SFXFrameColor::SubGreen
[ public ] SFXFrameColorRef AddRGB( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value );
[ public ] SFXFrameColorRef AddRGB( UInt08 mono // value to add to the RGB value );
SFXFrameColor::Add | SFXFrameColor::AddRed | SFXFrameColor::AddGreen | SFXFrameColor::AddBlue | SFXFrameColor::AddAlpha | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubRGB
[ public ] SFXFrameColorRef AddRed( UInt08 param // value to add to the R value );
SFXFrameColor::Add | SFXFrameColor::AddGreen | SFXFrameColor::AddBlue | SFXFrameColor::AddAlpha | SFXFrameColor::AddRGB | SFXFrameColor::AddFrameRed | SFXFrameColor::AddShadowRed | SFXFrameColor::SubRed
[ public ] SFXFrameColorRef AddShadow( SFXRGBColorConstRef param // color );
[ public ] SFXFrameColorRef AddShadow( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value UInt08 alpha // value to add to the A value );
[ public ] SFXFrameColorRef AddShadow( UInt08 mono // value to add to the RGB value UInt08 alpha // value to add to the A value );
SFXFrameColor::Add | SFXFrameColor::AddFrame | SFXFrameColor::AddShadowRed | SFXFrameColor::AddShadowGreen | SFXFrameColor::AddShadowBlue | SFXFrameColor::AddShadowAlpha | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubShadow
[ public ] SFXFrameColorRef AddShadowAlpha( UInt08 param // value to add to the A value );
SFXFrameColor::AddAlpha | SFXFrameColor::AddFrameAlpha | SFXFrameColor::AddShadow | SFXFrameColor::AddShadowRed | SFXFrameColor::AddShadowGreen | SFXFrameColor::AddShadowBlue | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubShadowAlpha
[ public ] SFXFrameColorRef AddShadowBlue( UInt08 param // value to add to the B value );
SFXFrameColor::AddBlue | SFXFrameColor::AddFrameBlue | SFXFrameColor::AddShadow | SFXFrameColor::AddShadowRed | SFXFrameColor::AddShadowGreen | SFXFrameColor::AddShadowAlpha | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubShadowBlue
[ public ] SFXFrameColorRef AddShadowGreen( UInt08 param // value to add to the G value );
SFXFrameColor::AddGreen | SFXFrameColor::AddFrameGreen | SFXFrameColor::AddShadow | SFXFrameColor::AddShadowRed | SFXFrameColor::AddShadowBlue | SFXFrameColor::AddShadowAlpha | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubShadowGreen
[ public ] SFXFrameColorRef AddShadowRGB( UInt08 red // value to add to the R value UInt08 green // value to add to the G value UInt08 blue // value to add to the B value );
[ public ] SFXFrameColorRef AddShadowRGB( UInt08 mono // value to add to the RGB value );
SFXFrameColor::AddRGB | SFXFrameColor::AddFrameRGB | SFXFrameColor::AddShadow | SFXFrameColor::AddShadowRed | SFXFrameColor::AddShadowGreen | SFXFrameColor::AddShadowBlue | SFXFrameColor::AddShadowAlpha | SFXFrameColor::SubShadowRGB
[ public ] SFXFrameColorRef AddShadowRed( UInt08 param // value to add to the R value );
SFXFrameColor::AddRed | SFXFrameColor::AddFrameRed | SFXFrameColor::AddShadow | SFXFrameColor::AddShadowGreen | SFXFrameColor::AddShadowBlue | SFXFrameColor::AddShadowAlpha | SFXFrameColor::AddShadowRGB | SFXFrameColor::SubShadowRed
[ public, const ] Bool Equals( SFXFrameColorConstRef param // );
[ public, const ] Bool Equals( SFXRGBColorConstRef frame // frame color of SFXFrameColor to compare SFXRGBColorConstRef shadow // shadow color of SFXFrameColor to compare );
[ public, const ] Bool Equals( SFXRGBColorConstRef plain // color of SFXFrameColor to compare );
[ public, const ] Bool Equals( UInt08 red // R value of SFXFrameColor to compare UInt08 green // G value of SFXFrameColor to compare UInt08 blue // B value of SFXFrameColor to compare UInt08 alpha // A value of SFXFrameColor to compare );
[ public, const ] Bool Equals( UInt08 mono // RGB value of SFXFrameColor to compare UInt08 alpha // A value of SFXFrameColor to compare );
[ public, const ] Bool EqualsRGB( SFXFrameColorConstRef param // SFXFrameColor to compare );
[ public, const ] Bool EqualsRGB( SFXRGBColorConstRef frame // frame color of SFXFrameColor to compare SFXRGBColorConstRef shadow // shadow color of SFXFrameColor to compare );
[ public, const ] Bool EqualsRGB( SFXRGBColorConstRef plain // color of SFXFrameColor to compare );
[ public, const ] Bool EqualsRGB( UInt08 red // R value of SFXFrameColor to compare UInt08 green // G value of SFXFrameColor to compare UInt08 blue // B value of SFXFrameColor to compare );
[ public, const ] Bool EqualsRGB( UInt08 mono // RGB value of SFXFrameColor to compare );
[ public, const ] SFXRGBColorConstRef GetFrame(Void);
SFXFrameColor::GetFrameRed | SFXFrameColor::GetFrameGreen | SFXFrameColor::GetFrameBlue | SFXFrameColor::GetFrameAlpha | SFXFrameColor::GetShadow | SFXFrameColor::SetFrame
[ public, const ] UInt08 GetFrameAlpha(Void);
SFXFrameColor::GetFrame | SFXFrameColor::GetFrameRed | SFXFrameColor::GetFrameGreen | SFXFrameColor::GetFrameBlue | SFXFrameColor::GetShadowAlpha | SFXFrameColor::SetFrameAlpha
[ public, const ] UInt08 GetFrameBlue(Void);
SFXFrameColor::GetFrame | SFXFrameColor::GetFrameRed | SFXFrameColor::GetFrameGreen | SFXFrameColor::GetFrameAlpha | SFXFrameColor::GetShadowBlue | SFXFrameColor::SetFrameBlue
[ public, const ] UInt08 GetFrameGreen(Void);
SFXFrameColor::GetFrame | SFXFrameColor::GetFrameRed | SFXFrameColor::GetFrameBlue | SFXFrameColor::GetFrameAlpha | SFXFrameColor::GetShadowGreen | SFXFrameColor::SetFrameGreen
[ public, const ] UInt08 GetFrameRed(Void);
SFXFrameColor::GetFrame | SFXFrameColor::GetFrameGreen | SFXFrameColor::GetFrameBlue | SFXFrameColor::GetFrameAlpha | SFXFrameColor::GetShadowRed | SFXFrameColor::SetFrameRed
[ public, const ] SFXRGBColorConstRef GetShadow(Void);
SFXFrameColor::GetFrame | SFXFrameColor::GetShadowRed | SFXFrameColor::GetShadowGreen | SFXFrameColor::GetShadowBlue | SFXFrameColor::GetShadowAlpha | SFXFrameColor::SetShadow
[ public, const ] UInt08 GetShadowAlpha(Void);
SFXFrameColor::GetFrameAlpha | SFXFrameColor::GetShadow | SFXFrameColor::GetShadowRed | SFXFrameColor::GetShadowGreen | SFXFrameColor::GetShadowBlue | SFXFrameColor::SetShadowAlpha
[ public, const ] UInt08 GetShadowBlue(Void);
SFXFrameColor::GetFrameBlue | SFXFrameColor::GetShadow | SFXFrameColor::GetShadowRed | SFXFrameColor::GetShadowGreen | SFXFrameColor::GetShadowAlpha | SFXFrameColor::SetShadowBlue
[ public, const ] UInt08 GetShadowGreen(Void);
SFXFrameColor::GetFrameGreen | SFXFrameColor::GetShadow | SFXFrameColor::GetShadowRed | SFXFrameColor::GetShadowBlue | SFXFrameColor::GetShadowAlpha | SFXFrameColor::SetShadowGreen
[ public, const ] UInt08 GetShadowRed(Void);
SFXFrameColor::GetFrameRed | SFXFrameColor::GetShadow | SFXFrameColor::GetShadowGreen | SFXFrameColor::GetShadowBlue | SFXFrameColor::GetShadowAlpha | SFXFrameColor::SetShadowRed
[ public ] SFXFrameColorRef Set( SFXFrameColorConstRef param // SFXFrameColor to set );
[ public ] SFXFrameColorRef Set( SFXRGBColorConstRef frame // frame color to set SFXRGBColorConstRef shadow // shadow color to set );
[ public ] SFXFrameColorRef Set( SFXRGBColorConstRef plain // color to set );
[ public ] SFXFrameColorRef Set( UInt08 red // R value to set UInt08 green // G value to set UInt08 blue // B value to set UInt08 alpha // A value to set );
[ public ] SFXFrameColorRef Set( UInt08 mono // RGB value to set UInt08 alpha // A value to set );
SFXFrameColor::SetRed | SFXFrameColor::SetGreen | SFXFrameColor::SetBlue | SFXFrameColor::SetAlpha | SFXFrameColor::SetRGB | SFXFrameColor::SetFrame | SFXFrameColor::SetShadow | SFXFrameColor::operator=
[ public ] SFXFrameColorRef SetAlpha( UInt08 param // A value to set );
SFXFrameColor::Set | SFXFrameColor::SetRed | SFXFrameColor::SetGreen | SFXFrameColor::SetBlue | SFXFrameColor::SetRGB | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetShadowAlpha
[ public ] SFXFrameColorRef SetBlue( UInt08 param // B value to set );
SFXFrameColor::Set | SFXFrameColor::SetRed | SFXFrameColor::SetGreen | SFXFrameColor::SetAlpha | SFXFrameColor::SetRGB | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetShadowBlue
[ public ] SFXFrameColorRef SetFrame( SFXRGBColorConstRef param // color to set );
[ public ] SFXFrameColorRef SetFrame( UInt08 red // R value to set UInt08 green // G value to set UInt08 blue // B value to set UInt08 alpha // A value to set );
[ public ] SFXFrameColorRef SetFrame( UInt08 mono // RGB value to set UInt08 alpha // A value to set );
SFXFrameColor::GetFrame | SFXFrameColor::Set | SFXFrameColor::SetFrameRed | SFXFrameColor::SetFrameGreen | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetFrameRGB | SFXFrameColor::SetShadow
[ public ] SFXFrameColorRef SetFrameAlpha( UInt08 param // A value to set );
SFXFrameColor::GetFrameAlpha | SFXFrameColor::SetAlpha | SFXFrameColor::SetFrame | SFXFrameColor::SetFrameRed | SFXFrameColor::SetFrameGreen | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetFrameRGB | SFXFrameColor::SetShadowAlpha
[ public ] SFXFrameColorRef SetFrameBlue( UInt08 param // B value to set );
SFXFrameColor::GetFrameBlue | SFXFrameColor::SetBlue | SFXFrameColor::SetFrame | SFXFrameColor::SetFrameRed | SFXFrameColor::SetFrameGreen | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetFrameRGB | SFXFrameColor::SetShadowBlue
[ public ] SFXFrameColorRef SetFrameGreen( UInt08 param // G value to set );
SFXFrameColor::GetFrameGreen | SFXFrameColor::SetGreen | SFXFrameColor::SetFrame | SFXFrameColor::SetFrameRed | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetFrameRGB | SFXFrameColor::SetShadowGreen
[ public ] SFXFrameColorRef SetFrameRGB( UInt08 red // R value to set UInt08 green // G value to set UInt08 blue // B value to set );
[ public ] SFXFrameColorRef SetFrameRGB( UInt08 mono // RGB value to set );
SFXFrameColor::SetRGB | SFXFrameColor::SetFrame | SFXFrameColor::SetFrameRed | SFXFrameColor::SetFrameGreen | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetShadowRGB
[ public ] SFXFrameColorRef SetFrameRed( UInt08 param // R value to set );
SFXFrameColor::GetFrameRed | SFXFrameColor::SetRed | SFXFrameColor::SetFrame | SFXFrameColor::SetFrameGreen | SFXFrameColor::SetFrameBlue | SFXFrameColor::SetFrameAlpha | SFXFrameColor::SetFrameRGB | SFXFrameColor::SetShadowRed
[ public ] SFXFrameColorRef SetGreen(