transmission/macosx/TorrentTableView.h

92 lines
3.0 KiB
C
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2009-01-10 23:37:37 +00:00
* Copyright (c) 2005-2009 Transmission authors and contributors
2007-09-16 01:02:06 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <transmission.h>
2008-11-01 15:22:32 +00:00
#import "Controller.h"
2007-09-16 01:02:06 +00:00
@class TorrentCell;
2008-02-19 02:10:20 +00:00
#define GROUP_SEPARATOR_HEIGHT 18.0
@interface TorrentTableView : NSOutlineView
2007-09-16 01:02:06 +00:00
{
IBOutlet Controller * fController;
TorrentCell * fTorrentCell;
2007-09-16 01:02:06 +00:00
NSUserDefaults * fDefaults;
NSMutableIndexSet * fCollapsedGroups;
2007-09-16 01:02:06 +00:00
IBOutlet NSMenu * fContextRow, * fContextNoRow;
2008-10-29 01:18:03 +00:00
NSInteger fMouseControlRow, fMouseRevealRow, fMouseActionRow, fActionPushedRow;
NSArray * fSelectedValues;
2007-09-16 01:02:06 +00:00
IBOutlet NSMenu * fActionMenu, * fUploadMenu, * fDownloadMenu, * fRatioMenu;
IBOutlet NSMenuItem * fGlobalLimitItem;
2007-09-16 01:02:06 +00:00
Torrent * fMenuTorrent;
2008-10-29 01:18:03 +00:00
CGFloat fPiecesBarPercent;
NSAnimation * fPiecesBarAnimation;
2007-09-16 01:02:06 +00:00
}
2008-10-29 01:18:03 +00:00
- (BOOL) isGroupCollapsed: (NSInteger) value;
- (void) removeCollapsedGroup: (NSInteger) value;
- (void) removeAllCollapsedGroups;
2008-06-11 03:29:06 +00:00
- (void) saveCollapsedGroups;
- (void) removeButtonTrackingAreas;
2008-10-29 01:18:03 +00:00
- (void) setControlButtonHover: (NSInteger) row;
- (void) setRevealButtonHover: (NSInteger) row;
- (void) setActionButtonHover: (NSInteger) row;
- (void) selectValues: (NSArray *) values;
- (NSArray *) selectedValues;
- (NSArray *) selectedTorrents;
2008-10-29 01:18:03 +00:00
- (NSRect) iconRectForRow: (NSInteger) row;
- (void) paste: (id) sender;
- (void) toggleControlForTorrent: (Torrent *) torrent;
2007-09-16 01:02:06 +00:00
- (void) displayTorrentMenuForEvent: (NSEvent *) event;
- (void) setQuickLimitMode: (id) sender;
- (void) setQuickLimit: (id) sender;
- (void) setGlobalLimit: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) setQuickRatioMode: (id) sender;
- (void) setQuickRatio: (id) sender;
- (void) checkFile: (id) sender;
- (void) moveDataFile: (id) sender;
2007-09-16 01:02:06 +00:00
- (void) togglePiecesBar;
2008-10-29 01:18:03 +00:00
- (CGFloat) piecesBarPercent;
2007-09-16 01:02:06 +00:00
@end