OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" | 5 #include "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
6 | 6 |
7 #include <Carbon/Carbon.h> // kVK_Return | 7 #include <Carbon/Carbon.h> // kVK_Return |
8 | 8 |
9 #include "app/mac/nsimage_cache.h" | 9 #include "app/mac/nsimage_cache.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/sys_string_conversions.h" | 11 #include "base/sys_string_conversions.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/autocomplete/autocomplete_edit.h" | 13 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
14 #include "chrome/browser/autocomplete/autocomplete_match.h" | 14 #include "chrome/browser/autocomplete/autocomplete_match.h" |
15 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" | 15 #include "chrome/browser/autocomplete/autocomplete_popup_model.h" |
16 #include "chrome/browser/autocomplete/autocomplete_popup_view_mac.h" | 16 #include "chrome/browser/autocomplete/autocomplete_popup_view_mac.h" |
17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
18 #include "chrome/browser/tab_contents/tab_contents.h" | 18 #include "chrome/browser/tab_contents/tab_contents.h" |
19 #include "chrome/browser/ui/cocoa/event_utils.h" | 19 #include "chrome/browser/ui/cocoa/event_utils.h" |
20 #include "chrome/browser/ui/toolbar/toolbar_model.h" | 20 #include "chrome/browser/ui/toolbar/toolbar_model.h" |
21 #include "gfx/rect.h" | |
22 #include "grit/generated_resources.h" | 21 #include "grit/generated_resources.h" |
23 #include "grit/theme_resources.h" | 22 #include "grit/theme_resources.h" |
24 #include "net/base/escape.h" | 23 #include "net/base/escape.h" |
25 #import "third_party/mozilla/NSPasteboard+Utils.h" | 24 #import "third_party/mozilla/NSPasteboard+Utils.h" |
26 #include "ui/base/clipboard/clipboard.h" | 25 #include "ui/base/clipboard/clipboard.h" |
27 #include "ui/base/resource/resource_bundle.h" | 26 #include "ui/base/resource/resource_bundle.h" |
| 27 #include "ui/gfx/rect.h" |
28 | 28 |
29 // Focus-handling between |field_| and |model_| is a bit subtle. | 29 // Focus-handling between |field_| and |model_| is a bit subtle. |
30 // Other platforms detect change of focus, which is inconvenient | 30 // Other platforms detect change of focus, which is inconvenient |
31 // without subclassing NSTextField (even with a subclass, the use of a | 31 // without subclassing NSTextField (even with a subclass, the use of a |
32 // field editor may complicate things). | 32 // field editor may complicate things). |
33 // | 33 // |
34 // |model_| doesn't actually do anything when it gains focus, it just | 34 // |model_| doesn't actually do anything when it gains focus, it just |
35 // initializes. Visible activity happens only after the user edits. | 35 // initializes. Visible activity happens only after the user edits. |
36 // NSTextField delegate receives messages around starting and ending | 36 // NSTextField delegate receives messages around starting and ending |
37 // edits, so that suffices to catch focus changes. Since all calls | 37 // edits, so that suffices to catch focus changes. Since all calls |
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 | 1100 |
1101 void AutocompleteEditViewMac::PlaceCaretAt(NSUInteger pos) { | 1101 void AutocompleteEditViewMac::PlaceCaretAt(NSUInteger pos) { |
1102 DCHECK(pos <= GetTextLength()); | 1102 DCHECK(pos <= GetTextLength()); |
1103 SetSelectedRange(NSMakeRange(pos, pos)); | 1103 SetSelectedRange(NSMakeRange(pos, pos)); |
1104 } | 1104 } |
1105 | 1105 |
1106 bool AutocompleteEditViewMac::IsCaretAtEnd() const { | 1106 bool AutocompleteEditViewMac::IsCaretAtEnd() const { |
1107 const NSRange selection = GetSelectedRange(); | 1107 const NSRange selection = GetSelectedRange(); |
1108 return selection.length == 0 && selection.location == GetTextLength(); | 1108 return selection.length == 0 && selection.location == GetTextLength(); |
1109 } | 1109 } |
OLD | NEW |