| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #import "chrome/browser/ui/cocoa/image_button_cell.h" | 10 #import "chrome/browser/ui/cocoa/clickhold_button_cell.h" |
| 11 #import "chrome/browser/ui/cocoa/toolbar/toolbar_button.h" | 11 #import "chrome/browser/ui/cocoa/menu_button.h" |
| 12 | 12 |
| 13 // ToolbarButton subclass which defers certain state changes when the mouse | 13 // ToolbarButton subclass which defers certain state changes when the mouse |
| 14 // is hovering over it. | 14 // is hovering over it. |
| 15 | 15 |
| 16 @interface ReloadButton : ToolbarButton<ImageButton> { | 16 class CommandUpdater; |
| 17 |
| 18 @interface ReloadButton : MenuButton<ImageButton> { |
| 17 @private | 19 @private |
| 18 // Timer used when setting reload mode while the mouse is hovered. | 20 // Timer used when setting reload mode while the mouse is hovered. |
| 19 NSTimer* pendingReloadTimer_; | 21 NSTimer* pendingReloadTimer_; |
| 22 base::scoped_nsobject<NSMenu> menu_; |
| 23 CommandUpdater* commandUpdater_; // weak, set by toolbar controller. |
| 20 } | 24 } |
| 21 | 25 |
| 22 // Update the tag, and the image and tooltip to match. If |anInt| | 26 // Update the tag, and the image and tooltip to match. If |anInt| |
| 23 // matches the current tag, no action is taken. |anInt| must be | 27 // matches the current tag, no action is taken. |anInt| must be |
| 24 // either |IDC_STOP| or |IDC_RELOAD|. | 28 // either |IDC_STOP| or |IDC_RELOAD|. |
| 25 - (void)updateTag:(NSInteger)anInt; | 29 - (void)updateTag:(NSInteger)anInt; |
| 26 | 30 |
| 27 // Update the button to be a reload button or stop button depending on | 31 // Update the button to be a reload button or stop button depending on |
| 28 // |isLoading|. If |force|, always sets the indicated mode. If | 32 // |isLoading|. If |force|, always sets the indicated mode. If |
| 29 // |!force|, and the mouse is over the button, defer the transition | 33 // |!force|, and the mouse is over the button, defer the transition |
| 30 // from stop button to reload button until the mouse has left the | 34 // from stop button to reload button until the mouse has left the |
| 31 // button, or until |pendingReloadTimer_| fires. This prevents an | 35 // button, or until |pendingReloadTimer_| fires. This prevents an |
| 32 // inadvertent click _just_ as the state changes. | 36 // inadvertent click _just_ as the state changes. |
| 33 - (void)setIsLoading:(BOOL)isLoading force:(BOOL)force; | 37 - (void)setIsLoading:(BOOL)isLoading force:(BOOL)force; |
| 34 | 38 |
| 39 // Changes whether reload button shows menu. |
| 40 - (void)setMenuEnabled:(BOOL)enabled; |
| 41 |
| 42 - (void)setCommandUpdater:(CommandUpdater*)commandUpdater; |
| 43 |
| 35 @end | 44 @end |
| 36 | 45 |
| 37 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ | 46 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_RELOAD_BUTTON_H_ |
| OLD | NEW |