blob: 0ef704d6cf27ab4d6ee0b73108dc5d54f21e201a (
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
|
// 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_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_
#pragma once
#include "chrome/browser/ui/views/bubble/bubble.h"
#include "views/controls/image_view.h"
class CommandUpdater;
class Bubble;
namespace views {
class KeyEvent;
class MouseEvent;
}
class StarView : public views::ImageView, public BubbleDelegate {
public:
explicit StarView(CommandUpdater* command_updater);
virtual ~StarView();
// Toggles the star on or off.
void SetToggled(bool on);
private:
// views::ImageView overrides:
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
virtual bool GetTooltipText(const gfx::Point& p,
std::wstring* tooltip) OVERRIDE;
virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE;
virtual void OnMouseReleased(const views::MouseEvent& event) OVERRIDE;
virtual bool OnKeyPressed(const views::KeyEvent& event) OVERRIDE;
// BubbleDelegate overrides:
virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
virtual bool CloseOnEscape() OVERRIDE;
virtual bool FadeInOnShow() OVERRIDE;
// The CommandUpdater for the Browser object that owns the location bar.
CommandUpdater* command_updater_;
DISALLOW_IMPLICIT_CONSTRUCTORS(StarView);
};
#endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_STAR_VIEW_H_
|