blob: c6cf928bce893cab5c6af1fcd741dc6c669c8b2b (
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
|
// 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_COCOA_LOCATION_BAR_STAR_DECORATION_H_
#define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_STAR_DECORATION_H_
#import <Cocoa/Cocoa.h>
#include "base/macros.h"
#include "chrome/browser/ui/cocoa/location_bar/image_decoration.h"
class CommandUpdater;
// Star icon on the right side of the field.
class StarDecoration : public ImageDecoration {
public:
explicit StarDecoration(CommandUpdater* command_updater);
~StarDecoration() override;
// Sets the image and tooltip based on |starred|.
void SetStarred(bool starred, bool locationBarIsDark);
// Returns true if the star is lit.
bool starred() const { return starred_; }
// Implement |LocationBarDecoration|.
bool AcceptsMousePress() override;
bool OnMousePressed(NSRect frame, NSPoint location) override;
NSString* GetToolTip() override;
NSPoint GetBubblePointInFrame(NSRect frame) override;
private:
// For bringing up bookmark bar.
CommandUpdater* command_updater_; // Weak, owned by Browser.
// The string to show for a tooltip.
base::scoped_nsobject<NSString> tooltip_;
// Whether the star icon is lit.
bool starred_;
DISALLOW_COPY_AND_ASSIGN(StarDecoration);
};
#endif // CHROME_BROWSER_UI_COCOA_LOCATION_BAR_STAR_DECORATION_H_
|