library: libCore
#include "TAttFill.h"

TAttFill


class description - header file - source file
viewCVS header - viewCVS source

class TAttFill

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TAttFill()
TAttFill(const TAttFill&)
TAttFill(Color_t fcolor, Style_t fstyle)
virtual~TAttFill()
static TClass*Class()
voidCopy(TAttFill& attfill) const
virtual Color_tGetFillColor() const
virtual Style_tGetFillStyle() const
virtual TClass*IsA() const
virtual Bool_tIsTransparent() const
virtual voidModify()
TAttFill&operator=(const TAttFill&)
virtual voidResetAttFill(Option_t* option = "")
virtual voidSaveFillAttributes(ostream& out, const char* name, Int_t coldef = 1, Int_t stydef = 1001)
virtual voidSetFillAttributes()
virtual voidSetFillColor(Color_t fcolor)
virtual voidSetFillStyle(Style_t fstyle)
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)

Data Members

protected:
Color_tfFillColorfill area color
Style_tfFillStylefill area style

Class Description

*-*-*-*-*-*-*-*-*-*-*-*-*Fill Area Attributes class*-*-*-*-*-*-*-*-*-*-*-*
*-*                      ==========================
*-*  Fill Area attributes are:
*-*    Fill Color
*-*    Fill Style
*-*
*-*  This class is used (in general by secondary inheritance)
*-*  by many other classes (graphics, histograms).
*-*
*-*  The following table shows the list of default colors.
/* */

  Conventions for fill styles:
    0    : hollow
    1001 : Solid
    2001 : hatch style
    3000+pattern_number (see below)
    4000 :the window is transparent.
    4000 to 4100 the window is 100% transparent to 100% opaque

  pattern_number can have any value from 1 to 25 (see table), or any value
 from 100 to 999. For the latest the numbering convention is the following:

            pattern_number = ijk      (FillStyle = 3ijk)

    i (1-9) : specify the space between each hatch
              1 = 1/2mm  9 = 6mm

    j (0-9) : specify angle between 0 and 90 degrees

              0 = 0  
              1 = 10
              2 = 20
              3 = 30
              4 = 45
              5 = Not drawn
              6 = 60
              7 = 70
              8 = 80
              9 = 90

    k (0-9) : specify angle between 90 and 180 degrees
              0 = 180
              1 = 170
              2 = 160
              3 = 150
              4 = 135
              5 = Not drawn
              6 = 120
              7 = 110
              8 = 100
              9 = 90

*-*  The following table shows the list of pattern styles.
/* */
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
TAttFill()
*-*-*-*-*-*-*-*-*-*-*-*-*AttFill default constructor*-*-*-*-*-*-*-*-*-*-*-*
*-*                      ===========================
*-*  Default fill attributes are taking from the current style
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
TAttFill(Color_t color, Style_t style)
*-*-*-*-*-*-*-*-*-*-*-*-*AttFill normal constructor*-*-*-*-*-*-*-*-*-*-*-*
*-*                      ===========================
*-*    color Fill Color
*-*    style Fill Style
*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
~TAttFill()
*-*-*-*-*-*-*-*-*-*-*-*-*AttFill destructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*                      =================
void Copy(TAttFill &attfill)
*-*-*-*-*-*-*-*-*Copy this fill attributes to a new attfill*-*-*-*-*-*-*-*-*
*-*              ==========================================
void Modify()
*-*-*-*-*-*-*-*Change current fill area attributes if necessary*-*-*-*-*-*-*
*-*            ================================================
void ResetAttFill(Option_t *)
*-*-*-*-*-*-*-*-*Reset this fill attributes to default values*-*-*-*-*-*-*
*-*              ============================================
void SaveFillAttributes(ostream &out, const char *name, Int_t coldef, Int_t stydef)
 Save fill attributes as C++ statement(s) on output stream out
void SetFillAttributes()
*-*-*-*-*-*-*-*-*Invoke the DialogCanvas Fill attributes*-*-*-*-*-*-*
*-*              =======================================
Bool_t IsTransparent()
{ return fFillStyle >= 4000 && fFillStyle <= 4100 ? kTRUE : kFALSE; }
TAttFill()
Color_t GetFillColor()
{ return fFillColor; }
Style_t GetFillStyle()
{ return fFillStyle; }
void SetFillColor(Color_t fcolor)
{ fFillColor = fcolor; }
void SetFillStyle(Style_t fstyle)
{ fFillStyle = fstyle; }

Author: Rene Brun 12/12/94
Last update: root/base:$Name: $:$Id: TAttFill.cxx,v 1.13 2006/07/03 16:10:43 brun Exp $
Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.