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 #include "chrome/browser/cocoa/tab_contents_controller.h" | 5 #include "chrome/browser/cocoa/tab_contents_controller.h" |
6 | 6 |
7 #import "base/sys_string_conversions.h" | 7 #import "base/sys_string_conversions.h" |
8 #import "chrome/app/chrome_dll_resource.h" | 8 #import "chrome/app/chrome_dll_resource.h" |
9 #import "chrome/browser/command_updater.h" | 9 #import "chrome/browser/command_updater.h" |
10 #import "chrome/browser/location_bar.h" | 10 #import "chrome/browser/location_bar.h" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 } | 195 } |
196 } | 196 } |
197 | 197 |
198 - (void)setStarredState:(BOOL)isStarred { | 198 - (void)setStarredState:(BOOL)isStarred { |
199 NSString* starImageName = kStarImageName; | 199 NSString* starImageName = kStarImageName; |
200 if (isStarred) | 200 if (isStarred) |
201 starImageName = kStarredImageName; | 201 starImageName = kStarredImageName; |
202 [starButton_ setImage:[NSImage imageNamed:starImageName]]; | 202 [starButton_ setImage:[NSImage imageNamed:starImageName]]; |
203 } | 203 } |
204 | 204 |
| 205 // Return the rect, in WebKit coordinates (flipped), of the window's grow box |
| 206 // in the coordinate system of the content area of this tab. |
| 207 // |windowGrowBox| needs to be in the window's coordinate system. |
| 208 - (NSRect)growBoxFromWindowGrowBox:(NSRect)windowGrowBox { |
| 209 NSRect localGrowBox = NSMakeRect(0, 0, 0, 0); |
| 210 NSView* contentView = contents_->GetNativeView(); |
| 211 if (contentView) { |
| 212 localGrowBox = windowGrowBox; |
| 213 // The scrollbar assumes that the resizer goes all the way down to the |
| 214 // bottom corner, so we ignore any y offset to the rect itself and use the |
| 215 // entire bottom corner. |
| 216 localGrowBox.origin.y = 0; |
| 217 // Convert to view coordinates from window coordinates. |
| 218 localGrowBox = [contentView convertRect:localGrowBox fromView:nil]; |
| 219 // Flip the rect in view coordinates |
| 220 localGrowBox.origin.y = |
| 221 [contentView frame].size.height - localGrowBox.origin.y - |
| 222 localGrowBox.size.height; |
| 223 } |
| 224 return localGrowBox; |
| 225 } |
| 226 |
205 @end | 227 @end |
206 | 228 |
207 //-------------------------------------------------------------------------- | 229 //-------------------------------------------------------------------------- |
208 | 230 |
209 TabContentsCommandObserver::TabContentsCommandObserver( | 231 TabContentsCommandObserver::TabContentsCommandObserver( |
210 TabContentsController* controller, CommandUpdater* commands) | 232 TabContentsController* controller, CommandUpdater* commands) |
211 : controller_(controller), commands_(commands) { | 233 : controller_(controller), commands_(commands) { |
212 DCHECK(controller_ && commands); | 234 DCHECK(controller_ && commands); |
213 // Register for notifications about state changes for the toolbar buttons | 235 // Register for notifications about state changes for the toolbar buttons |
214 commands_->AddCommandObserver(IDC_BACK, this); | 236 commands_->AddCommandObserver(IDC_BACK, this); |
(...skipping 22 matching lines...) Expand all Loading... |
237 | 259 |
238 std::wstring LocationBarBridge::GetInputString() const { | 260 std::wstring LocationBarBridge::GetInputString() const { |
239 return base::SysNSStringToWide([controller_ locationBarString]); | 261 return base::SysNSStringToWide([controller_ locationBarString]); |
240 } | 262 } |
241 | 263 |
242 void LocationBarBridge::FocusLocation() { | 264 void LocationBarBridge::FocusLocation() { |
243 [controller_ focusLocationBar]; | 265 [controller_ focusLocationBar]; |
244 } | 266 } |
245 | 267 |
246 | 268 |
OLD | NEW |