// @(#)root/memstat:$Name$:$Id: TMemStatViewerGUI.h 24658 2008-07-04 09:06:58Z anar $ // Author: M.Ivanov -- Anar Manafov (A.Manafov@gsi.de) 28/04/2008 /************************************************************************* * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ /////////////////////////////////////////////////////////////////////////////// // // // GUI for the AliTPCCalibViewer // // used for the calibration monitor // // // /////////////////////////////////////////////////////////////////////////////// #ifndef ALITPCCALIBVIEWERGUI #define ALITPCCALIBVIEWERGUI // STD #include #include // ROOT #include "TGFrame.h" class TGTextView; class TGNumberEntry; class TGComboBox; class TMemStatViewerGUI : public TGCompositeFrame { protected: TMemStat *fViewer; // CalibViewer object used for drawing TGTextView *fText; // text widget TGNumberEntry *fNmbStackDeep; // number entry box for specifying the stack deepness TGNumberEntry *fNmbSortDeep; // number entry box for specifying the number of stamps std::string fCurLib; std::string fCurFunc; protected: void MakeContSortStat(TGCompositeFrame *frame); void MakeContSortStamp(TGCompositeFrame *frame); void MakeContDeep(TGCompositeFrame *frame); void MakeStampList(TGCompositeFrame *frame); void MakeSelection(TGCompositeFrame *frame); void Initialize(Option_t* option); // initializes the GUI with default settings and opens tree for drawing void MakePrint(); // get print template< class T > void HandleRButtons(Int_t id, Int_t FirstBtnId, T *ViewerSortType); public: TMemStatViewerGUI() {;} TMemStatViewerGUI(const TGWindow *p, UInt_t w, UInt_t h, Option_t* option = "read"); virtual ~TMemStatViewerGUI(); static void ShowGUI(); // initialize and show GUI for presentation void HandleButtonsSortStat(Int_t id = -1); // handles mutual radio button for sort stat void HandleButtonsSortStamp(Int_t id = -1); // handles mutual radio button for sort stamp void HandleDeep(Long_t id); // handles stack deep and nrows void HandleStampSelect(const char*); void HandleFuncSelect(const char*); void HandleLibSelect(const char*); ClassDef(TMemStatViewerGUI, 0) // a GUI class of memstat }; //______________________________________________________________________________ template< class T > void TMemStatViewerGUI::HandleRButtons(Int_t id, Int_t FirstBtnId, T *ViewerSortType) { // handles mutual radio button exclusions *ViewerSortType = static_cast(id - FirstBtnId); } #endif