OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "base/mac_util.h" | 8 #include "base/mac_util.h" |
9 #include "base/sys_string_conversions.h" | 9 #include "base/sys_string_conversions.h" |
10 #include "grit/generated_resources.h" | 10 #include "grit/generated_resources.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 if (findText.length() > 0) { | 89 if (findText.length() > 0) { |
90 tab_contents->StartFinding(findText, true, false); | 90 tab_contents->StartFinding(findText, true, false); |
91 } else { | 91 } else { |
92 // The textbox is empty so we reset. | 92 // The textbox is empty so we reset. |
93 tab_contents->StopFinding(true); // true = clear selection on page. | 93 tab_contents->StopFinding(true); // true = clear selection on page. |
94 [self updateUIForFindResult:tab_contents->find_result() | 94 [self updateUIForFindResult:tab_contents->find_result() |
95 withText:string16()]; | 95 withText:string16()]; |
96 } | 96 } |
97 } | 97 } |
98 | 98 |
| 99 // NSControl delegate method |
| 100 - (BOOL)control:(NSControl*)control |
| 101 textView:(NSTextView*)textView |
| 102 doCommandBySelector:(SEL)command { |
| 103 if (command == @selector(insertNewline:)) { |
| 104 NSEvent* event = [NSApp currentEvent]; |
| 105 |
| 106 if ([event modifierFlags] & NSShiftKeyMask) |
| 107 [previousButton_ performClick:nil]; |
| 108 else { |
| 109 [nextButton_ performClick:nil]; |
| 110 } |
| 111 |
| 112 return YES; |
| 113 } |
| 114 |
| 115 return NO; |
| 116 } |
| 117 |
99 // Methods from FindBar | 118 // Methods from FindBar |
100 - (void)showFindBar { | 119 - (void)showFindBar { |
101 [[self view] setHidden:NO]; | 120 [[self view] setHidden:NO]; |
102 } | 121 } |
103 | 122 |
104 - (void)hideFindBar { | 123 - (void)hideFindBar { |
105 [[self view] setHidden:YES]; | 124 [[self view] setHidden:YES]; |
106 } | 125 } |
107 | 126 |
108 - (void)setFocusAndSelection { | 127 - (void)setFocusAndSelection { |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 // area. | 168 // area. |
150 [resultsLabel_ setStringValue:@""]; | 169 [resultsLabel_ setStringValue:@""]; |
151 } | 170 } |
152 } | 171 } |
153 | 172 |
154 - (BOOL)isFindBarVisible { | 173 - (BOOL)isFindBarVisible { |
155 return [[self view] isHidden] ? NO : YES; | 174 return [[self view] isHidden] ? NO : YES; |
156 } | 175 } |
157 | 176 |
158 @end | 177 @end |
OLD | NEW |