Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(497)

Side by Side Diff: chrome/browser/cocoa/menu_tracked_button.h

Issue 3177001: Merge 54804 - [Mac] Enable click-drag-release behavior in the Wrench menu's c... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/472/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/nibs/Toolbar.xib ('k') | chrome/browser/cocoa/menu_tracked_button.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_MENU_TRACKED_BUTTON_H_ 5 #ifndef CHROME_BROWSER_COCOA_MENU_TRACKED_BUTTON_H_
6 #define CHROME_BROWSER_COCOA_MENU_TRACKED_BUTTON_H_ 6 #define CHROME_BROWSER_COCOA_MENU_TRACKED_BUTTON_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
11 // A MenuTrackedButton is meant to be used whenever a button is placed inside 11 // A MenuTrackedButton is meant to be used whenever a button is placed inside
12 // the custom view of an NSMenuItem. If the user opens the menu in a non-sticky 12 // the custom view of an NSMenuItem. If the user opens the menu in a non-sticky
13 // fashion (i.e. clicks, holds, and drags) and then releases the mouse over 13 // fashion (i.e. clicks, holds, and drags) and then releases the mouse over
14 // a MenuTrackedButton, it will |-performClick:| itself. 14 // a MenuTrackedButton, it will |-performClick:| itself.
15 @interface MenuTrackedButton : NSButton { 15 @interface MenuTrackedButton : NSButton {
16 @private 16 @private
17 // If the button received a |-mouseEntered:| event. This short-circuits the 17 // If the button received a |-mouseEntered:| event. This short-circuits the
18 // custom drag tracking logic. 18 // custom drag tracking logic.
19 BOOL didEnter_; 19 BOOL didEnter_;
20 20
21 // Whether or not the user is in a click-drag-release event sequence. If so 21 // Whether or not the user is in a click-drag-release event sequence. If so
22 // and this receives a |-mouseUp:|, then this will click itself. 22 // and this receives a |-mouseUp:|, then this will click itself.
23 BOOL tracking_; 23 BOOL tracking_;
24 } 24 }
25 25
26 @end 26 @end
27 27
28 #endif // CHROME_BROWSER_COCOA_MENU_TRACKED_BUTTON_H_ 28 #endif // CHROME_BROWSER_COCOA_MENU_TRACKED_BUTTON_H_
OLDNEW
« no previous file with comments | « chrome/app/nibs/Toolbar.xib ('k') | chrome/browser/cocoa/menu_tracked_button.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698