1// Copyright (c) 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_COCOA_TOOLBAR_WRENCH_TOOLBAR_BUTTON_CELL_H_
6#define CHROME_BROWSER_UI_COCOA_TOOLBAR_WRENCH_TOOLBAR_BUTTON_CELL_H_
7
8#import <Cocoa/Cocoa.h>
9
10#include "base/memory/scoped_ptr.h"
11#import "chrome/browser/ui/cocoa/clickhold_button_cell.h"
12#include "chrome/browser/ui/toolbar/wrench_icon_painter.h"
13
14class WrenchIconPainterDelegateMac;
15
16// Cell for the wrench toolbar button. This is used to draw the wrench icon
17// and paint severity levels.
18@interface WrenchToolbarButtonCell : ClickHoldButtonCell {
19 @private
20  scoped_ptr<WrenchIconPainter> wrenchIconPainter_;
21  scoped_ptr<WrenchIconPainterDelegateMac> delegate_;
22}
23
24- (void)setSeverity:(WrenchIconPainter::Severity)severity
25      shouldAnimate:(BOOL)shouldAnimate;
26
27@end
28
29#endif  // CHROME_BROWSER_UI_COCOA_TOOLBAR_WRENCH_TOOLBAR_BUTTON_CELL_H_
30