Logo ROOT   6.12/07
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 #include "TGFrame.h"
26 
27 class TGButton;
28 class TGPictureButton;
29 class TList;
30 class TMap;
31 
32 struct ToolBarData_t {
33  const char *fPixmap;
34  const char *fTipText;
38 };
39 
40 
41 
42 class TGToolBar : public TGCompositeFrame {
43 
44 protected:
45  TList *fPictures; // list of pictures that should be freed
46  TList *fTrash; // list of buttons and layout hints to be deleted
47  TMap *fMapOfButtons; // map of button/id pairs in this group
48 
49 private:
50  TGToolBar(const TGToolBar&); // not implemented
51  TGToolBar& operator=(const TGToolBar&); // not implemented
52 
53 public:
54  TGToolBar(const TGWindow *p = 0, UInt_t w = 1, UInt_t h = 1,
55  UInt_t options = kHorizontalFrame,
56  Pixel_t back = GetDefaultFrameBackground());
57  virtual ~TGToolBar();
58 
59  virtual TGButton *AddButton(const TGWindow *w, ToolBarData_t *button, Int_t spacing = 0);
60  virtual TGButton *AddButton(const TGWindow *w, TGPictureButton *button, Int_t spacing = 0);
61 
62  virtual void ChangeIcon(ToolBarData_t *button, const char *new_icon);
63  virtual void Cleanup();
64  virtual TGButton *GetButton(Int_t id) const;
65  virtual Long_t GetId(TGButton *button) const;
66  virtual void SetId(TGButton *button, Long_t id);
67 
68  virtual void ButtonPressed();
69  virtual void ButtonReleased();
70  virtual void ButtonClicked();
71 
72  virtual void Pressed(Int_t id) { Emit("Pressed(Int_t)",id); } //*SIGNAL*
73  virtual void Released(Int_t id) { Emit("Released(Int_t)",id);} //*SIGNAL*
74  virtual void Clicked(Int_t id) { Emit("Clicked(Int_t)",id); } //*SIGNAL*
75 
76  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
77 
78  ClassDef(TGToolBar,0) //A bar containing picture buttons
79 };
80 
81 #endif
virtual void Clicked(Int_t id)
Definition: TGToolBar.h:74
TGButton * fButton
Definition: TGToolBar.h:37
TMap * fMapOfButtons
Definition: TGToolBar.h:47
const char Option_t
Definition: RtypesCore.h:62
TH1 * h
Definition: legend2.C:5
Bool_t fStayDown
Definition: TGToolBar.h:35
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void Pressed(Int_t id)
Definition: TGToolBar.h:72
TList * fPictures
Definition: TGToolBar.h:45
TList * fTrash
Definition: TGToolBar.h:46
#define ClassDef(name, id)
Definition: Rtypes.h:320
ULong_t Pixel_t
Definition: GuiTypes.h:39
A doubly linked list.
Definition: TList.h:44
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual void Released(Int_t id)
Definition: TGToolBar.h:73
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:40
const char * fTipText
Definition: TGToolBar.h:34
Binding & operator=(OUT(*fun)(void))
const char * fPixmap
Definition: TGToolBar.h:33