#include <Color.h>
Inheritance diagram for VColor:
Public Methods | |
VColor (COLORREF c) | |
VColor (int red, int green, int blue) | |
VColor () | |
operator COLORREF () | |
int | GetRed () const |
int | GetGreen () const |
int | GetBlue () const |
bool | IsOpaque () const |
void | SetOpaque (bool bOpaque) |
void | SetRed (int value) |
void | SetGreen (int value) |
void | SetBlue (int value) |
VAbstractEditor* | CreateEditor () |
Returns an editor that can allow the user to manipulate this object. | |
Operator overloads | |
VColor | operator- () const |
VColor | operator+ (VColor addme) const |
VColor | operator- (VColor addme) const |
VColor | operator * (VColor addme) const |
VColor | operator/ (VColor addme) const |
VColor | operator * (int ratio) const |
VColor | operator/ (int ratio) const |
bool | operator> (int test) const |
bool | operator== (int test) const |
bool | operator< (int test) const |
Protected Attributes | |
int | r |
int | g |
int | b |
bool | m_bOpaque |