00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifdef __CLDAQ_ROOT_USE
00020 #ifndef CLDAQ__TRECORDDISPLAYMENUBAR_HH
00021 #define CLDAQ__TRECORDDISPLAYMENUBAR_HH
00022
00023 #include <TGMenu.h>
00024 #include "Tglobals.h"
00025 #include "TRecordDisplayComponent.hh"
00026
00027 class TRecordDisplayMenuBar
00028 : public TRecordDisplayComponent, public TGMenuBar
00029 {
00030
00031 private:
00032 TGPopupMenu* theMenuFile;
00033 TGPopupMenu* theMenuCtrl;
00034 TGPopupMenu* theMenuEdit;
00035 TGPopupMenu* theMenuView;
00036
00037 public:
00038 TRecordDisplayMenuBar( TRecordDisplay* d );
00039 ~TRecordDisplayMenuBar();
00040
00041 public:
00042 Tvoid Build();
00043
00044 #ifdef __CLDAQ_ROOT_DLL
00045 ClassDef(TRecordDisplayMenuBar,0)
00046 #endif
00047
00048 };
00049
00050 #endif
00051 #endif