// Copyright (c) 2009 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_COCOA_CHROMIUM_BUTTON_CELL_H_ #define CHROME_BROWSER_COCOA_CHROMIUM_BUTTON_CELL_H_ #import #include "base/scoped_nsobject.h" @class GTMTheme; // Base class for button cells for toolbar and bookmark bar. // // This is a button cell that handles drawing/highlighting of buttons. // The appearance is determined by setting the cell's tag (not the // view's) to one of the constants below (ButtonType). // Set this as the cell's tag. enum { kLeftButtonType = -1, kLeftButtonWithShadowType = -2, kStandardButtonType = 0, kRightButtonType = 1, kMiddleButtonType = 2, }; typedef NSInteger ButtonType; @interface GradientButtonCell : NSButtonCell { @private // Custom drawing means we need to perform our own mouse tracking if // the cell is setShowsBorderOnlyWhileMouseInside:YES. BOOL isMouseInside_; scoped_nsobject trackingArea_; BOOL shouldTheme_; CGFloat hoverAlpha_; // 0-1. Controls the alpha during mouse hover NSTimeInterval lastHoverUpdate_; scoped_nsobject gradient_; scoped_nsobject underlayImage_; } // Turn off theming. Temporary work-around. - (void)setShouldTheme:(BOOL)shouldTheme; - (void)drawBorderAndFillForTheme:(GTMTheme*)theme controlView:(NSView*)controlView outerPath:(NSBezierPath*)outerPath innerPath:(NSBezierPath*)innerPath showClickedGradient:(BOOL)showClickedGradient showHighlightGradient:(BOOL)showHighlightGradient hoverAlpha:(CGFloat)hoverAlpha active:(BOOL)active cellFrame:(NSRect)cellFrame defaultGradient:(NSGradient*)defaultGradient; // An image to underlay beneath the existing image; not themed. May be nil. - (NSImage*)underlayImage; - (void)setUnderlayImage:(NSImage*)image; // Let the view know when the mouse moves in and out. A timer will update // the current hoverAlpha_ based on these events. - (void)setMouseInside:(BOOL)flag animate:(BOOL)animate; // Gets the path which tightly bounds the outside of the button. This is needed // to produce images of clear buttons which only include the area inside, since // the background of the button is drawn by someone else. - (NSBezierPath*)clipPathForFrame:(NSRect)cellFrame inView:(NSView*)controlView; @property(assign, nonatomic)CGFloat hoverAlpha; @end @interface GradientButtonCell(TestingAPI) - (BOOL)isMouseInside; @end #endif // CHROME_BROWSER_COCOA_CHROMIUM_BUTTON_CELL_H_