blob: 0f3ea30859de9bfb8aca302278c336b369176a75 [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_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h"
#include "ui/views/controls/label.h"
class LocationBarView;
class Profile;
namespace gfx {
class FontList;
class Size;
}
// SelectedKeywordView displays the tab-to-search UI in the location bar view.
class SelectedKeywordView : public IconLabelBubbleView {
public:
SelectedKeywordView(LocationBarView* location_bar,
const gfx::FontList& font_list,
Profile* profile);
~SelectedKeywordView() override;
// Resets the icon for this chip to its default (it may have been changed
// for an extension).
void ResetImage();
// IconLabelBubbleView:
SkColor GetTextColor() const override;
SkColor GetInkDropBaseColor() const override;
// views::View:
gfx::Size CalculatePreferredSize() const override;
gfx::Size GetMinimumSize() const override;
void Layout() override;
// The current keyword, or an empty string if no keyword is displayed.
void SetKeyword(const base::string16& keyword);
const base::string16& keyword() const { return keyword_; }
using IconLabelBubbleView::label;
private:
// IconLabelBubbleView:
int GetExtraInternalSpacing() const override;
const char* GetClassName() const override;
LocationBarView* location_bar_;
// The keyword we're showing. If empty, no keyword is selected.
// NOTE: we don't cache the TemplateURL as it is possible for it to get
// deleted out from under us.
base::string16 keyword_;
// These labels are never visible. They are used to size the view. One
// label contains the complete description of the keyword, the second
// contains a truncated version of the description, for if there is not
// enough room to display the complete description.
views::Label full_label_;
views::Label partial_label_;
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(SelectedKeywordView);
};
#endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_SELECTED_KEYWORD_VIEW_H_