/Volumes/Plantain/MyDocuments/Projects/MacTrek/MacTrek/Luky/Gui/LLBar.h

00001 //
00002 //  LLBar.h
00003 //  MacTrek
00004 //
00005 //  Created by Aqua on 27/04/2006.
00006 //  Copyright 2006 __MyCompanyName__. All rights reserved.
00007 //
00008 
00009 #import <Cocoa/Cocoa.h>
00010 
00011 #define LLBAR_SEPERATION_BETWEEN_RECTS 1
00012 
00013 @interface LLBar : NSView {
00014 
00015         float max;
00016         float min;
00017         float value;
00018         float tempMax;
00019         float warning;
00020         float critical;
00021     NSString *name;
00022     bool discrete;
00023 }
00024 
00025 - (NSString *)name;
00026 - (float) min;
00027 - (float) max;
00028 - (float) value;
00029 - (float) tempMax;
00030 - (float) warning;
00031 - (float) critical;
00032 - (bool)  discrete;
00033 
00034 - (void) setName:(NSString *) newValue;
00035 - (void) setDiscrete:(bool)discrete;
00036 - (void) setMin:(float)newValue;
00037 - (void) setMax:(float)newValue;
00038 - (void) setValue:(float)newValue;
00039 - (void) setTempMax:(float)newValue;
00040 - (void) setWarning:(float)newValue;
00041 - (void) setCritical:(float)newValue;
00042 
00043 @end

Generated on Fri Jul 28 19:15:22 2006 for MacTrek by  doxygen 1.4.7