Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
splitbuttonTest.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_gui
3/// A simple example that shows the usage of a TGSplitButton.
4/// The checkbutton is used to change the split state of the button.
5///
6/// \macro_code
7///
8/// \author Roel Aaij 13/07/2007
9
10#include <iostream>
11#include <TApplication.h>
12#include <TGClient.h>
13#include <TGButton.h>
14#include <TGFrame.h>
15#include <TGLayout.h>
16#include <TGWindow.h>
17#include <TGLabel.h>
18#include <TString.h>
19#include <TGMenu.h>
20
21// A little class to automatically handle the generation of unique
22// widget ids.
23enum EMenuIds {
24 ID_1,
25 ID_2,
26 ID_3,
27 ID_4,
28 ID_5
29};
30
31class IDList {
32private:
33 Int_t nID ; // Generates unique widget IDs.
34public:
35 IDList() : nID(0) {}
36 ~IDList() {}
37 Int_t GetUnID(void) { return ++nID ; }
38} ;
39
40
41class SplitButtonTest : public TGMainFrame {
42
43private:
44 TGSplitButton *fMButton; // Split Button
45 TGPopupMenu *fPopMenu; // TGpopupMenu that will be attached to
46 // the button.
47 IDList IDs ; // Generator for unique widget IDs.
48
49public:
50 SplitButtonTest(const TGWindow *p, UInt_t w, UInt_t h) ;
51 ~SplitButtonTest() override ;
52
53 void DoExit() ;
54 void DoSplit(Bool_t split) ;
55 void DoEnable(Bool_t on) ;
56 void HandleMenu(Int_t id) ;
57
58 ClassDefOverride(SplitButtonTest, 0)
59};
60
61SplitButtonTest::SplitButtonTest(const TGWindow *p, UInt_t w, UInt_t h)
62 : TGMainFrame(p, w, h)
63{
64 SetCleanup(kDeepCleanup) ;
65
66 Connect("CloseWindow()", "SplitButtonTest", this, "DoExit()") ;
67 DontCallClose() ;
68
69 TGVerticalFrame *fVL = new TGVerticalFrame(this, 100, 100) ;
70 TGHorizontalFrame *fHL = new TGHorizontalFrame(fVL, 100, 40) ;
71
72 // Create a popup menu.
73 fPopMenu = new TGPopupMenu(gClient->GetRoot());
74 fPopMenu->AddEntry("Button &1", ID_1);
75 fPopMenu->AddEntry("Button &2", ID_2);
76 fPopMenu->DisableEntry(ID_2);
77 fPopMenu->AddEntry("Button &3", ID_3);
78 fPopMenu->AddSeparator();
79
80 // Create a split button, the menu is adopted.
81 fMButton = new TGSplitButton(fHL, new TGHotString("Button &Options"),
82 fPopMenu, IDs.GetUnID());
83
84 // It is possible to add entries later
85 fPopMenu->AddEntry("En&try with really really long name", ID_4);
86 fPopMenu->AddEntry("&Exit", ID_5);
87
88 // Connect the special signal for the activation of items in a menu
89 // that belongs to a split button to the slot.
90 fMButton->Connect("ItemClicked(Int_t)", "SplitButtonTest", this,
91 "HandleMenu(Int_t)");
92
93 TGCheckButton *fCButton = new TGCheckButton(fHL, new TGHotString("Split"),
94 IDs.GetUnID());
95 fCButton->SetState(kButtonDown);
96 fCButton->Connect("Toggled(Bool_t)", "SplitButtonTest", this, "DoSplit(Bool_t)");
97
98 // Add frames to their parent for layout.
100 0, 10, 0, 0)) ;
101 TGCheckButton *fEButton = new TGCheckButton(fHL, new TGHotString("Enable"),
102 IDs.GetUnID());
103 fEButton->SetState(kButtonDown);
104 fEButton->Connect("Toggled(Bool_t)", "SplitButtonTest", this, "DoEnable(Bool_t)");
105
106 // Add frames to their parent for layout.
108 0, 10, 0, 0)) ;
111 AddFrame(fVL, new TGLayoutHints(kLHintsCenterX | kLHintsCenterY)) ;
112
113 SetWindowName("SplitButton Test") ;
114 MapSubwindows() ;
115 Resize(GetDefaultSize()) ;
116 MapWindow() ;
117
118} ;
119
120SplitButtonTest::~SplitButtonTest()
121{
122 // Destructor
123 Cleanup() ;
124}
125
126void SplitButtonTest::DoExit()
127{
128 // Exit this application via the Exit button or Window Manager.
129 // Use one of the both lines according to your needs.
130 // Please note to re-run this macro in the same ROOT session,
131 // you have to compile it to get signals/slots 'on place'.
132
133 //DeleteWindow(); // to stay in the ROOT session
134 gApplication->Terminate(); // to exit and close the ROOT session
135}
136
137void SplitButtonTest::DoSplit(Bool_t split)
138{
139 fMButton->SetSplit(split);
140}
141
142void SplitButtonTest::DoEnable(Bool_t on)
143{
144 if (on)
145 fMButton->SetState(kButtonUp);
146 else
147 fMButton->SetState(kButtonDisabled);
148}
149
150void SplitButtonTest::HandleMenu(Int_t id)
151{
152 // Activation of menu items in the popup menu are handled in a user
153 // defined slot to which the ItemClicked(Int_t) signal is
154 // connected.
155
156 switch (id) {
157 case ID_1:
158 std::cout << "Button 1 was activated" << std::endl;
159 break;
160 case ID_2:
161 std::cout << "Button 2 was activated" << std::endl;
162 break;
163 case ID_3:
164 std::cout << "Button 3 was activated" << std::endl;
165 break;
166 case ID_4:
167 std::cout << "Button with a really really long name was activated"
168 << std::endl;
169 break;
170 case ID_5:
171 DoExit();
172 break;
173 }
174}
175void splitbuttonTest()
176{
177 new SplitButtonTest(gClient->GetRoot(),100,100);
178}
179
#define h(i)
Definition RSha256.hxx:106
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
unsigned int UInt_t
Definition RtypesCore.h:46
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
R__EXTERN TApplication * gApplication
@ kButtonDown
Definition TGButton.h:54
@ kButtonDisabled
Definition TGButton.h:56
@ kButtonUp
Definition TGButton.h:53
#define gClient
Definition TGClient.h:156
@ kDeepCleanup
Definition TGFrame.h:42
@ kLHintsCenterY
Definition TGLayout.h:28
@ kLHintsCenterX
Definition TGLayout.h:25
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void on
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize MapSubwindows
virtual void Terminate(Int_t status=0)
Terminate the application by call TSystem::Exit() unless application has been told to return from Run...
Selects different options.
Definition TGButton.h:264
void SetState(EButtonState state, Bool_t emit=kFALSE) override
Set check button state.
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
A composite frame that layout their children in horizontal way.
Definition TGFrame.h:385
TGHotString is a string with a "hot" character underlined.
Definition TGString.h:42
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
Defines top level windows that interact with the system Window Manager.
Definition TGFrame.h:397
This class creates a popup menu object.
Definition TGMenu.h:110
Implements a button with added menu functionality.
Definition TGButton.h:378
A composite frame that layout their children in vertical way.
Definition TGFrame.h:374
ROOT GUI Window base class.
Definition TGWindow.h:23
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
Non-static method is used to connect from the signal of this object to the receiver slot.
Definition TQObject.cxx:869