00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface OADOrientedBounds : NSObject
00010 {
00011 struct _NSRect mBounds;
00012 float mRotation;
00013 BOOL mFlipX;
00014 BOOL mFlipY;
00015 }
00016
00017 + (id)orientedBoundsWithBounds:(struct _NSRect)fp8 rotation:(float)fp24 flipX:(BOOL)fp28 flipY:(BOOL)fp32;
00018 + (id)orientedBoundsWithBounds:(struct _NSRect)fp8;
00019 + (BOOL)widthMeansHeight:(float)fp8;
00020 - (id)initWithBounds:(struct _NSRect)fp8 rotation:(float)fp24 flipX:(BOOL)fp28 flipY:(BOOL)fp32;
00021 - (id)initWithBounds:(struct _NSRect)fp8;
00022 - (id)init;
00023 - (void)setOrientedBounds:(id)fp8;
00024 - (struct _NSRect)bounds;
00025 - (void)setBounds:(struct _NSRect)fp8;
00026 - (float)rotation;
00027 - (void)setRotation:(float)fp8;
00028 - (BOOL)flipX;
00029 - (void)setFlipX:(BOOL)fp8;
00030 - (BOOL)flipY;
00031 - (void)setFlipY:(BOOL)fp8;
00032 - (BOOL)isEqualToOrientedBounds:(id)fp8;
00033
00034 @end
00035