blob: 299a17b2ec88082a5b5dcda3a0e19cbfdddeba14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/cocoa/find_bar_bridge.h"
#include "base/sys_string_conversions.h"
#import "chrome/browser/cocoa/find_bar_cocoa_controller.h"
// static
bool FindBarBridge::disable_animations_during_testing_ = false;
FindBarBridge::FindBarBridge()
: find_bar_controller_(NULL) {
cocoa_controller_ = [[FindBarCocoaController alloc] init];
[cocoa_controller_ setFindBarBridge:this];
}
FindBarBridge::~FindBarBridge() {
[cocoa_controller_ release];
}
void FindBarBridge::Show(bool animate) {
bool really_animate = animate && !disable_animations_during_testing_;
[cocoa_controller_ showFindBar:(really_animate ? YES : NO)];
}
void FindBarBridge::Hide(bool animate) {
bool really_animate = animate && !disable_animations_during_testing_;
[cocoa_controller_ hideFindBar:(really_animate ? YES : NO)];
}
void FindBarBridge::SetFocusAndSelection() {
[cocoa_controller_ setFocusAndSelection];
}
void FindBarBridge::ClearResults(const FindNotificationDetails& results) {
[cocoa_controller_ clearResults:results];
}
void FindBarBridge::SetFindText(const string16& find_text) {
[cocoa_controller_ setFindText:base::SysUTF16ToNSString(find_text)];
}
void FindBarBridge::UpdateUIForFindResult(const FindNotificationDetails& result,
const string16& find_text) {
[cocoa_controller_ updateUIForFindResult:result withText:find_text];
}
void FindBarBridge::AudibleAlert() {
// Beep beep, beep beep, Yeah!
NSBeep();
}
bool FindBarBridge::IsFindBarVisible() {
return [cocoa_controller_ isFindBarVisible] ? true : false;
}
void FindBarBridge::MoveWindowIfNecessary(const gfx::Rect& selection_rect,
bool no_redraw) {
// http://crbug.com/11084
// http://crbug.com/22036
}
void FindBarBridge::StopAnimation() {
[cocoa_controller_ stopAnimation];
}
void FindBarBridge::RestoreSavedFocus() {
[cocoa_controller_ restoreSavedFocus];
}
bool FindBarBridge::GetFindBarWindowInfo(gfx::Point* position,
bool* fully_visible) {
// TODO(rohitrao): Return the proper position. http://crbug.com/22036
*position = gfx::Point(0, 0);
NSWindow* window = [[cocoa_controller_ view] window];
bool window_visible = [window isVisible] ? true : false;
*fully_visible = window_visible &&
[cocoa_controller_ isFindBarVisible] &&
![cocoa_controller_ isFindBarAnimating];
return window_visible;
}
string16 FindBarBridge::GetFindText() {
// This function is currently only used in Windows and Linux specific browser
// tests (testing prepopulate values that Mac's don't rely on), but if we add
// more tests that are non-platform specific, we need to flesh out this
// function.
NOTIMPLEMENTED();
return string16();
}
|