ROOT logo
#ifndef TSelection_HH
#define TSelection_HH
#include "TGClient.h"
#include "TApplication.h"
#include "TGLabel.h"
#include "TGMsgBox.h"
#include "TString.h"
#include "TGTextBuffer.h"
#include "TGTextEntry.h"
#include "TGButton.h"
#include "TList.h"
#include "TObject.h"

class TSelection : public TGTransientFrame
{
  private:
	  int              mMax;
		int              mId;
		
		int*             mSelection;
		int*             mStat;
		TList*           mList;
		
    TGButton         *mOK;
    TGButton         *mCancel;
    TGButton         *mNext;
    TGButton         *mPrevious;
		
    TGRadioButton    *mCheck[20];
		
		bool             mFirst;
		bool             mLoop;
		
		void             make();
				
  public:
                     TSelection(char*, TList*, int*, int*, int = 10, int=600, int=400);
    virtual          ~TSelection();  
    bool             ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
    void             CloseWindow();
            
  ClassDef(TSelection,1)
};
#endif
 TSelection.h:1
 TSelection.h:2
 TSelection.h:3
 TSelection.h:4
 TSelection.h:5
 TSelection.h:6
 TSelection.h:7
 TSelection.h:8
 TSelection.h:9
 TSelection.h:10
 TSelection.h:11
 TSelection.h:12
 TSelection.h:13
 TSelection.h:14
 TSelection.h:15
 TSelection.h:16
 TSelection.h:17
 TSelection.h:18
 TSelection.h:19
 TSelection.h:20
 TSelection.h:21
 TSelection.h:22
 TSelection.h:23
 TSelection.h:24
 TSelection.h:25
 TSelection.h:26
 TSelection.h:27
 TSelection.h:28
 TSelection.h:29
 TSelection.h:30
 TSelection.h:31
 TSelection.h:32
 TSelection.h:33
 TSelection.h:34
 TSelection.h:35
 TSelection.h:36
 TSelection.h:37
 TSelection.h:38
 TSelection.h:39
 TSelection.h:40
 TSelection.h:41
 TSelection.h:42
 TSelection.h:43
 TSelection.h:44