// @(#)root/base:$Name: $:$Id: TColor.h,v 1.4 2001/07/17 09:06:55 rdm Exp $ // Author: Rene Brun 12/12/94 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TColor #define ROOT_TColor ////////////////////////////////////////////////////////////////////////// // // // TColor // // // // Color defined by RGB or HLS. // // At initialization time, a table of colors is generated. This linked // // list can be accessed from the ROOT object // // (see TROOT::GetListOfColors()). When a color is defined in the range // // of [1,50], two "companion" colors are also defined: // // - the dark version (color_index + 100) // // - the bright version (color_index + 150) // // The dark and bright color are used to give 3-D effects when drawing // // various boxes (see TWbox, TPave, TPaveText, TPaveLabel,etc). // // // // This is the list of currently supported basic colors (here dark and // // bright colors are not shown). // //Begin_Html /* */ //End_Html // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TNamed #include "TNamed.h" #endif class TColor : public TNamed { private: Int_t fNumber; //Color number identifier Float_t fRed; //Fraction of Red Float_t fGreen; //Fraction of Green Float_t fBlue; //Fraction of Blue Float_t fHue; //Hue Float_t fLight; //Light Float_t fSaturation; //Saturation void Allocate(); static Float_t HLStoRGB1(Float_t rn1, Float_t rn2, Float_t huei); public: TColor(); TColor(Int_t color, Float_t r, Float_t g, Float_t b, const char *name=""); TColor(const TColor &color); virtual ~TColor(); void Copy(TObject &color); virtual void GetRGB(Float_t &r, Float_t &g, Float_t &b) const {r = fRed; g = fGreen; b = fBlue;} virtual void GetHLS(Float_t &h, Float_t &l, Float_t &s) const {h = fHue; l = fLight; s = fSaturation;} Int_t GetNumber() const {return fNumber;} Float_t GetRed() const {return fRed;} Float_t GetGreen() const {return fGreen;} Float_t GetBlue() const {return fBlue;} Float_t GetHue() const {return fHue;} Float_t GetLight() const {return fLight;} Float_t GetSaturation() const {return fSaturation;} virtual void ls(Option_t *option="") const; virtual void Print(Option_t *option="") const; virtual void SetRGB(Float_t r, Float_t g, Float_t b); static void HLStoRGB(Float_t h, Float_t l, Float_t s, Float_t &r, Float_t &g, Float_t &b); static void RGBtoHLS(Float_t r, Float_t g, Float_t b, Float_t &h, Float_t &l, Float_t &s); static Int_t GetColor(const char *hexcolor); static Int_t GetColor(Float_t r, Float_t g, Float_t b); static Int_t GetColor(Int_t r, Int_t g, Int_t b); ClassDef(TColor,1) //Color defined by RGB or HLS }; #endif