#ifndef ROOT_TGedPatternSelect
#define ROOT_TGedPatternSelect
#ifndef ROOT_TGButton
#include "TGButton.h"
#endif
#ifndef ROOT_TGToolTip
#include "TGToolTip.h"
#endif
class TGedPopup : public TGCompositeFrame {
protected:
   const TGWindow  *fMsgWindow;
public:
   TGedPopup(const TGWindow* p, const TGWindow *m, UInt_t w, UInt_t h,
             UInt_t options = 0, Pixel_t back = GetDefaultFrameBackground());
   virtual ~TGedPopup() { }
   virtual Bool_t HandleButton(Event_t *event);
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   void           PlacePopup(Int_t x, Int_t y, UInt_t w, UInt_t h);
   void           EndPopup();
   ClassDef(TGedPopup,0)  
};
class TGedPatternFrame : public TGFrame {
protected:
   const TGWindow *fMsgWindow;
   Bool_t          fActive;
   Style_t         fPattern;
   static TGGC    *fgGC;
   TGToolTip      *fTip;         
   char            fTipText[5];
   virtual void    DoRedraw();
public:
   TGedPatternFrame(const TGWindow *p, Style_t pattern, Int_t width = 40,
                    Int_t height = 20);
   virtual ~TGedPatternFrame() { delete fTip; }
   virtual Bool_t  HandleButton(Event_t *event);
   virtual Bool_t  HandleCrossing(Event_t *event);
   virtual void    DrawBorder();
   void            SetActive(Bool_t in) { fActive = in; gClient->NeedRedraw(this); }
   Style_t         GetPattern() const { return fPattern; }
   static void     SetFillStyle(TGGC* gc, Style_t fstyle); 
   ClassDef(TGedPatternFrame,0)  
};
class TGedPatternSelector : public TGCompositeFrame {
protected:
   Int_t              fActive;
   const TGWindow    *fMsgWindow;
   TGedPatternFrame  *fCe[27];
public:
   TGedPatternSelector(const TGWindow *p);
   virtual ~TGedPatternSelector();
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   void           SetActive(Int_t newat);
   Int_t          GetActive() const { return fActive; }
   ClassDef(TGedPatternSelector,0)  
};
class TGedPatternPopup : public TGedPopup {
protected:
   Style_t  fCurrentPattern;
public:
   TGedPatternPopup(const TGWindow *p, const TGWindow *m, Style_t pattern);
   virtual ~TGedPatternPopup();
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   ClassDef(TGedPatternPopup,0)  
};
class TGedSelect : public TGCheckButton {
protected:
   TGGC           *fDrawGC;
   TGedPopup      *fPopup;
   virtual void   DoRedraw();
   void           DrawTriangle(GContext_t gc, Int_t x, Int_t y);
public:
   TGedSelect(const TGWindow *p, Int_t id);
   virtual ~TGedSelect();
   virtual Bool_t HandleButton(Event_t *event);
   virtual void   Enable();
   virtual void   Disable();
   virtual void   SetPopup(TGedPopup* p) { fPopup = p; }  
   ClassDef(TGedSelect,0)  
};
class TGedPatternSelect : public TGedSelect {
protected:
   Style_t      fPattern;
   virtual void DoRedraw();
public:
   TGedPatternSelect(const TGWindow *p, Style_t pattern, Int_t id);
   virtual ~TGedPatternSelect() {}
   void           SetPattern(Style_t pattern, Bool_t emit=kTRUE);
   Style_t        GetPattern() const { return fPattern; }
   virtual        TGDimension GetDefaultSize() const { return TGDimension(55, 21); }
   virtual void   PatternSelected(Style_t pattern = 0) 
                  { Emit("PatternSelected(Style_t)", pattern ? pattern : GetPattern()); }  
   virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   virtual void   SavePrimitive(ostream &out, Option_t * = "");
   ClassDef(TGedPatternSelect,0)  
};
#endif
Last change: Wed Jun 25 08:44:02 2008
Last generated: 2008-06-25 08:44
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.