00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class EDResources, NSMutableArray, NSString;
00010
00011 @interface EDConditionalFormattingRule : NSObject
00012 {
00013 EDResources *mResources;
00014 int mType;
00015 int mOperator;
00016 NSMutableArray *mFormulas;
00017 unsigned int mDifferentialStyleIndex;
00018 _Bool mStopIfTrue;
00019 int mPriority;
00020 _Bool mAboveAverage;
00021 _Bool mBottom;
00022 _Bool mEqualAverage;
00023 _Bool mPercent;
00024 unsigned int mRank;
00025 int mStdDev;
00026 NSString *mText;
00027 int mTimePeriod;
00028 }
00029
00030 + (id)conditionalFormattingRuleWithResources:(id)fp8;
00031 - (id)initWithResources:(id)fp8;
00032 - (void)dealloc;
00033 - (int)compareToOtherRuleUsingPriority:(id)fp8;
00034 - (int)type;
00035 - (void)setType:(int)fp8;
00036 - (int)operatorEnum;
00037 - (void)setOperatorEnum:(int)fp8;
00038 - (unsigned int)formulaCount;
00039 - (id)formulaAtIndex:(unsigned int)fp8;
00040 - (void)addFormula:(id)fp8;
00041 - (id)differentialStyle;
00042 - (void)setDifferentialStyle:(id)fp8;
00043 - (_Bool)stopIfTrue;
00044 - (void)setStopIfTrue:(_Bool)fp8;
00045 - (int)priority;
00046 - (void)setPriority:(int)fp8;
00047 - (_Bool)aboveAverage;
00048 - (void)setAboveAverage:(_Bool)fp8;
00049 - (_Bool)bottom;
00050 - (void)setBottom:(_Bool)fp8;
00051 - (_Bool)equalAverage;
00052 - (void)setEqualAverage:(_Bool)fp8;
00053 - (_Bool)percent;
00054 - (void)setPercent:(_Bool)fp8;
00055 - (unsigned int)rank;
00056 - (void)setRank:(unsigned int)fp8;
00057 - (int)stdDev;
00058 - (void)setStdDev:(int)fp8;
00059 - (id)text;
00060 - (void)setText:(id)fp8;
00061 - (int)timePeriod;
00062 - (void)setTimePeriod:(int)fp8;
00063
00064 @end
00065