Logo ROOT   6.08/07
Reference Guide
TGMenu.h
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: Fons Rademakers 09/01/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_TGMenu
13 #define ROOT_TGMenu
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TGMenuBar, TGPopupMenu, TGMenuTitle and TGMenuEntry //
19 // //
20 // This header contains all different menu classes. //
21 // //
22 // Selecting a menu item will generate the event: //
23 // kC_COMMAND, kCM_MENU, menu id, user data. //
24 // //
25 //////////////////////////////////////////////////////////////////////////
26 
27 #ifndef ROOT_TGFrame
28 #include "TGFrame.h"
29 #endif
30 #ifndef ROOT_TGString
31 #include "TGString.h"
32 #endif
33 #ifndef ROOT_TGPicture
34 #include "TGPicture.h"
35 #endif
36 #ifndef ROOT_TGWidget
37 #include "TGWidget.h"
38 #endif
39 
40 //--- Menu entry status mask
41 
50 };
51 
52 //--- Menu entry types
53 
59 };
60 
61 
62 class TGPopupMenu;
63 class TGMenuBar;
64 class TGMenuTitle;
65 class TTimer;
66 class TGSplitButton;
67 
68 //////////////////////////////////////////////////////////////////////////
69 // //
70 // TGMenuEntry //
71 // //
72 // This class contains all information about a menu entry. //
73 // It is a fully protected class used internally by TGPopupMenu. //
74 // //
75 //////////////////////////////////////////////////////////////////////////
76 
77 class TGMenuEntry : public TObject {
78 
79 friend class TGPopupMenu;
80 friend class TGMenuBar;
81 
82 protected:
83  Int_t fEntryId; // the entry id (used for event processing)
84  void *fUserData; // pointer to user data structure
85  EMenuEntryType fType; // type of entry
86  Int_t fStatus; // entry status (OR of EMenuEntryState)
87  Int_t fEx, fEy; // position of entry
88  UInt_t fEw, fEh; // width and height of entry
89  TGHotString *fLabel; // menu entry label
90  TGString *fShortcut; // menu entry shortcut
91  const TGPicture *fPic; // menu entry icon
92  TGPopupMenu *fPopup; // pointer to popup menu (in case of cascading menus)
93 
94 private:
95  TGMenuEntry(const TGMenuEntry&); // not implemented
96  TGMenuEntry& operator=(const TGMenuEntry&); // not implemented
97 
98 public:
99  TGMenuEntry(): fEntryId(0), fUserData(0), fType(), fStatus(0),
100  fEx(0), fEy(0), fEw(0), fEh(0), fLabel(0), fShortcut(0), fPic(0), fPopup(0) { }
101  virtual ~TGMenuEntry() { if (fLabel) delete fLabel; if (fShortcut) delete fShortcut; }
102 
103  Int_t GetEntryId() const { return fEntryId; }
104  const char *GetName() const { return fLabel ? fLabel->GetString() : 0; }
105  const char *GetShortcutText() const { return fShortcut ? fShortcut->GetString() : 0; }
106  virtual Int_t GetStatus() const { return fStatus; }
107  EMenuEntryType GetType() const { return fType; }
108  TGPopupMenu *GetPopup() const { return fPopup; }
109  TGHotString *GetLabel() const { return fLabel; }
110  TGString *GetShortcut() const { return fShortcut; }
111  Int_t GetEx() const { return fEx; }
112  Int_t GetEy() const { return fEy; }
113  UInt_t GetEw() const { return fEw; }
114  UInt_t GetEh() const { return fEh; }
115  const TGPicture *GetPic() const { return fPic; }
116  void *GetUserData() const { return fUserData; }
117 
118  ClassDef(TGMenuEntry,0); // Menu entry class
119 };
120 
121 
122 //////////////////////////////////////////////////////////////////////////
123 // //
124 // TGPopupMenu //
125 // //
126 // This class creates a popup menu object. Popup menu's are attached //
127 // to TGMenuBar objects. //
128 // //
129 //////////////////////////////////////////////////////////////////////////
130 
131 class TGPopupMenu : public TGFrame {
132 
133 friend class TGMenuTitle;
134 friend class TGMenuBar;
135 friend class TGSplitButton;
136 
137 protected:
138  TList *fEntryList; // list of menu entries
139  TGMenuEntry *fCurrent; // currently selected menu entry
140  Bool_t fStick; // stick mode (popup menu stays sticked on screen)
141  Bool_t fHasGrab; // true if menu has grabbed pointer
142  Bool_t fPoppedUp; // true if menu is currently popped up
143  UInt_t fXl; // Max width of all menu entries
144  UInt_t fMenuWidth; // width of popup menu
145  UInt_t fMenuHeight; // height of popup menu
146  TTimer *fDelay; // delay before poping up cascading menu
147  GContext_t fNormGC; // normal drawing graphics context
148  GContext_t fSelGC; // graphics context for drawing selections
149  GContext_t fSelbackGC; // graphics context for drawing selection background
150  FontStruct_t fFontStruct; // font to draw menu entries
151  FontStruct_t fHifontStruct; // font to draw highlighted entries
152  Cursor_t fDefaultCursor; // right pointing cursor
153  const TGWindow *fMsgWindow; // window which handles menu events
154  TGMenuBar *fMenuBar; // menu bar (if any)
155  TGSplitButton *fSplitButton; // split button (if any)
156  UInt_t fEntrySep; // separation distance between ebtris
157 
158  static const TGFont *fgDefaultFont;
159  static const TGFont *fgHilightFont;
160  static const TGGC *fgDefaultGC;
161  static const TGGC *fgDefaultSelectedGC;
163 
164  void DrawTrianglePattern(GContext_t gc, Int_t l, Int_t t, Int_t r, Int_t b);
165  void DrawCheckMark(GContext_t gc, Int_t l, Int_t t, Int_t r, Int_t b);
166  void DrawRCheckMark(GContext_t gc, Int_t l, Int_t t, Int_t r, Int_t b);
167  virtual void DoRedraw();
168  virtual void DrawEntry(TGMenuEntry *entry);
169  virtual void Reposition();
170 
172  static FontStruct_t GetHilightFontStruct();
173  static const TGGC &GetDefaultGC();
174  static const TGGC &GetDefaultSelectedGC();
175  static const TGGC &GetDefaultSelectedBackgroundGC();
176 
177 private:
178  TGPopupMenu(const TGPopupMenu&); // not implemented
179  TGPopupMenu& operator=(const TGPopupMenu&); // not implemented
180 
181 public:
182  TGPopupMenu(const TGWindow *p = 0, UInt_t w = 10, UInt_t h = 10,
183  UInt_t options = 0);
184  virtual ~TGPopupMenu();
185 
186  virtual void AddEntry(TGHotString *s, Int_t id, void *ud = 0,
187  const TGPicture *p = 0, TGMenuEntry *before = 0);
188  virtual void AddEntry(const char *s, Int_t id, void *ud = 0,
189  const TGPicture *p = 0, TGMenuEntry *before = 0);
190  virtual void AddSeparator(TGMenuEntry *before = 0);
191  virtual void AddLabel(TGHotString *s, const TGPicture *p = 0,
192  TGMenuEntry *before = 0);
193  virtual void AddLabel(const char *s, const TGPicture *p = 0,
194  TGMenuEntry *before = 0);
195  virtual void AddPopup(TGHotString *s, TGPopupMenu *popup,
196  TGMenuEntry *before = 0, const TGPicture *p = 0);
197  virtual void AddPopup(const char *s, TGPopupMenu *popup,
198  TGMenuEntry *before = 0, const TGPicture *p = 0);
199  virtual void EnableEntry(Int_t id);
200  virtual void DisableEntry(Int_t id);
201  virtual Bool_t IsEntryEnabled(Int_t id);
202  virtual void HideEntry(Int_t id);
203  virtual Bool_t IsEntryHidden(Int_t id);
204  virtual void DefaultEntry(Int_t id);
205  virtual void CheckEntry(Int_t id);
206  virtual void CheckEntryByData(void *user_data);
207  virtual void UnCheckEntry(Int_t id);
208  virtual void UnCheckEntryByData(void *user_data);
209  virtual void UnCheckEntries();
210  virtual Bool_t IsEntryChecked(Int_t id);
211  virtual void RCheckEntry(Int_t id, Int_t IDfirst, Int_t IDlast);
212  virtual Bool_t IsEntryRChecked(Int_t id);
213  virtual void PlaceMenu(Int_t x, Int_t y, Bool_t stick_mode,
214  Bool_t grab_pointer);
215  virtual Int_t EndMenu(void *&userData);
216  virtual void DeleteEntry(Int_t id);
217  virtual void DeleteEntry(TGMenuEntry *entry);
218  virtual TGMenuEntry *GetEntry(Int_t id);
219  virtual TGMenuEntry *GetCurrent() const { return fCurrent; }
220  virtual TGMenuEntry *GetEntry(const char *s);
221  const TList *GetListOfEntries() const { return fEntryList; }
222  virtual void DrawBorder();
223  virtual Bool_t HandleButton(Event_t *event);
224  virtual Bool_t HandleMotion(Event_t *event);
225  virtual Bool_t HandleCrossing(Event_t *event);
226  virtual Bool_t HandleTimer(TTimer *t);
227  virtual void Associate(const TGWindow *w) { fMsgWindow = w; }
228  virtual void SetMenuBar(TGMenuBar *bar) { fMenuBar = bar; }
229  TGMenuBar *GetMenuBar() const { return fMenuBar; }
230  virtual void Activate(Bool_t) { }
231  virtual void Activate(TGMenuEntry *entry);
232  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
233 
234  UInt_t GetEntrySep() const { return fEntrySep; }
235  virtual void SetEntrySep(UInt_t sep) { fEntrySep = sep; }
236 
237  virtual void PoppedUp() { Emit("PoppedUp()"); } // *SIGNAL*
238  virtual void PoppedDown() { Emit("PoppedDown()"); } // *SIGNAL*
239  virtual void Highlighted(Int_t id) { Emit("Highlighted(Int_t)", id); } // *SIGNAL*
240  virtual void Activated(Int_t id) { Emit("Activated(Int_t)", id); } // *SIGNAL*
241 
242  ClassDef(TGPopupMenu,0) // Popup menu
243 };
244 
245 
246 //////////////////////////////////////////////////////////////////////////
247 // //
248 // TGMenuTitle //
249 // //
250 // This class creates a menu title. A menu title is a frame //
251 // to which a popup menu can be attached. Menu titles are automatically //
252 // created when adding a popup menu to a menubar. //
253 // //
254 //////////////////////////////////////////////////////////////////////////
255 
256 class TGMenuTitle : public TGFrame {
257 
258 protected:
259  TGPopupMenu *fMenu; // attached popup menu
260  TGHotString *fLabel; // menu title
261  Int_t fTitleId; // id of selected menu item
262  void *fTitleData; // user data associated with selected item
263  Bool_t fState; // menu title state (active/not active)
264  Int_t fHkeycode; // hot key code
266  Pixel_t fTextColor; // text color
267  GContext_t fNormGC, fSelGC; // normal and selection graphics contexts
268 
269  virtual void DoRedraw();
270 
271  static const TGFont *fgDefaultFont;
272  static const TGGC *fgDefaultSelectedGC;
273  static const TGGC *fgDefaultGC;
274 
275 private:
276  TGMenuTitle(const TGMenuTitle&); // not implemented
277  TGMenuTitle& operator=(const TGMenuTitle&); // not implemented
278 
279 public:
280  static FontStruct_t GetDefaultFontStruct();
281  static const TGGC &GetDefaultSelectedGC();
282  static const TGGC &GetDefaultGC();
283 
284  TGMenuTitle(const TGWindow *p = 0, TGHotString *s = 0, TGPopupMenu *menu = 0,
285  GContext_t norm = GetDefaultGC()(),
286  FontStruct_t font = GetDefaultFontStruct(),
287  UInt_t options = 0);
288  virtual ~TGMenuTitle() { if (fLabel) delete fLabel; }
289 
290  Pixel_t GetTextColor() const { return fTextColor; }
291  void SetTextColor(Pixel_t col) { fTextColor = col; }
292  virtual void SetState(Bool_t state);
293  Bool_t GetState() const { return fState; }
294  Int_t GetHotKeyCode() const { return fHkeycode; }
295  TGPopupMenu *GetMenu() const { return fMenu; }
296  const char *GetName() const { return fLabel ? fLabel->GetString() : 0; }
297  virtual void DoSendMessage();
298  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
299 
300  ClassDef(TGMenuTitle,0) // Menu title class
301 };
302 
303 
304 //////////////////////////////////////////////////////////////////////////
305 // //
306 // TGMenuBar //
307 // //
308 // This class creates a menu bar. //
309 // //
310 //////////////////////////////////////////////////////////////////////////
311 
312 class TGMenuBar : public TGHorizontalFrame {
313 
314 friend class TGPopupMenu;
315 
316 protected:
317  TGMenuTitle *fCurrent; // current menu title
318  TList *fTitles; // list of menu titles
319  Cursor_t fDefaultCursor; // right pointing cursor
320  Bool_t fStick; // stick mode (popup menu stays sticked on screen)
321  TList *fTrash; // garbage
322  Bool_t fKeyNavigate; // kTRUE if arrow key navigation is on
323  TGPopupMenu *fMenuMore; // extra >> menu
324  TGLayoutHints *fMenuBarMoreLayout; // layout of the extra menu
325  Bool_t fWithExt; // indicates whether the >> menu is shown or not
326  TList *fOutLayouts; // keeps trace of layouts of hidden menus
327  TList *fNeededSpace; // keeps trace of space needed for hidden menus
328 
329  virtual void AddFrameBefore(TGFrame *f, TGLayoutHints *l = 0,
330  TGPopupMenu *before = 0);
331 
332  virtual void BindHotKey(Int_t keycode, Bool_t on = kTRUE);
333  virtual void BindKeys(Bool_t on = kTRUE);
334  void BindMenu(TGPopupMenu* subMenu, Bool_t on);
335 
336 private:
337  TGMenuBar(const TGMenuBar&); // not implemented
338  TGMenuBar& operator=(const TGMenuBar&); // not implemented
339 
340 public:
341  TGMenuBar(const TGWindow *p = 0, UInt_t w = 60, UInt_t h = 20,
342  UInt_t options = kHorizontalFrame | kRaisedFrame);
343  virtual ~TGMenuBar();
344 
345  virtual void AddPopup(TGHotString *s, TGPopupMenu *menu, TGLayoutHints *l,
346  TGPopupMenu *before = 0);
347  virtual void AddPopup(const char *s, TGPopupMenu *menu, TGLayoutHints *l,
348  TGPopupMenu *before = 0);
349  virtual TGPopupMenu *AddPopup(const TString &s, Int_t padleft = 4, Int_t padright = 0,
350  Int_t padtop = 0, Int_t padbottom = 0);
351  virtual void AddTitle(TGMenuTitle *title, TGLayoutHints *l, TGPopupMenu *before = 0);
352 
353  virtual TGPopupMenu *GetPopup(const char *s);
354  virtual TGPopupMenu *RemovePopup(const char *s);
355 
356  virtual TGMenuTitle *GetCurrent() const { return fCurrent; }
357  virtual TList *GetTitles() const { return fTitles; }
358  virtual Bool_t HandleButton(Event_t *event);
359  virtual Bool_t HandleMotion(Event_t *event);
360  virtual Bool_t HandleKey(Event_t *event);
361  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
362  virtual void Layout();
363  void PopupConnection();
364  TGFrameElement* GetLastOnLeft();
365 
366  ClassDef(TGMenuBar,0) // Menu bar class
367 };
368 
369 #endif
EMenuEntryType fType
Definition: TGMenu.h:85
Handle_t FontStruct_t
Definition: GuiTypes.h:40
TGSplitButton * fSplitButton
Definition: TGMenu.h:155
UInt_t fMenuWidth
Definition: TGMenu.h:144
static FontStruct_t GetDefaultFontStruct()
Return default font structure.
Definition: TGButton.cxx:819
Bool_t fState
Definition: TGMenu.h:263
TGLayoutHints * fMenuBarMoreLayout
Definition: TGMenu.h:324
TGString * fShortcut
Definition: TGMenu.h:90
virtual Bool_t HandleButton(Event_t *event)
Handle button event in the popup menu.
Definition: TGMenu.cxx:1328
virtual Bool_t HandleKey(Event_t *)
Definition: TGFrame.h:228
const char Option_t
Definition: RtypesCore.h:62
TGMenuEntry()
Definition: TGMenu.h:99
UInt_t GetEw() const
Definition: TGMenu.h:113
GContext_t fSelGC
Definition: TGMenu.h:267
TGPopupMenu * GetMenu() const
Definition: TGMenu.h:295
#define BIT(n)
Definition: Rtypes.h:120
TGHotString * GetLabel() const
Definition: TGMenu.h:109
TH1 * h
Definition: legend2.C:5
TList * fTitles
Definition: TGMenu.h:318
virtual ~TGMenuTitle()
Definition: TGMenu.h:288
TList * fNeededSpace
Definition: TGMenu.h:327
Handle_t Cursor_t
Definition: GuiTypes.h:35
UInt_t fEh
Definition: TGMenu.h:88
Int_t fEx
Definition: TGMenu.h:87
UInt_t fEntrySep
Definition: TGMenu.h:156
Handle_t GContext_t
Definition: GuiTypes.h:39
virtual void DrawBorder()
Draw frame border.
Definition: TGFrame.cxx:403
Basic string class.
Definition: TString.h:137
static const TGGC * fgDefaultSelectedGC
Definition: TGMenu.h:272
TGMenuTitle * fCurrent
Definition: TGMenu.h:317
TList * fTrash
Definition: TGMenu.h:321
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
static const TGGC & GetDefaultGC()
Return default graphics context.
Definition: TGButton.cxx:420
virtual Bool_t HandleMotion(Event_t *event)
Handle a motion event in a TGSplitButton.
Definition: TGButton.cxx:3107
TGMenuBar * fMenuBar
Definition: TGMenu.h:154
friend class TGPopupMenu
Definition: TGMenu.h:79
Int_t GetEx() const
Definition: TGMenu.h:111
static const TGFont * fgDefaultFont
Definition: TGMenu.h:158
virtual void Activated(Int_t id)
Definition: TGMenu.h:240
UInt_t fEw
Definition: TGMenu.h:88
TGHotString * fLabel
Definition: TGMenu.h:260
Bool_t fStick
Definition: TGMenu.h:320
const char * GetName() const
Return unique name, used in SavePrimitive methods.
Definition: TGMenu.h:296
TList * fEntryList
Definition: TGMenu.h:138
FontStruct_t fFontStruct
Definition: TGMenu.h:265
const TGPicture * fPic
Definition: TGMenu.h:91
Int_t fStatus
Definition: TGMenu.h:86
virtual void Highlighted(Int_t id)
Definition: TGMenu.h:239
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
ULong_t Pixel_t
Definition: GuiTypes.h:41
TGString * GetShortcut() const
Definition: TGMenu.h:110
Cursor_t fDefaultCursor
Definition: TGMenu.h:152
Int_t fEy
Definition: TGMenu.h:87
TList * fOutLayouts
Definition: TGMenu.h:326
const TGWindow * fMsgWindow
Definition: TGMenu.h:153
friend class TGMenuBar
Definition: TGMenu.h:80
TGPopupMenu * fPopup
Definition: TGMenu.h:92
void * GetUserData() const
Definition: TGMenu.h:116
virtual Bool_t HandleTimer(TTimer *timer)
Execute action in response of a timer timing out.
Definition: TObject.cxx:470
virtual void Activate(Bool_t)
Definition: TGFrame.h:273
void * fTitleData
Definition: TGMenu.h:262
virtual void SetMenuBar(TGMenuBar *bar)
Definition: TGMenu.h:228
Bool_t fStick
Definition: TGMenu.h:140
virtual void DoRedraw()
Draw the text button.
Definition: TGButton.cxx:2563
Pixel_t GetTextColor() const
Definition: TGMenu.h:290
static const TGFont * fgHilightFont
Definition: TGMenu.h:159
void Emit(const char *signal)
Acitvate signal without args.
Definition: TQObject.cxx:561
UInt_t GetEntrySep() const
Definition: TGMenu.h:234
EMenuEntryType GetType() const
Definition: TGMenu.h:107
A doubly linked list.
Definition: TList.h:47
void * fUserData
Definition: TGMenu.h:84
Bool_t fWithExt
Definition: TGMenu.h:325
EMenuEntryState
Definition: TGMenu.h:42
TGPopupMenu * fMenu
Definition: TGMenu.h:259
FontStruct_t fFontStruct
Definition: TGMenu.h:150
Int_t fHkeycode
Definition: TGMenu.h:264
TGPopupMenu * fMenuMore
Definition: TGMenu.h:323
virtual Int_t GetStatus() const
Definition: TGMenu.h:106
TRandom2 r(17)
UInt_t GetEh() const
Definition: TGMenu.h:114
UInt_t fMenuHeight
Definition: TGMenu.h:145
Cursor_t fDefaultCursor
Definition: TGMenu.h:319
leg AddEntry(h1,"Histogram filled with random numbers","f")
static const TGGC * fgDefaultGC
Definition: TGMenu.h:160
TTimer * fDelay
Definition: TGMenu.h:146
const TGPicture * GetPic() const
Definition: TGMenu.h:115
Bool_t fHasGrab
Definition: TGMenu.h:141
virtual void Associate(const TGWindow *w)
Definition: TGMenu.h:227
UInt_t fXl
Definition: TGMenu.h:143
GContext_t fNormGC
Definition: TGMenu.h:147
unsigned int UInt_t
Definition: RtypesCore.h:42
GContext_t fSelbackGC
Definition: TGMenu.h:149
virtual TGMenuTitle * GetCurrent() const
Definition: TGMenu.h:356
TLine * l
Definition: textangle.C:4
Handles synchronous and a-synchronous timer events.
Definition: TTimer.h:57
static const TGFont * fgDefaultFont
Definition: TGMenu.h:271
TGPopupMenu * GetPopup() const
Definition: TGMenu.h:108
virtual Bool_t HandleMotion(Event_t *event)
Handle pointer motion event in popup menu.
Definition: TGMenu.cxx:1384
static const TGGC * fgDefaultSelectedGC
Definition: TGMenu.h:161
static const TGGC * fgDefaultSelectedBackgroundGC
Definition: TGMenu.h:162
const char * GetString() const
Definition: TGString.h:44
virtual Bool_t HandleCrossing(Event_t *event)
Handle mouse crossing event.
Definition: TGButton.cxx:2961
virtual void PoppedDown()
Definition: TGMenu.h:238
Int_t fTitleId
Definition: TGMenu.h:261
virtual TList * GetTitles() const
Definition: TGMenu.h:357
void SetTextColor(Pixel_t col)
Definition: TGMenu.h:291
Pixel_t fTextColor
Definition: TGMenu.h:266
virtual TGMenuEntry * GetCurrent() const
Definition: TGMenu.h:219
double f(double x)
virtual void SetEntrySep(UInt_t sep)
Definition: TGMenu.h:235
const char * GetName() const
Returns name of object.
Definition: TGMenu.h:104
Definition: TGFont.h:155
Int_t fEntryId
Definition: TGMenu.h:83
Double_t y[n]
Definition: legend1.C:17
FontStruct_t fHifontStruct
Definition: TGMenu.h:151
Int_t GetEy() const
Definition: TGMenu.h:112
TGMenuEntry & operator=(const TGMenuEntry &)
Mother of all ROOT objects.
Definition: TObject.h:37
virtual ~TGMenuEntry()
Definition: TGMenu.h:101
RooCmdArg Layout(Double_t xmin, Double_t xmax=0.99, Double_t ymin=0.95)
Bool_t fKeyNavigate
Definition: TGMenu.h:322
virtual void PoppedUp()
Definition: TGMenu.h:237
Int_t GetEntryId() const
Definition: TGMenu.h:103
TGMenuEntry * fCurrent
Definition: TGMenu.h:139
Bool_t fPoppedUp
Definition: TGMenu.h:142
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
TGHotString * fLabel
Definition: TGMenu.h:89
virtual Bool_t HandleButton(Event_t *event)
Handle button events.
Definition: TGButton.cxx:2881
virtual void Activate(Bool_t)
Definition: TGMenu.h:230
TGMenuBar * GetMenuBar() const
Definition: TGMenu.h:229
virtual void AddPopup(TGHotString *s, TGPopupMenu *popup, TGMenuEntry *before=0, const TGPicture *p=0)
Add a (cascading) popup menu to a popup menu.
Definition: TGMenu.cxx:1149
static const TGGC * fgDefaultGC
Definition: TGMenu.h:273
GContext_t fSelGC
Definition: TGMenu.h:148
Int_t GetHotKeyCode() const
Definition: TGMenu.h:294
const char * GetShortcutText() const
Definition: TGMenu.h:105
const Bool_t kTRUE
Definition: Rtypes.h:91
Bool_t GetState() const
Definition: TGMenu.h:293
const TList * GetListOfEntries() const
Definition: TGMenu.h:221
EMenuEntryType
Definition: TGMenu.h:54
double norm(double *x, double *p)
Definition: unuranDistr.cxx:40
Definition: TGGC.h:35
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a primitive as a C++ statement(s) on output stream "out".
Definition: TObject.cxx:709