summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/searchbox.h
blob: b9d5f5c5c64ebbbd1095ee804de43309f0cbe5c6 (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
// Copyright (c) 2011 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_H_
#define CHROME_RENDERER_SEARCHBOX_H_
#pragma once

#include <string>
#include <vector>

#include "base/string16.h"
#include "chrome/common/instant_types.h"
#include "content/renderer/render_view_observer.h"
#include "content/renderer/render_view_observer_tracker.h"
#include "ui/gfx/rect.h"

class SearchBox : public RenderViewObserver,
                  public RenderViewObserverTracker<SearchBox> {
 public:
  explicit SearchBox(RenderView* render_view);
  virtual ~SearchBox();

  // Sends ViewHostMsg_SetSuggestions to the browser.
  void SetSuggestions(const std::vector<std::string>& suggestions,
                      InstantCompleteBehavior behavior);

  const string16& value() { return value_; }
  bool verbatim() { return verbatim_; }
  uint32 selection_start() { return selection_start_; }
  uint32 selection_end() { return selection_end_; }
  const gfx::Rect& rect() { return rect_; }

 private:
  // RenderViewObserver implementation.
  virtual bool OnMessageReceived(const IPC::Message& message);

  void OnChange(const string16& value,
                bool verbatim,
                int selection_start,
                int selection_end);
  void OnSubmit(const string16& value, bool verbatim);
  void OnCancel();
  void OnResize(const gfx::Rect& bounds);
  void OnDetermineIfPageSupportsInstant(const string16& value,
                                        bool verbatim,
                                        int selection_start,
                                        int selection_end);

  // Sets the searchbox values to their initial value.
  void Reset();

  string16 value_;
  bool verbatim_;
  uint32 selection_start_;
  uint32 selection_end_;
  gfx::Rect rect_;

  DISALLOW_COPY_AND_ASSIGN(SearchBox);
};

#endif  // CHROME_RENDERER_SEARCHBOX_H_