#ifndef ROOT_TRootControlBar
#define ROOT_TRootControlBar
#ifndef ROOT_TControlBarImp
#include "TControlBarImp.h"
#endif
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TControlBar;
class TList;
class TRootControlBar : public TGMainFrame, public TControlBarImp {
private:
   TList          *fWidgets; 
   TGLayoutHints  *fL1;      
public:
   TRootControlBar(TControlBar *c = 0, const char *title = "ROOT Control Bar", 
                   Int_t x = -999, Int_t y = -999);
   virtual ~TRootControlBar();
   void Create();
   void Hide();
   void Show();
   TList *GetWidgets() const { return fWidgets; }
   
   void   CloseWindow();
   Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   void   ReallyDelete();
   void   SetButtonState(const char *label, Int_t state = 0);
   void   SetFont(const char *fontName);
   void   SetTextColor(const char *colorName);
   ClassDef(TRootControlBar,0)  
};
#endif
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.