blob: efc1ac457cb7daf37ed4ecb0e1676c2af1dfe5f9 [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_RESULT_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_
#include <stddef.h>
#include "base/macros.h"
#include "components/omnibox/browser/autocomplete_match.h"
#include "components/omnibox/browser/suggestion_answer.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/animation/animation_delegate.h"
#include "ui/gfx/animation/slide_animation.h"
#include "ui/gfx/font_list.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/view.h"
class OmniboxPopupContentsView;
namespace gfx {
class Canvas;
class Image;
class RenderText;
}
class OmniboxResultView : public views::View,
private gfx::AnimationDelegate {
public:
// Keep these ordered from least dominant (normal) to most dominant
// (selected).
enum ResultViewState {
NORMAL = 0,
HOVERED,
SELECTED,
NUM_STATES
};
enum ColorKind {
BACKGROUND = 0,
TEXT,
DIMMED_TEXT,
URL,
INVISIBLE_TEXT,
NUM_KINDS
};
OmniboxResultView(OmniboxPopupContentsView* model,
int model_index,
const gfx::FontList& font_list);
~OmniboxResultView() override;
SkColor GetColor(ResultViewState state, ColorKind kind) const;
// Updates the match used to paint the contents of this result view. We copy
// the match so that we can continue to paint the last result even after the
// model has changed.
void SetMatch(const AutocompleteMatch& match);
void ShowKeyword(bool show_keyword);
void Invalidate();
// Invoked when this result view has been selected.
void OnSelected();
ResultViewState GetState() const;
// Notification that the match icon has changed and schedules a repaint.
void OnMatchIconUpdated();
// Stores the image in a local data member and schedules a repaint.
void SetAnswerImage(const gfx::ImageSkia& image);
// views::View:
bool OnMousePressed(const ui::MouseEvent& event) override;
bool OnMouseDragged(const ui::MouseEvent& event) override;
void OnMouseReleased(const ui::MouseEvent& event) override;
void OnMouseMoved(const ui::MouseEvent& event) override;
void OnMouseExited(const ui::MouseEvent& event) override;
void GetAccessibleNodeData(ui::AXNodeData* node_data) override;
gfx::Size CalculatePreferredSize() const override;
void OnNativeThemeChanged(const ui::NativeTheme* theme) override;
private:
enum RenderTextType {
CONTENTS = 0,
SEPARATOR,
DESCRIPTION,
NUM_TYPES
};
// Returns the height of the text portion of the result view.
int GetTextHeight() const;
// Paints the given |match| using the RenderText instances |contents| and
// |description| at offset |x| in the bounds of this view.
void PaintMatch(const AutocompleteMatch& match,
gfx::RenderText* contents,
gfx::RenderText* description,
gfx::Canvas* canvas,
int x) const;
// Draws given |render_text| on |canvas| at given location (|x|, |y|).
// |contents| indicates if the |render_text| is for the match contents,
// separator, or description. Additional properties from |match| are used to
// render tail suggestions correctly. If |max_width| is a non-negative
// number, the text will be elided to fit within |max_width|. Returns the x
// position to the right of the string.
int DrawRenderText(const AutocompleteMatch& match,
gfx::RenderText* render_text,
RenderTextType render_text_type,
gfx::Canvas* canvas,
int x,
int y,
int max_width) const;
// Creates a RenderText with given |text| and rendering defaults.
std::unique_ptr<gfx::RenderText> CreateRenderText(
const base::string16& text) const;
// Creates a RenderText with default rendering for the given |text|. The
// |classifications| and |force_dim| are used to style the text.
std::unique_ptr<gfx::RenderText> CreateClassifiedRenderText(
const base::string16& text,
const ACMatchClassifications& classifications,
bool force_dim) const;
const gfx::Rect& text_bounds() const { return text_bounds_; }
gfx::Image GetIcon() const;
SkColor GetVectorIconColor() const;
// Whether to render only the keyword match. Returns true if |match_| has an
// associated keyword match that has been animated so close to the start that
// the keyword match will hide even the icon of the regular match.
bool ShowOnlyKeywordMatch() const;
// Initializes |contents_rendertext_| if it is NULL.
void InitContentsRenderTextIfNecessary() const;
// Returns the font to use for the description section of answer suggestions.
const gfx::FontList& GetAnswerFont() const;
// Returns the height of the the description section of answer suggestions.
int GetAnswerHeight() const;
// Returns the margin that should appear at the top and bottom of the result.
int GetVerticalMargin() const;
// Creates a RenderText with text and styling from the image line.
std::unique_ptr<gfx::RenderText> CreateAnswerText(
const SuggestionAnswer::ImageLine& line,
const gfx::FontList& font_list) const;
// Adds |text| to |destination|. |text_type| is an index into the
// kTextStyles constant defined in the .cc file and is used to style the text,
// including setting the font size, color, and baseline style. See the
// TextStyle struct in the .cc file for more.
void AppendAnswerText(gfx::RenderText* destination,
const base::string16& text,
int text_type) const;
// AppendAnswerText will break up the |text| into bold and non-bold pieces
// and pass each to this helper with the correct |is_bold| value.
void AppendAnswerTextHelper(gfx::RenderText* destination,
const base::string16& text,
int text_type,
bool is_bold) const;
// Sets the hovered state of this result.
void SetHovered(bool hovered);
// views::View:
void Layout() override;
const char* GetClassName() const override;
void OnBoundsChanged(const gfx::Rect& previous_bounds) override;
void OnPaint(gfx::Canvas* canvas) override;
// gfx::AnimationDelegate:
void AnimationProgressed(const gfx::Animation* animation) override;
// This row's model and model index.
OmniboxPopupContentsView* model_;
size_t model_index_;
// Whether this view is in the hovered state.
bool is_hovered_;
// Font settings for this view.
const gfx::FontList font_list_;
int font_height_;
// A context used for mirroring regions.
class MirroringContext;
std::unique_ptr<MirroringContext> mirroring_context_;
AutocompleteMatch match_;
gfx::Rect text_bounds_;
gfx::Rect icon_bounds_;
gfx::Rect keyword_text_bounds_;
std::unique_ptr<views::ImageView> keyword_icon_;
std::unique_ptr<gfx::SlideAnimation> animation_;
// If the answer has an icon, cache the image.
gfx::ImageSkia answer_image_;
// We preserve these RenderTexts so that we won't recreate them on every call
// to OnPaint().
mutable std::unique_ptr<gfx::RenderText> contents_rendertext_;
mutable std::unique_ptr<gfx::RenderText> description_rendertext_;
mutable std::unique_ptr<gfx::RenderText> separator_rendertext_;
mutable std::unique_ptr<gfx::RenderText> keyword_contents_rendertext_;
mutable std::unique_ptr<gfx::RenderText> keyword_description_rendertext_;
mutable int separator_width_;
DISALLOW_COPY_AND_ASSIGN(OmniboxResultView);
};
#endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_RESULT_VIEW_H_