// @(#)root/base:$Name: $:$Id: TSystemFile.h,v 1.4 2005/05/30 10:21:14 rdm Exp $
// Author: Rene Brun 26/06/96
/*************************************************************************
* 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_TSystemFile
#define ROOT_TSystemFile
//////////////////////////////////////////////////////////////////////////
// //
// TSystemFile //
// //
// Describes an Operating System file for the browser. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TNamed
#include "TNamed.h"
#endif
class TBrowser;
class TSystemFile : public TNamed {
private:
TString fIconName; // icon name
public:
TSystemFile();
TSystemFile(const char *filename, const char *dirname);
virtual ~TSystemFile();
virtual void Browse(TBrowser *b);
virtual void Rename(const char *name); // *MENU*
virtual void Delete(); // *MENU*
virtual void Copy(const char *to); // *MENU*
virtual void Move(const char *to); // *MENU*
virtual void Edit(); // *MENU*
virtual Bool_t IsDirectory(const char *dir = 0) const;
virtual void SetIconName(const char *name) { fIconName = name; }
const char *GetIconName() const { return fIconName.Data(); }
// dummy methods from TObject
virtual void Inspect() const;
virtual void Dump() const;
void DrawClass() const { }
TObject *DrawClone(Option_t *) const { return 0; }
void SetDrawOption(Option_t *) { }
void SetName(const char *) { }
void SetTitle(const char *) { }
void Delete(Option_t *) { }
void Copy(TObject & ) const { }
ClassDef(TSystemFile,0) //A system file
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1