Changed controlKey display character, per Alex's request.
[ITKit.git] / ITTextField.h
1 /*
2  *      ITKit
3  *      ITTextField.h
4  *
5  *      Custom NSTextField subclass that uses ITTextFieldCell.
6  *
7  *      Copyright (c) 2005 by iThink Software.
8  *      All Rights Reserved.
9  *
10  *      $Id$
11  *
12  */
13
14 #import <Cocoa/Cocoa.h>
15
16 @interface ITTextField : NSTextField {
17
18 }
19
20 - (BOOL)castsShadow;
21 - (void)setCastsShadow:(BOOL)newSetting;
22
23 - (float)shadowElevation; /* Light source elevation in degrees. Defaults to 45.0 */
24 - (void)setShadowElevation:(float)newElevation;
25
26 - (float)shadowAzimuth; /* Light source azimuth in degrees. Defaults to 90.0 */
27 - (void)setShadowAzimuth:(float)newAzimuth;
28
29 - (float)shadowAmbient; /* Amount of ambient light. Defaults to 0.15 */
30 - (void)setShadowAmbient:(float)newAmbient;
31
32 - (float)shadowHeight; /* Height above the canvas. Defaults to 1.0 */
33 - (void)setShadowHeight:(float)newHeight;
34
35 - (float)shadowRadius; /* Blur radius. Defaults to 4.0 */
36 - (void)setShadowRadius:(float)newRadius;
37
38 - (float)shadowSaturation; /* Maximum saturation. Defaults to 1.0 */
39 - (void)setShadowSaturation:(float)newSaturation;
40
41 @end