OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ | 5 #ifndef CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ |
6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ | 6 #define CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/scoped_nsobject.h" | 10 #include "chrome/browser/cocoa/location_bar/image_decoration.h" |
11 #include "chrome/browser/cocoa/location_bar/location_bar_decoration.h" | |
12 | 11 |
13 class LocationBarViewMac; | 12 class LocationBarViewMac; |
14 | 13 |
15 // LocationIconDecoration is used to display an icon to the left of | 14 // LocationIconDecoration is used to display an icon to the left of |
16 // the address. | 15 // the address. |
17 | 16 |
18 class LocationIconDecoration : public LocationBarDecoration { | 17 class LocationIconDecoration : public ImageDecoration { |
19 public: | 18 public: |
20 explicit LocationIconDecoration(LocationBarViewMac* owner); | 19 explicit LocationIconDecoration(LocationBarViewMac* owner); |
21 virtual ~LocationIconDecoration(); | 20 virtual ~LocationIconDecoration(); |
22 | 21 |
23 // The image to display for the location. | |
24 NSImage* GetImage(); | |
25 void SetImage(NSImage* image); | |
26 | |
27 // Implement |LocationBarDecoration|. | |
28 virtual CGFloat GetWidthForSpace(CGFloat width); | |
29 virtual void DrawInFrame(NSRect frame, NSView* control_view); | |
30 | |
31 // Allow dragging the current URL. | 22 // Allow dragging the current URL. |
32 virtual bool IsDraggable(); | 23 virtual bool IsDraggable(); |
33 virtual NSPasteboard* GetDragPasteboard(); | 24 virtual NSPasteboard* GetDragPasteboard(); |
34 virtual NSImage* GetDragImage() { return GetImage(); } | 25 virtual NSImage* GetDragImage() { return GetImage(); } |
35 | 26 |
36 // Show the page info panel on click. | 27 // Show the page info panel on click. |
37 virtual bool OnMousePressed(NSRect frame); | 28 virtual bool OnMousePressed(NSRect frame); |
38 | 29 |
39 private: | 30 private: |
40 // The location bar view that owns us. | 31 // The location bar view that owns us. |
41 LocationBarViewMac* owner_; | 32 LocationBarViewMac* owner_; |
42 | 33 |
43 scoped_nsobject<NSImage> image_; | |
44 | |
45 DISALLOW_COPY_AND_ASSIGN(LocationIconDecoration); | 34 DISALLOW_COPY_AND_ASSIGN(LocationIconDecoration); |
46 }; | 35 }; |
47 | 36 |
48 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ | 37 #endif // CHROME_BROWSER_COCOA_LOCATION_BAR_LOCATION_ICON_DECORATION_H_ |
OLD | NEW |