Ignore:
Timestamp:
03/28/03 14:24:38 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MParContainer.h

    r1574 r1879  
    3636private:
    3737    enum {
    38         kIsSavedAsPrimitive = BIT(15)
     38        kIsSavedAsPrimitive    = BIT(15),
    3939    };
    4040
     
    4444
    4545public:
     46    enum {
     47        kEnableGraphicalOutput = BIT(16)
     48    };
     49
    4650    MParContainer(const char *name="", const char *title="") : fName(name), fTitle(title), fLog(&gLog), fReadyToSave(kFALSE) {  }
    4751    MParContainer(const TString &name, const TString &title) : fName(name), fTitle(title), fLog(&gLog), fReadyToSave(kFALSE) {  }
     
    7680    virtual void   SetReadyToSave(Bool_t flag=kTRUE) { fReadyToSave=flag; }
    7781    virtual Bool_t IsSavedAsPrimitive() const        { return TestBit(kIsSavedAsPrimitive); }
     82    virtual void   EnableGraphicalOutput(Bool_t flag=kTRUE) { flag ? SetBit(kEnableGraphicalOutput) : ResetBit(kEnableGraphicalOutput);}
     83    virtual Bool_t IsGraphicalOutputEnabled() const  { return TestBit(kEnableGraphicalOutput); }
    7884
    7985    TMethodCall *GetterMethod(const char *name) const;
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r1524 r1879  
    3636
    3737public:
    38     enum { kDoNotReset = BIT(15) };
     38    enum { kDoNotReset = BIT(17) };
    3939
    4040    MParList(const char *name=NULL, const char *title=NULL);
Note: See TracChangeset for help on using the changeset viewer.