ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TGMdiMenu.h
Go to the documentation of this file.
1 // @(#)root/gui:$Id$
2 // Author: Bertrand Bellenot 20/08/2004
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2004, 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 /**************************************************************************
13 
14  This file is part of TGMdi, an extension to the xclass toolkit.
15  Copyright (C) 1998-2002 by Harald Radke, Hector Peraza.
16 
17  This application is free software; you can redistribute it and/or
18  modify it under the terms of the GNU Library General Public
19  License as published by the Free Software Foundation; either
20  version 2 of the License, or (at your option) any later version.
21 
22  This application is distributed in the hope that it will be useful,
23  but WITHOUT ANY WARRANTY; without even the implied warranty of
24  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25  Library General Public License for more details.
26 
27  You should have received a copy of the GNU Library General Public
28  License along with this library; if not, write to the Free
29  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 
31 **************************************************************************/
32 
33 #ifndef ROOT_TGMdiMenu
34 #define ROOT_TGMdiMenu
35 
36 //////////////////////////////////////////////////////////////////////////
37 // //
38 // TGMdiMenu. //
39 // //
40 // This file contains the TGMdiMenuBar class. //
41 // //
42 //////////////////////////////////////////////////////////////////////////
43 
44 #ifndef ROOT_TGMenu
45 #include "TGMenu.h"
46 #endif
47 #ifndef ROOT_TGFrame
48 #include "TGFrame.h"
49 #endif
50 
51 
52 class TGMdiMainFrame;
53 class TGMdiTitleIcon;
54 class TGMdiButtons;
55 
56 
58 
59 friend class TGMdiMainFrame;
60 
61 protected:
62  TGCompositeFrame *fLeft, *fRight; // left and right parts of MDI menu bar
63  TGMenuBar *fBar; // standard menu bar
64  TGLayoutHints *fLHint, *fLeftHint; // left layout hints
65  TGLayoutHints *fRightHint, *fBarHint; // right layout hints
66 
67  void AddFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons);
68  void RemoveFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons);
69  void ShowFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons);
70  void HideFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons);
71 
72 public:
73  TGMdiMenuBar(const TGWindow *p, Int_t w = 1, Int_t h = 20);
74  virtual ~TGMdiMenuBar();
75 
77  TGMenuBar *GetMenuBar() const { return fBar;}
78  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
79 
80  ClassDef(TGMdiMenuBar, 0) // MDI menu bar
81 };
82 
83 #endif
void HideFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
Used to hide specific frames from menu bar.
Definition: TGMdiMenu.cxx:154
TGLayoutHints * fRightHint
Definition: TGMdiMenu.h:65
TGCompositeFrame * fLeft
Definition: TGMdiMenu.h:62
const char Option_t
Definition: RtypesCore.h:62
TH1 * h
Definition: legend2.C:5
void AddFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Maximize().
Definition: TGMdiMenu.cxx:94
int Int_t
Definition: RtypesCore.h:41
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save a MDI menu as a C++ statement(s) on output stream out.
Definition: TGMdiMenu.cxx:173
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual ~TGMdiMenuBar()
TGMdiMenuBar destructor.
Definition: TGMdiMenu.cxx:72
char * out
Definition: TBase64.cxx:29
void AddPopup(TGHotString *s, TGPopupMenu *menu, TGLayoutHints *l)
Add popup menu to the MDI menu bar with layout hints l.
Definition: TGMdiMenu.cxx:85
TGCompositeFrame * fRight
Definition: TGMdiMenu.h:62
tuple w
Definition: qtexample.py:51
TLine * l
Definition: textangle.C:4
TGMenuBar * fBar
Definition: TGMdiMenu.h:63
void ShowFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Maximize().
Definition: TGMdiMenu.cxx:134
TGMdiMenuBar(const TGWindow *p, Int_t w=1, Int_t h=20)
void RemoveFrames(TGMdiTitleIcon *icon, TGMdiButtons *buttons)
This is called from TGMdiMainFrame on Restore()
Definition: TGMdiMenu.cxx:116
TGLayoutHints * fLeftHint
Definition: TGMdiMenu.h:64
TGLayoutHints * fBarHint
Definition: TGMdiMenu.h:65
TGLayoutHints * fLHint
Definition: TGMdiMenu.h:64
TGMenuBar * GetMenuBar() const
Definition: TGMdiMenu.h:77