OLD | NEW |
1 // Copyright (c) 2009 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 #import "chrome/browser/cocoa/edit_search_engine_cocoa_controller.h" | 5 #import "chrome/browser/cocoa/edit_search_engine_cocoa_controller.h" |
6 | 6 |
7 #include "app/l10n_util_mac.h" | 7 #include "app/l10n_util_mac.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #import "base/mac_util.h" | 9 #import "base/mac_util.h" |
10 #include "base/sys_string_conversions.h" | 10 #include "base/sys_string_conversions.h" |
11 #include "chrome/browser/search_engines/template_url_model.h" | 11 #include "chrome/browser/search_engines/template_url_model.h" |
12 #include "grit/app_resources.h" | 12 #include "grit/app_resources.h" |
13 #include "grit/generated_resources.h" | 13 #include "grit/generated_resources.h" |
| 14 #include "grit/theme_resources.h" |
14 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" | 15 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" |
15 | 16 |
16 namespace { | 17 namespace { |
17 | 18 |
18 void ShiftOriginY(NSView* view, CGFloat amount) { | 19 void ShiftOriginY(NSView* view, CGFloat amount) { |
19 NSPoint origin = [view frame].origin; | 20 NSPoint origin = [view frame].origin; |
20 origin.y += amount; | 21 origin.y += amount; |
21 [view setFrameOrigin:origin]; | 22 [view setFrameOrigin:origin]; |
22 } | 23 } |
23 | 24 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 toolTip:IDS_SEARCH_ENGINES_INVALID_URL_TT | 176 toolTip:IDS_SEARCH_ENGINES_INVALID_URL_TT |
176 forImageView:urlImage_ | 177 forImageView:urlImage_ |
177 textField:urlField_]; | 178 textField:urlField_]; |
178 | 179 |
179 BOOL isValid = (titleValid && keywordValid && urlValid); | 180 BOOL isValid = (titleValid && keywordValid && urlValid); |
180 [doneButton_ setEnabled:isValid]; | 181 [doneButton_ setEnabled:isValid]; |
181 return isValid; | 182 return isValid; |
182 } | 183 } |
183 | 184 |
184 @end | 185 @end |
OLD | NEW |