blob: 9aefcdaa124a65a788df57e3080f6f6c59fd8d9a [file] [log] [blame]
// 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_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_
#include <stddef.h>
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "components/omnibox/browser/omnibox_popup_model.h"
#include "components/omnibox/browser/omnibox_popup_view.h"
#include "ui/base/window_open_disposition.h"
#include "ui/gfx/font_list.h"
#include "ui/gfx/image/image.h"
#include "ui/views/view.h"
struct AutocompleteMatch;
class LocationBarView;
class OmniboxEditModel;
class OmniboxResultView;
enum class OmniboxTint;
class OmniboxViewViews;
// A view representing the contents of the autocomplete popup.
class OmniboxPopupContentsView : public views::View, public OmniboxPopupView {
public:
OmniboxPopupContentsView(OmniboxViewViews* omnibox_view,
OmniboxEditModel* edit_model,
LocationBarView* location_bar_view);
~OmniboxPopupContentsView() override;
OmniboxPopupModel* model() const { return model_.get(); }
// Opens a match from the list specified by |index| with the type of tab or
// window specified by |disposition|.
void OpenMatch(WindowOpenDisposition disposition,
base::TimeTicks match_selection_timestamp);
void OpenMatch(size_t index,
WindowOpenDisposition disposition,
base::TimeTicks match_selection_timestamp);
// Returns the icon that should be displayed next to |match|. If the icon is
// available as a vector icon, it will be |vector_icon_color|.
gfx::Image GetMatchIcon(const AutocompleteMatch& match,
SkColor vector_icon_color) const;
// Returns the theme color tint (e.g. dark or light).
OmniboxTint CalculateTint() const;
// Sets the line specified by |index| as selected.
virtual void SetSelectedLine(size_t index);
// Returns true if the line specified by |index| is selected.
virtual bool IsSelectedIndex(size_t index) const;
// If the selected index has a tab switch button, whether it's "focused" via
// the tab key. Invalid if the selected index does not have a tab switch
// button.
bool IsButtonSelected() const;
// Called by the active result view to inform model (due to mouse event).
void UnselectButton();
// Called to inform result view of button focus.
void ProvideButtonFocusHint(size_t line);
// Returns whether we're in experimental keyword mode and the input gives
// sufficient confidence that the user wants keyword mode.
bool InExplicitExperimentalKeywordMode();
// OmniboxPopupView:
bool IsOpen() const override;
void InvalidateLine(size_t line) override;
void OnLineSelected(size_t line) override;
void UpdatePopupAppearance() override;
void OnMatchIconUpdated(size_t match_index) override;
void OnDragCanceled() override;
// views::View:
void Layout() override;
bool OnMouseDragged(const ui::MouseEvent& event) override;
void OnGestureEvent(ui::GestureEvent* event) override;
void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
private:
friend class OmniboxPopupContentsViewTest;
class AutocompletePopupWidget;
// Returns the target popup bounds in screen coordinates based on the bounds
// of |location_bar_view_|.
gfx::Rect GetTargetBounds();
// Size our children to the available content area.
void LayoutChildren();
// Returns true if the model has a match at the specified index.
bool HasMatchAt(size_t index) const;
// Returns the match at the specified index within the popup model.
const AutocompleteMatch& GetMatchAtIndex(size_t index) const;
// Find the index of the match under the given |point|, specified in window
// coordinates. Returns OmniboxPopupModel::kNoMatch if there isn't a match at
// the specified point.
size_t GetIndexForPoint(const gfx::Point& point);
OmniboxResultView* result_view_at(size_t i);
LocationBarView* location_bar_view() { return location_bar_view_; }
// views::View:
const char* GetClassName() const override;
std::unique_ptr<OmniboxPopupModel> model_;
// The popup that contains this view. We create this, but it deletes itself
// when its window is destroyed. This is a WeakPtr because it's possible for
// the OS to destroy the window and thus delete this object before we're
// deleted, or without our knowledge.
base::WeakPtr<AutocompletePopupWidget> popup_;
// The edit view that invokes us.
OmniboxViewViews* omnibox_view_;
LocationBarView* location_bar_view_;
DISALLOW_COPY_AND_ASSIGN(OmniboxPopupContentsView);
};
#endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_POPUP_CONTENTS_VIEW_H_