Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TSystemFile.h
Go to the documentation of this file.
1 // @(#)root/base:$Id$
2 // Author: Rene Brun 26/06/96
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TSystemFile
13 #define ROOT_TSystemFile
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TSystemFile //
19 // //
20 // Describes an Operating System file for the browser. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 
25 #include "TNamed.h"
26 
27 class TBrowser;
28 
29 class TSystemFile : public TNamed {
30 private:
31  TString fIconName; // icon name
32 
33 public:
34  TSystemFile();
35  TSystemFile(const char *filename, const char *dirname);
36  virtual ~TSystemFile();
37  virtual void Browse(TBrowser *b);
38  virtual void Rename(const char *name); // *MENU*
39  virtual void Delete(); // *MENU*
40  virtual void Copy(const char *to); // *MENU*
41  virtual void Move(const char *to); // *MENU*
42  virtual void Edit(); // *MENU*
43 
44  virtual Bool_t IsDirectory(const char *dir = 0) const;
45  virtual void SetIconName(const char *name) { fIconName = name; }
46  const char *GetIconName() const { return fIconName.Data(); }
47 
48  // dummy methods from TObject
49  virtual void Inspect() const;
50  virtual void Dump() const;
51 
52  void DrawClass() const { }
53  TObject *DrawClone(Option_t *) const { return 0; }
54  void SetDrawOption(Option_t *) { }
55  void SetName(const char *name) { TNamed::SetName(name); }
56  void SetTitle(const char *title) { TNamed::SetTitle(title); }
57  void Delete(Option_t *) { }
58  void Copy(TObject & ) const { }
59 
60  ClassDef(TSystemFile,0) //A system file
61 };
62 
63 #endif
64