#ifndef ROOT_TGShapedFrame
#define ROOT_TGShapedFrame
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifndef ROOT_TImage
#include "TImage.h"
#endif
#ifndef ROOT_TGPicture
#include "TGPicture.h"
#endif
class TGShapedFrame : public TGCompositeFrame {
private:
TGShapedFrame(const TGShapedFrame&);
TGShapedFrame& operator=(const TGShapedFrame&);
protected:
const TGPicture *fBgnd;
TImage *fImage;
virtual void DoRedraw() {}
public:
TGShapedFrame(const char *fname=0, const TGWindow *p=0, UInt_t w=1, UInt_t h=1, UInt_t options=0);
virtual ~TGShapedFrame();
const TGPicture GetPicture() const { return *fBgnd; }
TImage GetImage() const { return *fImage; }
virtual void SavePrimitive(ostream &out, Option_t *option = "");
ClassDef(TGShapedFrame, 0)
};
#endif
Last change: Wed Jun 25 08:42:41 2008
Last generated: 2008-06-25 08:42
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.