00001 #ifndef CANVSAVE_H
00002 #define CANVSAVE_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include <TGFrame.h>
00014 #include <TGLabel.h>
00015 #include <TGComboBox.h>
00016 #include <TGTextEntry.h>
00017 #include <TGTextBuffer.h>
00018 #include <TGButton.h>
00019
00020 class CanvSave : public TGTransientFrame {
00021
00022 private:
00023 TGCompositeFrame *fFrame, *fF1, *fF2, *fF3;
00024 TGComboBox *fCombo;
00025 TGTextEntry *fText;
00026 TGTextBuffer *fBuf;
00027 TGButton *fSave, *fCancel;
00028
00029 public:
00030 CanvSave(const TGWindow *p, const TGWindow *main, UInt_t w, UInt_t h,
00031 UInt_t options = kMainFrame | kVerticalFrame);
00032 virtual ~CanvSave();
00033 virtual void CloseWindow();
00034 virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
00035
00036 ClassDef(CanvSave,0)
00037 };
00038
00039 #endif