summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/autofill/autofill_textfield.mm
blob: f9814dc871a7934baaa93a410c4db29e90fc0bdb (plain)
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "chrome/browser/ui/cocoa/autofill/autofill_textfield.h"

#include <algorithm>
#include <cmath>

#include "base/logging.h"
#include "ui/gfx/scoped_ns_graphics_context_save_gstate_mac.h"

const CGFloat kGap = 6.0;  // gap between icon and text.
const CGFloat kMinimumHeight = 27.0;  // Enforced minimum height for text cells.

@interface AutofillTextFieldCell ()
- (NSRect)textFrameForFrame:(NSRect)frame;
@end

@interface AutofillTextField ()
// Resize to accommodate contents, but keep width fixed.
- (void)resizeToText;
@end

@implementation AutofillTextField

@synthesize inputDelegate = inputDelegate_;
@synthesize isMultiline = isMultiline_;

+ (Class)cellClass {
  return [AutofillTextFieldCell class];
}

- (id)initWithFrame:(NSRect)frame {
  if (self = [super initWithFrame:frame])
    [super setDelegate:self];
  return self;
}

- (BOOL)becomeFirstResponder {
  BOOL result = [super becomeFirstResponder];
  if (result && inputDelegate_) {
    [inputDelegate_ fieldBecameFirstResponder:self];
    shouldFilterClick_ = YES;
  }
  return result;
}

- (void)onEditorMouseDown:(id)sender {
  // Since the dialog does not care about clicks that gave firstResponder
  // status, swallow those.
  if (!handlingFirstClick_)
    [inputDelegate_ onMouseDown: self];
}

- (NSRect)decorationFrame {
  return [[self cell] decorationFrameForFrame:[self frame]];
}

- (void)mouseDown:(NSEvent*)theEvent {
  // mouseDown: is only invoked for a click that actually gave firstResponder
  // status to the NSTextField, and clicks to the border area. Further clicks
  // into the content are are handled by the field editor instead.
  handlingFirstClick_ = shouldFilterClick_;
  [super mouseDown:theEvent];
  handlingFirstClick_ = NO;
  shouldFilterClick_ = NO;
}

- (void)controlTextDidEndEditing:(NSNotification*)notification {
  if (inputDelegate_)
    [inputDelegate_ didEndEditing:self];
}

- (void)controlTextDidChange:(NSNotification*)aNotification {
  if (inputDelegate_)
    [inputDelegate_ didChange:self];
}

- (BOOL)control:(NSControl*)control
               textView:(NSTextView*)textView
    doCommandBySelector:(SEL)commandSelector {
  // No special command handling for single line inputs.
  if (![self isMultiline])
    return NO;

  if (commandSelector == @selector(insertNewline:) ||
      commandSelector == @selector(insertNewlineIgnoringFieldEditor:)) {
    // Only allow newline at end of text.
    NSRange selectionRange = [textView selectedRange];
    if (selectionRange.location < [[textView string] length])
      return YES;

    // Only allow newline on a non-empty line.
    NSRange lineRange = [[textView string] lineRangeForRange:selectionRange];
    if (lineRange.length == 0)
      return YES;

    // Insert a line-break character without ending editing.
    [textView insertNewlineIgnoringFieldEditor:self];

    [self resizeToText];
    return YES;
  }
  return NO;
}

- (void)resizeToText {
  NSSize size = [[self cell] cellSize];
  size.width = NSWidth([self frame]);
  [self setFrameSize:size];

  id delegate = [[self window] windowController];
  if ([delegate respondsToSelector:@selector(requestRelayout)])
    [delegate performSelector:@selector(requestRelayout)];
}

- (NSString*)fieldValue {
  return [[self cell] fieldValue];
}

- (void)setFieldValue:(NSString*)fieldValue {
  [[self cell] setFieldValue:fieldValue];
  if ([self isMultiline])
    [self resizeToText];
}

- (NSString*)defaultValue {
  return [[self cell] defaultValue];
}

- (void)setDefaultValue:(NSString*)defaultValue {
  [[self cell] setDefaultValue:defaultValue];
}

- (BOOL)isDefault {
  return [[[self cell] fieldValue] isEqualToString:[[self cell] defaultValue]];
}

- (NSString*)validityMessage {
  return validityMessage_;
}

- (void)setValidityMessage:(NSString*)validityMessage {
  validityMessage_.reset([validityMessage copy]);
  [[self cell] setInvalid:[self invalid]];
}

- (BOOL)invalid {
  return [validityMessage_ length] != 0;
}

@end


@implementation AutofillTextFieldCell

@synthesize invalid = invalid_;
@synthesize defaultValue = defaultValue_;
@synthesize decorationSize = decorationSize_;

- (void)setInvalid:(BOOL)invalid {
  invalid_ = invalid;
  [[self controlView] setNeedsDisplay:YES];
}

- (NSImage*) icon{
  return icon_;
}

- (void)setIcon:(NSImage*)icon {
  icon_.reset([icon retain]);
  [self setDecorationSize:[icon_ size]];
  [[self controlView] setNeedsDisplay:YES];
}

- (NSString*)fieldValue {
  return [self stringValue];
}

- (void)setFieldValue:(NSString*)fieldValue {
  [self setStringValue:fieldValue];
}

- (NSRect)textFrameForFrame:(NSRect)frame {
  // Ensure text height is original cell height, and the text frame is centered
  // vertically in the cell frame.
  NSSize originalSize = [super cellSize];
  if (originalSize.height < NSHeight(frame)) {
    CGFloat delta = NSHeight(frame) - originalSize.height;
    frame.origin.y += std::floor(delta / 2.0);
    frame.size.height -= delta;
  }
  DCHECK_EQ(originalSize.height, NSHeight(frame));

  if (decorationSize_.width > 0) {
    NSRect textFrame, decorationFrame;
    NSDivideRect(frame, &decorationFrame, &textFrame,
                 kGap + decorationSize_.width, NSMaxXEdge);
    return textFrame;
  }
  return frame;
}

- (NSRect)decorationFrameForFrame:(NSRect)frame {
  NSRect decorationFrame;
  if (decorationSize_.width > 0) {
    NSRect textFrame;
    NSDivideRect(frame, &decorationFrame, &textFrame,
                 kGap + decorationSize_.width, NSMaxXEdge);
    decorationFrame.size = decorationSize_;
    decorationFrame.origin.y +=
        roundf((NSHeight(frame) - NSHeight(decorationFrame)) / 2.0);
  }
  return decorationFrame;
}

- (NSSize)cellSize {
  NSSize cellSize = [super cellSize];

  if (decorationSize_.width > 0) {
    cellSize.width += kGap + decorationSize_.width;
    cellSize.height = std::max(cellSize.height, decorationSize_.height);
  }
  cellSize.height = std::max(cellSize.height, kMinimumHeight);
  return cellSize;
}

- (void)editWithFrame:(NSRect)cellFrame
               inView:(NSView *)controlView
               editor:(NSText *)editor
             delegate:(id)delegate
                event:(NSEvent *)event {
  [super editWithFrame:[self textFrameForFrame:cellFrame]
                inView:controlView
                editor:editor
              delegate:delegate
                 event:event];
}

- (void)selectWithFrame:(NSRect)cellFrame
                 inView:(NSView *)controlView
                 editor:(NSText *)editor
               delegate:(id)delegate
                  start:(NSInteger)start
                 length:(NSInteger)length {
  [super selectWithFrame:[self textFrameForFrame:cellFrame]
                  inView:controlView
                  editor:editor
                delegate:delegate
                   start:start
                  length:length];
}

- (void)drawInteriorWithFrame:(NSRect)cellFrame inView:(NSView*)controlView {
  NSRect textFrame = [self textFrameForFrame:cellFrame];
  [super drawInteriorWithFrame:textFrame inView:controlView];

  if (icon_) {
    NSRect iconFrame = [self decorationFrameForFrame:cellFrame];
    [icon_ drawInRect:iconFrame
             fromRect:NSZeroRect
            operation:NSCompositeSourceOver
             fraction:1.0
       respectFlipped:YES
                hints:nil];
  }
}

- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView*)controlView {
  // If the control is disabled and doesn't have text, don't draw it.
  if (![self isEnabled]  && ([[self stringValue] length] == 0))
    return;

  [super drawWithFrame:cellFrame inView:controlView];

  if (invalid_) {
    gfx::ScopedNSGraphicsContextSaveGState state;

    // Render red border for invalid fields.
    [[NSColor colorWithDeviceRed:1.0 green:0.0 blue:0.0 alpha:1.0] setStroke];
    [[NSBezierPath bezierPathWithRect:NSInsetRect(cellFrame, 0.5, 0.5)] stroke];
  }
}

@end