-
Notifications
You must be signed in to change notification settings - Fork 13
/
TNTextFieldStepper.j
168 lines (134 loc) · 3.44 KB
/
TNTextFieldStepper.j
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
* TNTextFieldStepper.j
*
* Copyright (C) 2010 Antoine Mercadal <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
@import <Foundation/Foundation.j>
@import <AppKit/CPTextField.j>
@import <AppKit/CPStepper.j>
var TNStepperButtonsSize;
/*! @ingroup tnkit
TNTextFieldStepper is a subclass of CPStepper. it contains a textfield that displays the current stepper value
*/
@implementation TNTextFieldStepper : CPControl
{
CPTextField _textField;
CPStepper _stepper;
}
#pragma mark -
#pragma mark Initialization
/*! Initializes the TNTextFieldStepper with the textfield
@param aFrame the frame of the control
@return initialized TNTextFieldStepper
*/
- (id)initWithFrame:(CGRect)aFrame
{
aFrame.origin.x -= 6;
aFrame.origin.y -= 3;
aFrame.size.width += 14;
if (self = [super initWithFrame:aFrame])
{
[self _init];
}
return self;
}
- (void)_init
{
var frame = [self frame];
_stepper = [CPStepper stepper];
[_stepper setFrame:CGRectMake(frame.size.width - 35, 1.0, 25, 25)]
[_stepper setAutoresizingMask:CPViewMinXMargin];
_textField = [CPTextField textFieldWithStringValue:@"" placeholder:@"" width:frame.size.width - 36];
[_textField setAutoresizingMask:CPViewWidthSizable];
[_textField bind:CPValueBinding toObject:_stepper withKeyPath:@"doubleValue" options:nil];
[self addSubview:_stepper];
[self addSubview:_textField];
}
- (void)setEnabled:(BOOL)shouldEnabled
{
[_stepper setEnabled:shouldEnabled];
[_textField setEnabled:shouldEnabled];
}
- (void)setValueWraps:(BOOL)shouldWrap
{
[_stepper setValueWraps:shouldWrap];
}
- (int)valueWraps
{
return [_stepper valueWraps];
}
- (void)setAutorepeat:(BOOL)shouldAutorepeat
{
[_stepper setAutorepeat:shouldAutorepeat];
}
- (int)autorepeat
{
return [_stepper autorepeat];
}
- (void)setMinValue:(int)aValue
{
[_stepper setMinValue:aValue];
}
- (int)minValue
{
return [_stepper minValue];
}
- (void)setMaxValue:(int)aValue
{
[_stepper setMaxValue:aValue];
}
- (int)maxValue
{
return [_stepper maxValue];
}
- (void)setDoubleValue:(double)aValue
{
[_stepper setDoubleValue:aValue];
}
- (double)doubleValue
{
return [_stepper doubleValue];
}
- (void)setTarget:(id)aTarget
{
[_stepper setTarget:aTarget];
[_textField setTarget:aTarget];
}
- (id)target
{
return [_stepper target];
}
- (void)setAction:(SEL)aSelector
{
[_stepper setAction:aSelector];
[_textField setAction:aSelector];
}
- (SEL)selector
{
return [_stepper action];
}
@end
@implementation TNTextFieldStepper (CPCodingCompliance)
- (id)initWithCoder:(CPCoder)aCoder
{
if (self = [super initWithCoder:aCoder])
{
[self _init];
}
return self;
}
@end