Logo ROOT   6.07/09
Reference Guide
TGToolBar.h
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: Fons Rademakers 25/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_TGToolBar
13 #define ROOT_TGToolBar
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TGToolBar //
19 // //
20 // A toolbar is a composite frame that contains TGPictureButtons. //
21 // Often used in combination with a TGHorizontal3DLine. //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_TGFrame
26 #include "TGFrame.h"
27 #endif
28 
29 class TGButton;
30 class TGPictureButton;
31 class TList;
32 class TMap;
33 
34 struct ToolBarData_t {
35  const char *fPixmap;
36  const char *fTipText;
40 };
41 
42 
43 
44 class TGToolBar : public TGCompositeFrame {
45 
46 protected:
47  TList *fPictures; // list of pictures that should be freed
48  TList *fTrash; // list of buttons and layout hints to be deleted
49  TMap *fMapOfButtons; // map of button/id pairs in this group
50 
51 private:
52  TGToolBar(const TGToolBar&); // not implemented
53  TGToolBar& operator=(const TGToolBar&); // not implemented
54 
55 public:
56  TGToolBar(const TGWindow *p = 0, UInt_t w = 1, UInt_t h = 1,
57  UInt_t options = kHorizontalFrame,
58  Pixel_t back = GetDefaultFrameBackground());
59  virtual ~TGToolBar();
60 
61  virtual TGButton *AddButton(const TGWindow *w, ToolBarData_t *button, Int_t spacing = 0);
62  virtual TGButton *AddButton(const TGWindow *w, TGPictureButton *button, Int_t spacing = 0);
63 
64  virtual void ChangeIcon(ToolBarData_t *button, const char *new_icon);
65  virtual void Cleanup();
66  virtual TGButton *GetButton(Int_t id) const;
67  virtual Long_t GetId(TGButton *button) const;
68  virtual void SetId(TGButton *button, Long_t id);
69 
70  virtual void ButtonPressed();
71  virtual void ButtonReleased();
72  virtual void ButtonClicked();
73 
74  virtual void Pressed(Int_t id) { Emit("Pressed(Int_t)",id); } //*SIGNAL*
75  virtual void Released(Int_t id) { Emit("Released(Int_t)",id);} //*SIGNAL*
76  virtual void Clicked(Int_t id) { Emit("Clicked(Int_t)",id); } //*SIGNAL*
77 
78  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
79 
80  ClassDef(TGToolBar,0) //A bar containing picture buttons
81 };
82 
83 #endif
virtual void Clicked(Int_t id)
Definition: TGToolBar.h:76
TGButton * fButton
Definition: TGToolBar.h:39
TMap * fMapOfButtons
Definition: TGToolBar.h:49
const char Option_t
Definition: RtypesCore.h:62
TH1 * h
Definition: legend2.C:5
Bool_t fStayDown
Definition: TGToolBar.h:37
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void Pressed(Int_t id)
Definition: TGToolBar.h:74
TList * fPictures
Definition: TGToolBar.h:47
TList * fTrash
Definition: TGToolBar.h:48
#define ClassDef(name, id)
Definition: Rtypes.h:254
ULong_t Pixel_t
Definition: GuiTypes.h:41
A doubly linked list.
Definition: TList.h:47
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual void Released(Int_t id)
Definition: TGToolBar.h:75
long Long_t
Definition: RtypesCore.h:50
TMap implements an associative array of (key,value) pairs using a THashTable for efficient retrieval ...
Definition: TMap.h:44
const char * fTipText
Definition: TGToolBar.h:36
const char * fPixmap
Definition: TGToolBar.h:35