]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveBase/AliEveEventManagerEditor.cxx
New default values for baselines (F.Prino)
[u/mrichter/AliRoot.git] / EVE / EveBase / AliEveEventManagerEditor.cxx
index 8a1ec7cc2fa0e87b8e31303553d7b723d90e6178..88f57fc69a75224855086849c3022d982b387356 100644 (file)
 #include "TVirtualPad.h"
 #include "TColor.h"
 
-// Cleanup these includes:
-#include "TGLabel.h"
-#include "TGButton.h"
-#include "TGNumberEntry.h"
-#include "TGColorSelect.h"
-#include "TGDoubleSlider.h"
-
+#include <TEveGValuators.h>
+#include <TGButton.h>
+#include <TGTextView.h>
+#include <TGLabel.h>
 
 //______________________________________________________________________________
 // GUI editor for AliEveEventManager.
@@ -31,17 +28,60 @@ ClassImp(AliEveEventManagerEditor)
 AliEveEventManagerEditor::AliEveEventManagerEditor(const TGWindow *p, Int_t width, Int_t height,
              UInt_t options, Pixel_t back) :
   TGedFrame(p, width, height, options | kVerticalFrame, back),
-  fM(0)
-            // Initialize widget pointers to 0
+  fM(0),
+  fAutoLoad(0),
+  fAutoLoadTime(0),
+  fNextEvent(0),
+  fPrevEvent(0),
+  fEventInfo(0)
 {
   // Constructor.
 
   MakeTitle("AliEveEventManager");
 
   // Create widgets
-  // fXYZZ = new TGSomeWidget(this, ...);
-  // AddFrame(fXYZZ, new TGLayoutHints(...));
-  // fXYZZ->Connect("SignalName()", "Reve::AliEveEventManagerEditor", this, "DoXYZZ()");
+  {
+    fAutoLoadTime = new TEveGValuator(this, "Autoload time:", 110, 0);
+    fAutoLoadTime->SetShowSlider(kFALSE);
+    fAutoLoadTime->SetNELength(4);
+    fAutoLoadTime->Build();
+    fAutoLoadTime->SetLimits(0, 1000);
+    fAutoLoadTime->SetToolTip("Automatic event loading time in seconds");
+    fAutoLoadTime->Connect("ValueSet(Double_t)",
+                          "AliEveEventManagerEditor", this, "DoSetAutoLoadTime()");
+
+    fAutoLoad = new TGCheckButton(fAutoLoadTime,"Autoload");
+    fAutoLoad->SetToolTipText("Automatic event loading (online)");
+    fAutoLoadTime->AddFrame(fAutoLoad, new TGLayoutHints(kLHintsLeft, 12, 0, 2, 0));
+    fAutoLoad->Connect("Toggled(Bool_t)",
+                      "AliEveEventManagerEditor", this, "DoSetAutoLoad()");
+    AddFrame(fAutoLoadTime);
+  }
+  {
+    TGHorizontalFrame* f = new TGHorizontalFrame(this);
+    fPrevEvent = new TGTextButton(f, "Previous Event");
+    f->AddFrame(fPrevEvent, new TGLayoutHints(kLHintsExpandX, 0,4,0,0));
+    fPrevEvent->Connect("Clicked()",
+                       "AliEveEventManagerEditor", this, "DoPrevEvent()");
+    fNextEvent = new TGTextButton(f, "Next Event");
+    f->AddFrame(fNextEvent, new TGLayoutHints(kLHintsExpandX, 4,0,0,0));
+    fNextEvent->Connect("Clicked()",
+                       "AliEveEventManagerEditor", this, "DoNextEvent()");
+    AddFrame(f, new TGLayoutHints(kLHintsExpandX, 8,8,8,0));
+  }
+
+  {
+    TGVerticalFrame* f = new TGVerticalFrame(this);
+
+    TGLabel *eventInfoLabel = new TGLabel(f, "Event Information:");
+    f->AddFrame(eventInfoLabel, new TGLayoutHints(kLHintsNormal, 0,0,6,2));
+
+    fEventInfo = new TGTextView(f, 200, 300);
+    f->AddFrame(fEventInfo, new TGLayoutHints(kLHintsNormal | kLHintsExpandX));
+
+    AddFrame(f, new TGLayoutHints(kLHintsNormal | kLHintsExpandX));
+  }
+
 }
 
 /******************************************************************************/
@@ -54,7 +94,13 @@ void AliEveEventManagerEditor::SetModel(TObject* obj)
   fM = dynamic_cast<AliEveEventManager*>(obj);
 
   // Set values of widgets
-  // fXYZZ->SetValue(fM->GetXYZZ());
+  fAutoLoadTime->SetValue(fM->GetAutoLoadTime());
+  fAutoLoadTime->SetEnabled(fM->GetAutoLoad());
+  fAutoLoad->SetState(fM->GetAutoLoad() ? kButtonDown : kButtonUp);
+
+  fPrevEvent->SetEnabled(!fM->GetIsOnline()); 
+
+  fEventInfo->LoadBuffer(fM->GetEventInfo());
 }
 
 /******************************************************************************/
@@ -62,10 +108,34 @@ void AliEveEventManagerEditor::SetModel(TObject* obj)
 // Implements callback/slot methods
 
 //______________________________________________________________________________
-// void AliEveEventManagerEditor::DoXYZZ()
-// {
-//    // Slot for XYZZ.
-//
-//    fM->SetXYZZ(fXYZZ->GetValue());
-//    Update();
-// }
+void AliEveEventManagerEditor::DoSetAutoLoad()
+{
+  // Set the auto-load flag
+  //
+  fM->SetAutoLoad(fAutoLoad->IsOn());
+  Update();
+}
+
+//______________________________________________________________________________
+void AliEveEventManagerEditor::DoSetAutoLoadTime()
+{
+  // Set the auto-load time in seconds
+  //
+  fM->SetAutoLoadTime(fAutoLoadTime->GetValue());
+  fM->SetAutoLoad(fAutoLoad->IsOn());
+  Update();
+}
+
+//______________________________________________________________________________
+void AliEveEventManagerEditor::DoPrevEvent()
+{
+  // Load previous event
+  fM->PrevEvent();
+}
+
+//______________________________________________________________________________
+void AliEveEventManagerEditor::DoNextEvent()
+{
+  // Load next event
+  fM->NextEvent();
+}