Text, playing cards, and Klondike solitaire all work on iPhone now. (Regression: Klondike UI layout has changed, and is awkward on Mac now. Need to special case that.)
5 // Created by Jens Alfke on 3/7/08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
10 #import <QuartzCore/QuartzCore.h>
12 #import <Quartz/Quartz.h>
16 @interface GGBLayer : CALayer <NSCopying>
19 // For some reason, the CALayer class on iPhone OS doesn't have these!
21 CGFloat _cornerRadius, _borderWidth;
22 CGColorRef _borderColor, _realBGColor;
23 unsigned int _autoresizingMask;
25 @property CGFloat cornerRadius, borderWidth;
26 @property CGColorRef borderColor;
29 - (void) redisplayAll;