Logo ROOT   6.12/07
Reference Guide
TRootControlBar.h
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: Fons Rademakers 22/02/98
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, 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_TRootControlBar
13 #define ROOT_TRootControlBar
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TRootControlBar //
19 // //
20 // This class provides an interface to the GUI dependent functions of //
21 // the TControlBar class. A control bar is a horizontal or vertical bar //
22 // with a number of buttons (text or picture buttons). //
23 // //
24 //////////////////////////////////////////////////////////////////////////
25 
26 #include "TControlBarImp.h"
27 #include "TGFrame.h"
28 
29 class TControlBar;
30 class TList;
31 
32 
33 class TRootControlBar : public TGMainFrame, public TControlBarImp {
34 
35 private:
36  TList *fWidgets; // list of TGTextButton or TGPictureButtons
37  TGLayoutHints *fL1; // button layout hints
38  UInt_t fBwidth; // button width in pixels
39 
40 public:
41  TRootControlBar(TControlBar *c = 0, const char *title = "ROOT Control Bar",
42  Int_t x = -999, Int_t y = -999);
43  virtual ~TRootControlBar();
44 
45  void Create();
46  void Hide();
47  void Show();
48 
49  TList *GetWidgets() const { return fWidgets; }
50 
51  // overridden from TGMainFrame
52  void CloseWindow();
53  Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
54  void ReallyDelete();
55  void SetButtonState(const char *label, Int_t state = 0);
56  void SetButtonWidth(UInt_t width);
57  void SetFont(const char *fontName);
58  void SetTextColor(const char *colorName);
59 
60  ClassDef(TRootControlBar,0) //ROOT native GUI implementation of TControlBar
61 };
62 
63 #endif
TRootControlBar(TControlBar *c=0, const char *title="ROOT Control Bar", Int_t x=-999, Int_t y=-999)
Create a ROOT native GUI controlbar.
A Control Bar is a fully user configurable tool which provides fast access to frequently used operati...
Definition: TControlBar.h:22
void Create()
Create the control bar.
ABC describing GUI independent control bar.
TList * GetWidgets() const
void SetTextColor(const char *colorName)
sets text color for control bar buttons, e.g.
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
void ReallyDelete()
Really delete the control bar and the this GUI.
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:320
virtual ~TRootControlBar()
Delete the control bar implementation.
A doubly linked list.
Definition: TList.h:44
unsigned int UInt_t
Definition: RtypesCore.h:42
void SetButtonWidth(UInt_t width)
Set button width in pixels.
TGLayoutHints * fL1
long Long_t
Definition: RtypesCore.h:50
void Hide()
Hide controlbar.
Double_t y[n]
Definition: legend1.C:17
void SetFont(const char *fontName)
sets new font for control bar buttons
void CloseWindow()
Called when closed via window manager action.
void Show()
Show controlbar. If not yet created create it first.
void SetButtonState(const char *label, Int_t state=0)
sets new font for control bar buttons
Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
Handle controlbar button messages.