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/automation/automation_provider.h" | 5 #include "chrome/browser/automation/automation_provider.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 |
| 9 #include "app/l10n_util.h" |
| 10 #include "app/l10n_util_mac.h" |
8 #include "base/gfx/point.h" | 11 #include "base/gfx/point.h" |
9 #include "base/gfx/rect.h" | 12 #include "base/gfx/rect.h" |
| 13 #include "base/sys_string_conversions.h" |
| 14 #include "chrome/browser/cocoa/tab_window_controller.h" |
10 #include "chrome/test/automation/automation_messages.h" | 15 #include "chrome/test/automation/automation_messages.h" |
| 16 #include "grit/generated_resources.h" |
11 | 17 |
12 void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, | 18 void AutomationProvider::SetWindowBounds(int handle, const gfx::Rect& bounds, |
13 bool* success) { | 19 bool* success) { |
14 *success = false; | 20 *success = false; |
15 NSWindow* window = window_tracker_->GetResource(handle); | 21 NSWindow* window = window_tracker_->GetResource(handle); |
16 if (window) { | 22 if (window) { |
17 NSRect new_bounds = NSRectFromCGRect(bounds.ToCGRect()); | 23 NSRect new_bounds = NSRectFromCGRect(bounds.ToCGRect()); |
18 | 24 |
19 // This is likely incorrect for a multiple-monitor setup; OK because this | 25 // This is likely incorrect for a multiple-monitor setup; OK because this |
20 // is used only for testing purposes. | 26 // is used only for testing purposes. |
(...skipping 110 matching lines...) Loading... |
131 void AutomationProvider::TerminateSession(int handle, bool* success) { | 137 void AutomationProvider::TerminateSession(int handle, bool* success) { |
132 *success = false; | 138 *success = false; |
133 NOTIMPLEMENTED(); | 139 NOTIMPLEMENTED(); |
134 } | 140 } |
135 | 141 |
136 void AutomationProvider::GetWindowBounds(int handle, gfx::Rect* bounds, | 142 void AutomationProvider::GetWindowBounds(int handle, gfx::Rect* bounds, |
137 bool* result) { | 143 bool* result) { |
138 *result = false; | 144 *result = false; |
139 NOTIMPLEMENTED(); | 145 NOTIMPLEMENTED(); |
140 } | 146 } |
| 147 |
| 148 void AutomationProvider::GetWindowTitle(int handle, string16* text) { |
| 149 gfx::NativeWindow window = window_tracker_->GetResource(handle); |
| 150 NSString* title = nil; |
| 151 if ([[window delegate] isKindOfClass:[TabWindowController class]]) { |
| 152 TabWindowController* delegate = |
| 153 reinterpret_cast<TabWindowController*>([window delegate]); |
| 154 title = [delegate selectedTabTitle]; |
| 155 } else { |
| 156 title = [window title]; |
| 157 } |
| 158 // If we don't yet have a title, use "Untitled". |
| 159 if (![title length]) { |
| 160 text->assign(WideToUTF16(l10n_util::GetString( |
| 161 IDS_BROWSER_WINDOW_MAC_TAB_UNTITLED))); |
| 162 return; |
| 163 } |
| 164 |
| 165 text->assign(base::SysNSStringToUTF16(title)); |
| 166 } |
| 167 |
OLD | NEW |