unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

ProgressCell.h (411B)


      1 #import <Cocoa/Cocoa.h>
      2 
      3 @interface ProgressCell : NSCell
      4 {
      5         float _minVal, _maxVal;  // defaults to 0.0, 100.0
      6         BOOL _isActive;
      7         BOOL _useFullView;       // default: NO
      8         BOOL _isError;           // default: NO
      9         NSImage *_icon;
     10         NSString *_statusString;
     11 }
     12 - (void)setStatusString:(NSString *)string;
     13 - (void)setIcon:(NSImage *)image;
     14 - (void)setIsActive:(BOOL)yn;
     15 @end