blob: 2b383990374a9ba7dd9d5c176f49ea535c669421 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright (c) 2010 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.
#import <Cocoa/Cocoa.h>
#import "base/cocoa_protocols_mac.h"
#include "base/file_path.h"
#import "chrome/browser/cocoa/draggable_button.h"
@class DownloadItemController;
// A button that is a drag source for a file and that displays a context menu
// instead of firing an action when clicked in a certain area.
@interface DownloadItemButton : DraggableButton<NSMenuDelegate> {
@private
FilePath downloadPath_;
DownloadItemController* controller_; // weak
}
@property(assign, nonatomic) FilePath download;
@property(assign, nonatomic) DownloadItemController* controller;
// Overridden from DraggableButton.
- (void)beginDrag:(NSEvent*)event;
@end
|