ROOT logo
/*************************************************************************
 * 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_TPieSlice
#define ROOT_TPieSlice
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include <TString.h>
#endif
#ifndef ROOT_TAttText
#include <TAttText.h>
#endif
#ifndef ROOT_TAttFill
#include <TAttFill.h>
#endif
#ifndef ROOT_TAttLine
#include <TAttLine.h>
#endif
#ifndef ROOT_TPie
#include <TPie.h>
#endif

class TPieSlice : public TNamed, public TAttFill, public TAttLine {

private:
   Bool_t   fIsActive;        //! True if is the slice under the mouse pointer

protected:
   TPie *fPie;             // The TPie object that contain this slice
   Double_t fValue;        //value value of this slice
   Double_t fRadiusOffset; //roffset offset from the center of the pie

public:
   TPieSlice();
   TPieSlice(const char *, const char *, TPie*, Double_t val=0);
   virtual ~TPieSlice() {;}

   virtual Int_t  DistancetoPrimitive(Int_t,Int_t);
   Double_t       GetRadiusOffset();
   Double_t       GetValue();
   void           SavePrimitive(ostream &out, Option_t *opts="");
   void           SetIsActive(Bool_t is) { fIsActive = is; }
   void           SetRadiusOffset(Double_t);  // *MENU*
   void           SetValue(Double_t);         // *MENU*

   friend class TPie;

   ClassDef(TPieSlice,1)            // Slice of a pie chart graphics class
};

#endif
 TPieSlice.h:1
 TPieSlice.h:2
 TPieSlice.h:3
 TPieSlice.h:4
 TPieSlice.h:5
 TPieSlice.h:6
 TPieSlice.h:7
 TPieSlice.h:8
 TPieSlice.h:9
 TPieSlice.h:10
 TPieSlice.h:11
 TPieSlice.h:12
 TPieSlice.h:13
 TPieSlice.h:14
 TPieSlice.h:15
 TPieSlice.h:16
 TPieSlice.h:17
 TPieSlice.h:18
 TPieSlice.h:19
 TPieSlice.h:20
 TPieSlice.h:21
 TPieSlice.h:22
 TPieSlice.h:23
 TPieSlice.h:24
 TPieSlice.h:25
 TPieSlice.h:26
 TPieSlice.h:27
 TPieSlice.h:28
 TPieSlice.h:29
 TPieSlice.h:30
 TPieSlice.h:31
 TPieSlice.h:32
 TPieSlice.h:33
 TPieSlice.h:34
 TPieSlice.h:35
 TPieSlice.h:36
 TPieSlice.h:37
 TPieSlice.h:38
 TPieSlice.h:39
 TPieSlice.h:40
 TPieSlice.h:41
 TPieSlice.h:42
 TPieSlice.h:43
 TPieSlice.h:44
 TPieSlice.h:45
 TPieSlice.h:46
 TPieSlice.h:47
 TPieSlice.h:48
 TPieSlice.h:49
 TPieSlice.h:50
 TPieSlice.h:51
 TPieSlice.h:52
 TPieSlice.h:53
 TPieSlice.h:54
 TPieSlice.h:55
 TPieSlice.h:56
 TPieSlice.h:57
 TPieSlice.h:58