blob: 10b3b22d1f22f83f1ac6235a4b7c679398e18ee2 (
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
|
// Copyright (c) 2012 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.
#ifndef CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
#define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
#include <vector>
#include "base/basictypes.h"
#include "base/string16.h"
#include "chrome/common/instant_types.h"
#include "content/public/renderer/render_view_observer.h"
#include "content/public/renderer/render_view_observer_tracker.h"
#include "ui/gfx/rect.h"
namespace content {
class RenderView;
}
namespace IPC {
class Message;
}
class SearchBox : public content::RenderViewObserver,
public content::RenderViewObserverTracker<SearchBox> {
public:
explicit SearchBox(content::RenderView* render_view);
virtual ~SearchBox();
// Sends ViewHostMsg_SetSuggestions to the browser.
void SetSuggestions(const std::vector<InstantSuggestion>& suggestions);
// Sends ViewHostMsg_ShowInstantPreview to the browser.
void ShowInstantPreview(InstantShownReason reason,
int height,
InstantSizeUnits units);
const string16& query() const { return query_; }
bool verbatim() const { return verbatim_; }
size_t selection_start() const { return selection_start_; }
size_t selection_end() const { return selection_end_; }
int results_base() const { return results_base_; }
bool is_focused() const { return is_focused_; }
bool active_tab_is_ntp() const { return active_tab_is_ntp_; }
gfx::Rect GetRect();
const std::vector<InstantAutocompleteResult>& GetAutocompleteResults();
// Searchbox retains ownership of this object.
const InstantAutocompleteResult*
GetAutocompleteResultWithId(size_t restricted_id) const;
private:
// RenderViewObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
void OnChange(const string16& query,
bool verbatim,
size_t selection_start,
size_t selection_end);
void OnSubmit(const string16& query);
void OnCancel(const string16& query);
void OnResize(const gfx::Rect& bounds);
void OnDetermineIfPageSupportsInstant();
void OnAutocompleteResults(
const std::vector<InstantAutocompleteResult>& results);
void OnUpOrDownKeyPressed(int count);
void OnFocus();
void OnBlur();
void OnActiveTabModeChanged(bool active_tab_is_ntp);
// Sets the searchbox values to their initial value.
void Reset();
string16 query_;
bool verbatim_;
size_t selection_start_;
size_t selection_end_;
size_t results_base_;
gfx::Rect rect_;
std::vector<InstantAutocompleteResult> autocomplete_results_;
size_t last_results_base_;
std::vector<InstantAutocompleteResult> last_autocomplete_results_;
bool is_focused_;
bool active_tab_is_ntp_;
DISALLOW_COPY_AND_ASSIGN(SearchBox);
};
#endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_
|