ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
AtEventSidebar.h
Go to the documentation of this file.
1 #ifndef AtEVENTSIDEBAR_H
2 #define AtEVENTSIDEBAR_H
3 
4 #include <Rtypes.h> // for UInt_t
5 #include <TGFrame.h>
6 
7 #include <GuiTypes.h> // for kVerticalFrame
8 
9 #include <vector> // for vector
10 class AtSidebarFrame;
11 
15 class AtEventSidebar : public TGMainFrame {
16 private:
17  std::vector<AtSidebarFrame *> fFrames;
18  bool fExpandX;
19 
20 public:
21  AtEventSidebar(UInt_t options = kVerticalFrame);
22 
24  void FillFrames();
25  void AddSidebarFrame(AtSidebarFrame *frame);
26  void UsePictureButtons(bool val);
27 };
28 
29 #endif
AtEventSidebar::AddSidebarFrame
void AddSidebarFrame(AtSidebarFrame *frame)
Definition: AtEventSidebar.cxx:28
AtSidebarFrame
Definition: AtSidebarFrames.h:30
AtEventSidebar
Definition: AtEventSidebar.h:15
AtEventSidebar::UsePictureButtons
void UsePictureButtons(bool val)
Definition: AtEventSidebar.cxx:42
AtEventSidebar::AtEventSidebar
AtEventSidebar(UInt_t options=kVerticalFrame)
Definition: AtEventSidebar.cxx:21
AtEventSidebar::FillFrames
void FillFrames()
Actually generate content of the frames once Init has run.
Definition: AtEventSidebar.cxx:11