Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
splitterHorizontal.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_gui
3 /// This macro gives an example of how to create a horizontal splitter.
4 /// To run it do either:
5 /// ~~~
6 /// .x splitterHorizontal.C
7 /// .x splitterHorizontal.C++
8 /// ~~~
9 ///
10 /// \macro_code
11 ///
12 /// \author Ilka Antcheva 1/12/2006
13 
14 #include <TGClient.h>
15 #include <TGButton.h>
16 #include <TGLabel.h>
17 #include <TGFrame.h>
18 #include <TGLayout.h>
19 #include <TGSplitter.h>
20 
21 
22 class MyMainFrame : public TGMainFrame {
23 
24 public:
25  MyMainFrame(const TGWindow *p, UInt_t w, UInt_t h);
26  virtual ~MyMainFrame();
27  void DoSave();
28  void CloseWindow();
29 
30  ClassDef(MyMainFrame, 0)
31 };
32 
33 void MyMainFrame::DoSave()
34 {
35 //------ TGMainFrame::SaveSource() --------
36  Printf("Save in progress...");
37  SaveSource("","");
38 }
39 
40 MyMainFrame::MyMainFrame(const TGWindow *p, UInt_t w, UInt_t h) :
41  TGMainFrame(p, w, h)
42 {
43  // Create horizontal splitter
44  TGVerticalFrame *fVf = new TGVerticalFrame(this, 10, 10);
45 
46  TGHorizontalFrame *fH1 = new TGHorizontalFrame(fVf, 10, 50, kFixedHeight);
47  TGHorizontalFrame *fH2 = new TGHorizontalFrame(fVf, 10, 10);
48  TGCompositeFrame *fFtop = new TGCompositeFrame(fH1, 10, 10, kSunkenFrame);
49  TGCompositeFrame *fFbottom = new TGCompositeFrame(fH2, 10, 10, kSunkenFrame);
50 
51  TGLabel *fLtop = new TGLabel(fFtop, "Top Frame");
52  TGLabel *fLbottom = new TGLabel(fFbottom, "Bottom Frame");
53 
54  fFtop->AddFrame(fLtop, new TGLayoutHints(kLHintsLeft | kLHintsCenterY,
55  3, 0, 0, 0));
56  fFbottom->AddFrame(fLbottom, new TGLayoutHints(kLHintsLeft | kLHintsCenterY,
57  3, 0, 0, 0));
58 
59  fH1->AddFrame(fFtop, new TGLayoutHints(kLHintsTop | kLHintsExpandY |
60  kLHintsExpandX, 0, 0, 1, 2));
61  fH2->AddFrame(fFbottom, new TGLayoutHints(kLHintsTop | kLHintsExpandY |
62  kLHintsExpandX, 0, 0, 1, 2));
63 
64  fH1->Resize(fFtop->GetDefaultWidth(), fH1->GetDefaultHeight()+20);
65  fH2->Resize(fFbottom->GetDefaultWidth(), fH2->GetDefaultHeight()+20);
66  fVf->AddFrame(fH1, new TGLayoutHints(kLHintsTop | kLHintsExpandX));
67 
68  TGHSplitter *hsplitter = new TGHSplitter(fVf,2,2);
69  hsplitter->SetFrame(fH1, kTRUE);
70  fVf->AddFrame(hsplitter, new TGLayoutHints(kLHintsTop | kLHintsExpandX));
71 
72  fVf->AddFrame(fH2, new TGLayoutHints(kLHintsExpandX | kLHintsExpandY));
73 
74  // button frame
75  TGVerticalFrame *hframe = new TGVerticalFrame(this, 10, 10);
76  TGCompositeFrame *cframe2 = new TGCompositeFrame(hframe, 170, 50,
77  kHorizontalFrame | kFixedWidth);
78  TGTextButton *save = new TGTextButton(cframe2, "&Save");
79  cframe2->AddFrame(save, new TGLayoutHints(kLHintsTop | kLHintsExpandX,
80  3, 2, 2, 2));
81  save->Connect("Clicked()", "MyMainFrame", this, "DoSave()");
82  save->SetToolTipText("Click on the button to save the application as C++ macro");
83 
84  TGTextButton *exit = new TGTextButton(cframe2, "&Exit ","gApplication->Terminate(0)");
85  cframe2->AddFrame(exit, new TGLayoutHints(kLHintsTop | kLHintsExpandX,
86  2, 0, 2, 2));
87  hframe->AddFrame(cframe2, new TGLayoutHints(kLHintsExpandX, 2, 2, 5, 1));
88 
89  AddFrame(fVf, new TGLayoutHints(kLHintsRight | kLHintsExpandX | kLHintsExpandY));
90  AddFrame(hframe, new TGLayoutHints(kLHintsExpandX, 2, 2, 5, 1));
91 
92  // What to clean up in dtor
93  SetCleanup(kDeepCleanup);
94 
95  // Set a name to the main frame
96  SetWindowName("Horizontal Splitter");
97  SetWMSizeHints(300, 250, 600, 600, 0, 0);
98  MapSubwindows();
99  Resize(GetDefaultSize());
100  MapWindow();
101 }
102 
103 MyMainFrame::~MyMainFrame()
104 {
105  // Clean up all widgets, frames and layouthints that were used
106  Cleanup();
107 }
108 
109 //______________________________________________________________________________
110 void MyMainFrame::CloseWindow()
111 {
112  // Called when window is closed via the window manager.
113 
114  delete this;
115 }
116 
117 void splitterHorizontal()
118 {
119  // Popup the GUI...
120 
121  new MyMainFrame(gClient->GetRoot(), 300, 250);
122 }