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 "chrome/browser/cocoa/location_bar_view_mac.h" | 5 #import "chrome/browser/cocoa/location_bar_view_mac.h" |
6 | 6 |
7 #include "base/sys_string_conversions.h" | 7 #include "base/string_util.h" |
8 #include "chrome/browser/net/url_fixer_upper.h" | 8 #include "chrome/app/chrome_dll_resource.h" |
| 9 #include "chrome/browser/alternate_nav_url_fetcher.h" |
| 10 #import "chrome/browser/app_controller_mac.h" |
| 11 #import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
| 12 #include "chrome/browser/command_updater.h" |
| 13 #include "skia/include/SkBitmap.h" |
9 | 14 |
10 LocationBarViewMac::LocationBarViewMac(NSTextField* field) | 15 // TODO(shess): This code is mostly copied from the gtk |
11 : field_(field) { | 16 // implementation. Make sure it's all appropriate and flesh it out. |
12 // TODO(shess): Placeholder for omnibox changes. | 17 |
| 18 LocationBarViewMac::LocationBarViewMac(NSTextField* field, |
| 19 CommandUpdater* command_updater, |
| 20 ToolbarModel* toolbar_model) |
| 21 : field_(field), |
| 22 command_updater_(command_updater), |
| 23 toolbar_model_(toolbar_model), |
| 24 disposition_(CURRENT_TAB), |
| 25 transition_(PageTransition::TYPED) { |
13 } | 26 } |
14 | 27 |
15 LocationBarViewMac::~LocationBarViewMac() { | 28 LocationBarViewMac::~LocationBarViewMac() { |
16 // TODO(shess): Placeholder for omnibox changes. | 29 // TODO(shess): Placeholder for omnibox changes. |
17 } | 30 } |
18 | 31 |
19 void LocationBarViewMac::Init() { | 32 void LocationBarViewMac::Init() { |
20 // TODO(shess): Placeholder for omnibox changes. | 33 // TODO(shess): deanm indicates that it's likely we will eventually |
| 34 // get the profile somewhere between point of construction and |
| 35 // Init(), so mirroring how the gtk code sets this up. |
| 36 Profile* profile = [[NSApp delegate] defaultProfile]; |
| 37 edit_view_.reset(new AutocompleteEditViewMac(this, |
| 38 toolbar_model_, |
| 39 profile, |
| 40 command_updater_)); |
| 41 // TODO(shess): Include in constructor. |
| 42 edit_view_->SetField(field_); |
21 } | 43 } |
22 | 44 |
23 std::wstring LocationBarViewMac::GetInputString() const { | 45 std::wstring LocationBarViewMac::GetInputString() const { |
24 // TODO(shess): This code is temporary until the omnibox code takes | 46 return location_input_; |
25 // over. | 47 } |
26 std::wstring url = base::SysNSStringToWide([field_ stringValue]); | |
27 | 48 |
28 // Try to flesh out the input to make a real URL. | 49 WindowOpenDisposition LocationBarViewMac::GetWindowOpenDisposition() const { |
29 return URLFixerUpper::FixupURL(url, std::wstring()); | 50 return disposition_; |
| 51 } |
| 52 |
| 53 // TODO(shess): Verify that this TODO is TODONE. |
| 54 // TODO(rohitrao): Fix this to return different types once autocomplete and |
| 55 // the onmibar are implemented. For now, any URL that comes from the |
| 56 // LocationBar has to have been entered by the user, and thus is of type |
| 57 // PageTransition::TYPED. |
| 58 PageTransition::Type LocationBarViewMac::GetPageTransition() const { |
| 59 return transition_; |
30 } | 60 } |
31 | 61 |
32 void LocationBarViewMac::FocusLocation() { | 62 void LocationBarViewMac::FocusLocation() { |
33 [[field_ window] makeFirstResponder:field_]; | 63 edit_view_->FocusLocation(); |
34 } | 64 } |
| 65 |
| 66 void LocationBarViewMac::SaveStateToContents(TabContents* contents) { |
| 67 // TODO(shess): Why SaveStateToContents vs SaveStateToTab? |
| 68 edit_view_->SaveStateToTab(contents); |
| 69 } |
| 70 |
| 71 void LocationBarViewMac::OnAutocompleteAccept(const GURL& url, |
| 72 WindowOpenDisposition disposition, |
| 73 PageTransition::Type transition, |
| 74 const GURL& alternate_nav_url) { |
| 75 if (!url.is_valid()) |
| 76 return; |
| 77 |
| 78 location_input_ = UTF8ToWide(url.spec()); |
| 79 disposition_ = disposition; |
| 80 transition_ = transition; |
| 81 |
| 82 if (!command_updater_) |
| 83 return; |
| 84 |
| 85 if (!alternate_nav_url.is_valid()) { |
| 86 command_updater_->ExecuteCommand(IDC_OPEN_CURRENT_URL); |
| 87 return; |
| 88 } |
| 89 |
| 90 scoped_ptr<AlternateNavURLFetcher> fetcher( |
| 91 new AlternateNavURLFetcher(alternate_nav_url)); |
| 92 // The AlternateNavURLFetcher will listen for the pending navigation |
| 93 // notification that will be issued as a result of the "open URL." It |
| 94 // will automatically install itself into that navigation controller. |
| 95 command_updater_->ExecuteCommand(IDC_OPEN_CURRENT_URL); |
| 96 if (fetcher->state() == AlternateNavURLFetcher::NOT_STARTED) { |
| 97 // I'm not sure this should be reachable, but I'm not also sure enough |
| 98 // that it shouldn't to stick in a NOTREACHED(). In any case, this is |
| 99 // harmless; we can simply let the fetcher get deleted here and it will |
| 100 // clean itself up properly. |
| 101 } else { |
| 102 fetcher.release(); // The navigation controller will delete the fetcher. |
| 103 } |
| 104 } |
| 105 |
| 106 void LocationBarViewMac::OnChanged() { |
| 107 NOTIMPLEMENTED(); |
| 108 } |
| 109 |
| 110 void LocationBarViewMac::OnInputInProgress(bool in_progress) { |
| 111 NOTIMPLEMENTED(); |
| 112 } |
| 113 |
| 114 SkBitmap LocationBarViewMac::GetFavIcon() const { |
| 115 NOTIMPLEMENTED(); |
| 116 return SkBitmap(); |
| 117 } |
| 118 |
| 119 std::wstring LocationBarViewMac::GetTitle() const { |
| 120 NOTIMPLEMENTED(); |
| 121 return std::wstring(); |
| 122 } |
OLD | NEW |