Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: chrome/browser/cocoa/tab_contents_controller.mm

Issue 63047: Revert "Initial implemention of Mac Omnibox." (Closed)
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/tab_contents_controller.h" 5 #include "chrome/browser/cocoa/tab_contents_controller.h"
6 6
7 #include "base/sys_string_conversions.h" 7 #import "base/sys_string_conversions.h"
8 #include "chrome/app/chrome_dll_resource.h" 8 #import "chrome/app/chrome_dll_resource.h"
9 #include "chrome/browser/bookmarks/bookmark_model.h" 9 #import "chrome/browser/bookmarks/bookmark_model.h"
10 #import "chrome/browser/cocoa/location_bar_view_mac.h" 10 #import "chrome/browser/command_updater.h"
11 #include "chrome/browser/command_updater.h" 11 #import "chrome/browser/location_bar.h"
12 #include "chrome/browser/tab_contents/tab_contents.h" 12 #import "chrome/browser/tab_contents/tab_contents.h"
13 #include "chrome/browser/toolbar_model.h" 13 #import "chrome/browser/toolbar_model.h"
14 #import "chrome/browser/net/url_fixer_upper.h"
15
16 // For now, tab_contents lives here. TODO(port):fix
17 #include "chrome/common/temp_scaffolding_stubs.h"
14 18
15 // Names of images in the bundle for the star icon (normal and 'starred'). 19 // Names of images in the bundle for the star icon (normal and 'starred').
16 static NSString* const kStarImageName = @"star"; 20 static NSString* const kStarImageName = @"star";
17 static NSString* const kStarredImageName = @"starred"; 21 static NSString* const kStarredImageName = @"starred";
18 22
19 @interface TabContentsController(CommandUpdates) 23 @interface TabContentsController(CommandUpdates)
20 - (void)enabledStateChangedForCommand:(NSInteger)command enabled:(BOOL)enabled; 24 - (void)enabledStateChangedForCommand:(NSInteger)command enabled:(BOOL)enabled;
21 @end 25 @end
22 26
27 @interface TabContentsController(LocationBar)
28 - (NSString*)locationBarString;
29 - (void)focusLocationBar;
30 @end
31
23 @interface TabContentsController(Private) 32 @interface TabContentsController(Private)
24 - (void)updateToolbarCommandStatus; 33 - (void)updateToolbarCommandStatus;
25 - (void)applyContentsBoxOffset:(BOOL)apply; 34 - (void)applyContentsBoxOffset:(BOOL)apply;
26 @end 35 @end
27 36
28 // A C++ bridge class that handles listening for updates to commands and 37 // A C++ bridge class that handles listening for updates to commands and
29 // passing them back to the controller. 38 // passing them back to the controller.
30 class TabContentsCommandObserver : public CommandUpdater::CommandObserver { 39 class TabContentsCommandObserver : public CommandUpdater::CommandObserver {
31 public: 40 public:
32 TabContentsCommandObserver(TabContentsController* controller, 41 TabContentsCommandObserver(TabContentsController* controller,
33 CommandUpdater* commands); 42 CommandUpdater* commands);
34 ~TabContentsCommandObserver(); 43 ~TabContentsCommandObserver();
35 44
36 // Overridden from CommandUpdater::CommandObserver 45 // Overridden from CommandUpdater::CommandObserver
37 void EnabledStateChangedForCommand(int command, bool enabled); 46 void EnabledStateChangedForCommand(int command, bool enabled);
38 47
39 private: 48 private:
40 TabContentsController* controller_; // weak, owns me 49 TabContentsController* controller_; // weak, owns me
41 CommandUpdater* commands_; // weak 50 CommandUpdater* commands_; // weak
42 }; 51 };
43 52
53 // A C++ bridge class that handles responding to requests from the
54 // cross-platform code for information about the location bar. Just passes
55 // everything back to the controller.
56 class LocationBarBridge : public LocationBar {
57 public:
58 LocationBarBridge(TabContentsController* controller);
59
60 // Overridden from LocationBar
61 virtual void ShowFirstRunBubble() { NOTIMPLEMENTED(); }
62 virtual std::wstring GetInputString() const;
63 virtual WindowOpenDisposition GetWindowOpenDisposition() const
64 { NOTIMPLEMENTED(); return CURRENT_TAB; }
65 // TODO(rohitrao): Fix this to return different types once autocomplete and
66 // the onmibar are implemented. For now, any URL that comes from the
67 // LocationBar has to have been entered by the user, and thus is of type
68 // PageTransition::TYPED.
69 virtual PageTransition::Type GetPageTransition() const
70 { NOTIMPLEMENTED(); return PageTransition::TYPED; }
71 virtual void AcceptInput() { NOTIMPLEMENTED(); }
72 virtual void AcceptInputWithDisposition(WindowOpenDisposition disposition)
73 { NOTIMPLEMENTED(); }
74 virtual void FocusLocation();
75 virtual void FocusSearch() { NOTIMPLEMENTED(); }
76 virtual void UpdateFeedIcon() { /* http://crbug.com/8832 */ }
77 virtual void SaveStateToContents(TabContents* contents) { NOTIMPLEMENTED(); }
78
79 private:
80 TabContentsController* controller_; // weak, owns me
81 };
82
44 @implementation TabContentsController 83 @implementation TabContentsController
45 84
46 - (id)initWithNibName:(NSString*)name 85 - (id)initWithNibName:(NSString*)name
47 bundle:(NSBundle*)bundle 86 bundle:(NSBundle*)bundle
48 contents:(TabContents*)contents 87 contents:(TabContents*)contents
49 commands:(CommandUpdater*)commands 88 commands:(CommandUpdater*)commands
50 toolbarModel:(ToolbarModel*)toolbarModel 89 toolbarModel:(ToolbarModel*)toolbarModel
51 bookmarkModel:(BookmarkModel*)bookmarkModel { 90 bookmarkModel:(BookmarkModel*)bookmarkModel {
52 if ((self = [super initWithNibName:name bundle:bundle])) { 91 if ((self = [super initWithNibName:name bundle:bundle])) {
53 commands_ = commands; 92 commands_ = commands;
54 if (commands_) 93 if (commands_)
55 observer_ = new TabContentsCommandObserver(self, commands); 94 observer_ = new TabContentsCommandObserver(self, commands);
56 locationBarView_ = new LocationBarViewMac(commands, toolbarModel); 95 locationBarBridge_ = new LocationBarBridge(self);
57 contents_ = contents; 96 contents_ = contents;
58 toolbarModel_ = toolbarModel; 97 toolbarModel_ = toolbarModel;
59 bookmarkModel_ = bookmarkModel; 98 bookmarkModel_ = bookmarkModel;
60 } 99 }
61 return self; 100 return self;
62 } 101 }
63 102
64 - (void)dealloc { 103 - (void)dealloc {
65 // make sure our contents have been removed from the window 104 // make sure our contents have been removed from the window
66 [[self view] removeFromSuperview]; 105 [[self view] removeFromSuperview];
67 delete observer_; 106 delete observer_;
68 delete locationBarView_; 107 delete locationBarBridge_;
69 [super dealloc]; 108 [super dealloc];
70 } 109 }
71 110
72 - (void)awakeFromNib { 111 - (void)awakeFromNib {
73 [contentsBox_ setContentView:contents_->GetNativeView()]; 112 [contentsBox_ setContentView:contents_->GetNativeView()];
74 [self applyContentsBoxOffset:YES]; 113 [self applyContentsBoxOffset:YES];
75 114
76 // Provide a starting point since we won't get notifications if the state 115 // Provide a starting point since we won't get notifications if the state
77 // doesn't change between tabs. 116 // doesn't change between tabs.
78 [self updateToolbarCommandStatus]; 117 [self updateToolbarCommandStatus];
79 118
80 // TODO(shess): This code doesn't have locationBar_ when
81 // locationBarView_ is constructed, so we need the SetField() helper to
82 // pass in the object here. Consider refactoring to obsolete that
83 // helper, perhaps by not constructing locationBarView_ until we have
84 // locationBar_.
85 locationBarView_->Init();
86 locationBarView_->SetField(locationBar_);
87 [locationBar_ setStringValue:@"http://dev.chromium.org"]; 119 [locationBar_ setStringValue:@"http://dev.chromium.org"];
88 } 120 }
89 121
90 - (LocationBar*)locationBar { 122 - (LocationBar*)locationBar {
91 return locationBarView_; 123 return locationBarBridge_;
92 } 124 }
93 125
94 // Returns YES if the tab represented by this controller is the front-most. 126 // Returns YES if the tab represented by this controller is the front-most.
95 - (BOOL)isCurrentTab { 127 - (BOOL)isCurrentTab {
96 // We're the current tab if we're in the view hierarchy, otherwise some other 128 // We're the current tab if we're in the view hierarchy, otherwise some other
97 // tab is. 129 // tab is.
98 return [[self view] superview] ? YES : NO; 130 return [[self view] superview] ? YES : NO;
99 } 131 }
100 132
101 // Called when the state for a command changes to |enabled|. Update the 133 // Called when the state for a command changes to |enabled|. Update the
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 181
150 - (void)willBecomeSelectedTab { 182 - (void)willBecomeSelectedTab {
151 [self updateToolbarCommandStatus]; 183 [self updateToolbarCommandStatus];
152 } 184 }
153 185
154 - (void)tabDidChange:(TabContents*)updatedContents { 186 - (void)tabDidChange:(TabContents*)updatedContents {
155 contents_ = updatedContents; 187 contents_ = updatedContents;
156 [contentsBox_ setContentView:contents_->GetNativeView()]; 188 [contentsBox_ setContentView:contents_->GetNativeView()];
157 } 189 }
158 190
159 - (void)defocusLocationBar { 191 - (NSString*)locationBarString {
160 locationBarView_->SaveStateToContents(NULL); 192 return [locationBar_ stringValue];
161 } 193 }
162 194
163 - (void)focusLocationBar { 195 - (void)focusLocationBar {
164 locationBarView_->FocusLocation(); 196 [[locationBar_ window] makeFirstResponder:locationBar_];
165 } 197 }
166 198
167 - (void)updateToolbarWithContents:(TabContents*)tab { 199 - (void)updateToolbarWithContents:(TabContents*)tab {
168 // TODO(pinkerton): there's a lot of ui code in autocomplete_edit.cc 200 // TODO(pinkerton): there's a lot of ui code in autocomplete_edit.cc
169 // that we'll want to duplicate. For now, just handle setting the text. 201 // that we'll want to duplicate. For now, just handle setting the text.
170 202
171 // TODO(pinkerton): update the security lock icon and background color 203 // TODO(pinkerton): update the security lock icon and background color
172 204
173 // TODO(shess): Determine whether this should happen via
174 // locationBarView_, instead, in which case this class can
175 // potentially lose the locationBar_ reference.
176 NSString* urlString = base::SysWideToNSString(toolbarModel_->GetText()); 205 NSString* urlString = base::SysWideToNSString(toolbarModel_->GetText());
177 [locationBar_ setStringValue:urlString]; 206 [locationBar_ setStringValue:urlString];
178 } 207 }
179 208
180 - (void)setStarredState:(BOOL)isStarred { 209 - (void)setStarredState:(BOOL)isStarred {
181 NSString* starImageName = kStarImageName; 210 NSString* starImageName = kStarImageName;
182 if (isStarred) 211 if (isStarred)
183 starImageName = kStarredImageName; 212 starImageName = kStarredImageName;
184 [starButton_ setImage:[NSImage imageNamed:starImageName]]; 213 [starButton_ setImage:[NSImage imageNamed:starImageName]];
185 } 214 }
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 TabContentsCommandObserver::~TabContentsCommandObserver() { 305 TabContentsCommandObserver::~TabContentsCommandObserver() {
277 // Unregister the notifications 306 // Unregister the notifications
278 commands_->RemoveCommandObserver(this); 307 commands_->RemoveCommandObserver(this);
279 } 308 }
280 309
281 void TabContentsCommandObserver::EnabledStateChangedForCommand(int command, 310 void TabContentsCommandObserver::EnabledStateChangedForCommand(int command,
282 bool enabled) { 311 bool enabled) {
283 [controller_ enabledStateChangedForCommand:command 312 [controller_ enabledStateChangedForCommand:command
284 enabled:enabled ? YES : NO]; 313 enabled:enabled ? YES : NO];
285 } 314 }
315
316 //--------------------------------------------------------------------------
317
318 LocationBarBridge::LocationBarBridge(TabContentsController* controller)
319 : controller_(controller) {
320 }
321
322 std::wstring LocationBarBridge::GetInputString() const {
323 // TODO(shess): This code is temporary until the omnibox code takes
324 // over.
325 std::wstring url = base::SysNSStringToWide([controller_ locationBarString]);
326
327 // Try to flesh out the input to make a real URL.
328 return URLFixerUpper::FixupURL(url, std::wstring());
329 }
330
331 void LocationBarBridge::FocusLocation() {
332 [controller_ focusLocationBar];
333 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/tab_contents_controller.h ('k') | chrome/browser/cocoa/tab_strip_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698