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

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

Issue 2769014: Mac/clang: Possibly contentious changes. (Closed)
Patch Set: comments2 Created 10 years, 6 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 #include "base/scoped_nsobject.h" 6 #include "base/scoped_nsobject.h"
7 7
8 // A HyperlinkButtonCell is used to create an NSButton that looks and acts 8 // A HyperlinkButtonCell is used to create an NSButton that looks and acts
9 // like a hyperlink. The default styling is to look like blue, underlined text 9 // like a hyperlink. The default styling is to look like blue, underlined text
10 // and to have the pointingHand cursor on mouse over. 10 // and to have the pointingHand cursor on mouse over.
11 // 11 //
12 // To use in Interface Builder: 12 // To use in Interface Builder:
13 // 1. Drag out an NSButton. 13 // 1. Drag out an NSButton.
14 // 2. Double click on the button so you have the cell component selected. 14 // 2. Double click on the button so you have the cell component selected.
15 // 3. In the Identity panel of the inspector, set the custom class to this. 15 // 3. In the Identity panel of the inspector, set the custom class to this.
16 // 4. In the Attributes panel, change the Bezel to Square. 16 // 4. In the Attributes panel, change the Bezel to Square.
17 // 5. In the Size panel, set the Height to 16. 17 // 5. In the Size panel, set the Height to 16.
18 @interface HyperlinkButtonCell : NSButtonCell { 18 @interface HyperlinkButtonCell : NSButtonCell {
19 scoped_nsobject<NSColor> textColor_; 19 scoped_nsobject<NSColor> textColor_;
20 } 20 }
21 @property (retain) NSColor* textColor; 21 @property (nonatomic, retain) NSColor* textColor;
22 22
23 + (NSColor*)defaultTextColor; 23 + (NSColor*)defaultTextColor;
24 24
25 @end 25 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698