#ifndef ROOT_TGIcon
#define ROOT_TGIcon
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TGDimension
#include "TGDimension.h"
#endif
class TGPicture;
class TImage;
class TGIcon : public TGFrame {
protected:
const TGPicture *fPic;
TImage *fImage;
TString fPath;
virtual void DoRedraw();
private:
TGIcon(const TGIcon &);
TGIcon& operator=(const TGIcon&);
public:
TGIcon(const TGWindow *p, const TGPicture *pic, UInt_t w, UInt_t h,
UInt_t options = kChildFrame, Pixel_t back = GetDefaultFrameBackground()) :
TGFrame(p, w, h, options, back), fPic(pic), fImage(0), fPath() { SetWindowName(); }
TGIcon(const TGWindow *p = 0, const char *image = 0);
virtual ~TGIcon();
virtual void Reset();
const TGPicture *GetPicture() const { return fPic; }
TImage *GetImage() const { return fImage; }
virtual void SetPicture(const TGPicture *pic);
virtual void SetImage(const char *img);
virtual void SetImage(TImage *img);
virtual void SetImagePath(const char *path);
virtual void Resize(UInt_t w = 0, UInt_t h = 0);
virtual void Resize(TGDimension size) { Resize(size.fWidth, size.fHeight); }
virtual void MoveResize(Int_t x, Int_t y, UInt_t w = 0, UInt_t h = 0);
virtual void ChangeBackgroundColor() { }
virtual TGDimension GetDefaultSize() const;
virtual void SavePrimitive(ostream &out, Option_t *option = "");
ClassDef(TGIcon,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.