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 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
| 10 #include "base/scoped_ptr.h" |
| 11 #include "chrome/browser/autocomplete/autocomplete_edit.h" |
10 #include "chrome/browser/location_bar.h" | 12 #include "chrome/browser/location_bar.h" |
11 | 13 |
12 // A C++ bridge class that handles responding to requests from the | 14 class AutocompleteEditViewMac; |
13 // cross-platform code for information about the location bar. | 15 class CommandUpdater; |
| 16 class ToolbarModel; |
14 | 17 |
15 class LocationBarViewMac : public LocationBar { | 18 // A C++ bridge class that represents the location bar UI element to |
| 19 // the portable code. Wires up an AutocompleteEditViewMac instance to |
| 20 // the location bar text field, which handles most of the work. |
| 21 |
| 22 class LocationBarViewMac : public AutocompleteEditController, |
| 23 public LocationBar { |
16 public: | 24 public: |
17 LocationBarViewMac(NSTextField* field); | 25 LocationBarViewMac(NSTextField* field, |
| 26 CommandUpdater* command_updater, |
| 27 ToolbarModel* toolbar_model); |
18 virtual ~LocationBarViewMac(); | 28 virtual ~LocationBarViewMac(); |
19 | 29 |
20 // TODO(shess): This is a placeholder for the Omnibox code. The | 30 // TODO(shess): This is a placeholder for the Omnibox code. The |
21 // problem it will paper over is that Profile availability does not | 31 // problem it will paper over is that Profile availability does not |
22 // match object creation in TabContentsController. Circle back and | 32 // match object creation in TabContentsController. Circle back and |
23 // resolve this after the Profile-handling and tab logic changes are | 33 // resolve this after the Profile-handling and tab logic changes are |
24 // complete. | 34 // complete. |
25 void Init(); | 35 void Init(); |
26 | 36 |
27 // Overridden from LocationBar | 37 // Overridden from LocationBar |
28 virtual void ShowFirstRunBubble() { NOTIMPLEMENTED(); } | 38 virtual void ShowFirstRunBubble() { NOTIMPLEMENTED(); } |
29 virtual std::wstring GetInputString() const; | 39 virtual std::wstring GetInputString() const; |
30 virtual WindowOpenDisposition GetWindowOpenDisposition() const | 40 virtual WindowOpenDisposition GetWindowOpenDisposition() const; |
31 { NOTIMPLEMENTED(); return CURRENT_TAB; } | 41 virtual PageTransition::Type GetPageTransition() const; |
32 // TODO(rohitrao): Fix this to return different types once autocomplete and | |
33 // the onmibar are implemented. For now, any URL that comes from the | |
34 // LocationBar has to have been entered by the user, and thus is of type | |
35 // PageTransition::TYPED. | |
36 virtual PageTransition::Type GetPageTransition() const | |
37 { NOTIMPLEMENTED(); return PageTransition::TYPED; } | |
38 virtual void AcceptInput() { NOTIMPLEMENTED(); } | 42 virtual void AcceptInput() { NOTIMPLEMENTED(); } |
39 virtual void AcceptInputWithDisposition(WindowOpenDisposition disposition) | 43 virtual void AcceptInputWithDisposition(WindowOpenDisposition disposition) |
40 { NOTIMPLEMENTED(); } | 44 { NOTIMPLEMENTED(); } |
41 virtual void FocusLocation(); | 45 virtual void FocusLocation(); |
42 virtual void FocusSearch() { NOTIMPLEMENTED(); } | 46 virtual void FocusSearch() { NOTIMPLEMENTED(); } |
43 virtual void UpdateFeedIcon() { /* http://crbug.com/8832 */ } | 47 virtual void UpdateFeedIcon() { /* http://crbug.com/8832 */ } |
44 virtual void SaveStateToContents(TabContents* contents) { NOTIMPLEMENTED(); } | 48 virtual void SaveStateToContents(TabContents* contents); |
| 49 |
| 50 virtual void OnAutocompleteAccept(const GURL& url, |
| 51 WindowOpenDisposition disposition, |
| 52 PageTransition::Type transition, |
| 53 const GURL& alternate_nav_url); |
| 54 virtual void OnChanged(); |
| 55 virtual void OnInputInProgress(bool in_progress); |
| 56 virtual SkBitmap GetFavIcon() const; |
| 57 virtual std::wstring GetTitle() const; |
45 | 58 |
46 private: | 59 private: |
| 60 scoped_ptr<AutocompleteEditViewMac> edit_view_; |
| 61 |
47 NSTextField* field_; // weak, owned by TabContentsController | 62 NSTextField* field_; // weak, owned by TabContentsController |
| 63 // TODO(shess): Determine ownership of these. We definitely |
| 64 // shouldn't. |
| 65 CommandUpdater* command_updater_; // weak |
| 66 ToolbarModel* toolbar_model_; // weak |
| 67 |
| 68 // When we get an OnAutocompleteAccept notification from the autocomplete |
| 69 // edit, we save the input string so we can give it back to the browser on |
| 70 // the LocationBar interface via GetInputString(). |
| 71 std::wstring location_input_; |
| 72 |
| 73 // The user's desired disposition for how their input should be opened |
| 74 WindowOpenDisposition disposition_; |
| 75 |
| 76 // The transition type to use for the navigation |
| 77 PageTransition::Type transition_; |
48 | 78 |
49 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); | 79 DISALLOW_COPY_AND_ASSIGN(LocationBarViewMac); |
50 }; | 80 }; |
51 | 81 |
52 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ | 82 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_VIEW_MAC_H_ |
OLD | NEW |