Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TColorWheel.h
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Rene Brun 10/03/2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TColorWheel
13 #define ROOT_TColorWheel
14 
15 
16 #include "TNamed.h"
17 
18 class TCanvas;
19 class TArc;
20 class TLine;
21 class TText;
22 class TGraph;
23 
24 class TColorWheel : public TNamed {
25 
26 private:
27  Double_t fRmin; ///<Minimum radius for rectangles
28  Double_t fRmax; ///<Maximum radius for rectangles
29  Double_t fR0; ///<Minimum radius for circles
30  Double_t fDr; ///<Circles radius
31  Double_t fRgray; ///<Maximum radius of gray circle
32  Double_t fX[15]; ///<X coordinates of the center of circles
33  Double_t fY[15]; ///<Y coordinates of the center of circles
34  TCanvas *fCanvas; ///<! Canvas used to draw the Color Wheel
35  TArc *fArc; ///<! pointer to utility arc
36  TLine *fLine; ///<! pointer to utility line
37  TText *fText; ///<! pointer to utility text
38  TGraph *fGraph; ///<! pointer to utility graph
39 
40  TColorWheel(const TColorWheel &org); // no copy, use TObject::Clone()
41  TColorWheel &operator=(const TColorWheel &rhs); // idem
42 
43 protected:
44  Int_t InCircles(Double_t x, Double_t y, Int_t coffset, Double_t angle) const;
45  Int_t InGray(Double_t x, Double_t y) const;
46  Int_t InRectangles(Double_t x, Double_t y, Int_t coffset, Double_t angle) const;
47  void PaintCircle(Int_t coffset,Int_t n,Double_t x, Double_t y, Double_t ang) const;
48  void PaintCircles(Int_t coffset, Double_t angle) const ;
49  void PaintGray() const;
50  void PaintRectangles(Int_t coffset, Double_t angle) const;
51  void Rotate(Double_t x, Double_t y, Double_t &u, Double_t &v, Double_t ang) const;
52 
53 public:
54  TColorWheel();
55  virtual ~TColorWheel();
56  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
57  virtual void Draw(Option_t *option="");
58  TCanvas *GetCanvas() const {return fCanvas;}
59  virtual Int_t GetColor(Int_t px, Int_t py) const;
60  virtual char *GetObjectInfo(Int_t px, Int_t py) const;
61  virtual void Paint(Option_t *option="");
62  virtual void SetCanvas(TCanvas *can) {fCanvas = can;}
63 
64  ClassDef(TColorWheel,1) //The ROOT Color Wheel
65 };
66 
67 #endif
68