// @(#)root/gui:$Name: $:$Id: TGMimeTypes.h,v 1.2 2000/12/13 15:13:50 brun Exp $ // Author: Fons Rademakers 18/01/98 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TGMimeTypes #define ROOT_TGMimeTypes ////////////////////////////////////////////////////////////////////////// // // // TGMimeTypes and TGMime // // // // This class handles mime types, used by browsers to map file types // // to applications and icons. TGMime is internally used by TGMimeTypes. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TGClient #include "TGClient.h" #endif #ifndef ROOT_TGPicture #include "TGPicture.h" #endif class TOrdCollection; class TRegexp; class TGMime : public TObject { friend class TGMimeTypes; private: TString fType; // mime type TString fPattern; // filename pattern TString fAction; // associated action TString fIcon; // associated icon (32x32) TString fSIcon; // associated small icon (16x16) TRegexp *fReg; // pattern regular expression public: ~TGMime(); }; class TGMimeTypes : public TObject { protected: TGClient *fClient; // client to which mime types belong (display server) TString fFilename; // file name of mime type file Bool_t fChanged; // true if file has changed TOrdCollection *fList; // list of mime types TGMime *Find(const char *filename); public: TGMimeTypes(TGClient *client, const char *file); virtual ~TGMimeTypes(); void SaveMimes(); Bool_t HasChanged() const { return fChanged; } void AddType(const char *type, const char *pat, const char *icon, const char *sicon, const char *action); void Print(Option_t *option="") const; Bool_t GetAction(const char *filename, char *action); Bool_t GetType(const char *filename, char *type); const TGPicture *GetIcon(const char *filename, Bool_t small_icon); ClassDef(TGMimeTypes,0) // Pool of mime type objects }; #endif