5 // Created by Jens Alfke on 3/10/08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
13 @interface GGBTextLayer : GGBLayer
17 CGColorRef _foregroundColor;
18 NSString *_alignmentMode;
21 @property(copy) id string;
22 @property CGFloat fontSize;
23 @property CGColorRef foregroundColor;
24 @property (copy) NSString *alignmentMode;
27 @interface GGBTextLayer : CATextLayer
30 + (GGBTextLayer*) textLayerInSuperlayer: (CALayer*)superlayer
31 withText: (NSString*)text
32 fontSize: (float) fontSize
33 alignment: (enum CAAutoresizingMask) align;