00001 #ifndef App_h
00002 #define App_h
00003
00004 #include "TGFrame.h"
00005 #include <TROOT.h>
00006 #include <TApplication.h>
00007 #include <TVirtualX.h>
00008
00009
00010 #include <TGListBox.h>
00011 #include <TGClient.h>
00012 #include <TGFrame.h>
00013 #include <TGIcon.h>
00014 #include <TGLabel.h>
00015 #include <TGButton.h>
00016 #include <TGTextEntry.h>
00017 #include <TGNumberEntry.h>
00018 #include <TGMsgBox.h>
00019 #include <TGMenu.h>
00020 #include <TGCanvas.h>
00021 #include <TGComboBox.h>
00022 #include <TGTab.h>
00023 #include <TGSlider.h>
00024 #include <TGDoubleSlider.h>
00025 #include <TGFileDialog.h>
00026 #include <TGTextEdit.h>
00027 #include <TGShutter.h>
00028 #include <TGProgressBar.h>
00029 #include <TGColorSelect.h>
00030 #include <TRootEmbeddedCanvas.h>
00031 #include <TCanvas.h>
00032 #include <TH1.h>
00033 #include <TH2.h>
00034 #include <TRandom.h>
00035 #include <TSystem.h>
00036 #include <TEnv.h>
00037 #include <iostream>
00038
00039 using std::cout;
00040 using std::endl;
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 class App : public TGMainFrame {
00051
00052
00053 private:
00054
00055 TGButton *fTestButton,*fTestButton1;
00056
00057 public:
00058 App(const TGWindow *p, UInt_t w, UInt_t h);
00059 virtual ~App();
00060 void DoDraw();
00061
00062
00063 };
00064
00065 #endif
00066