mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 20:35:36 +00:00
Merged Mitchell's changes, this includes:
Adds stop at ratio, Adds sorting by name, date or state, Seperates Info window into its own nib, Adds option to enable or disabled autostarting downloads, Seperates Network / Transfers in the Preferences
This commit is contained in:
33
macosx/InfoWindowController.h
Normal file
33
macosx/InfoWindowController.h
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// InfoWindowController.h
|
||||
// Transmission
|
||||
//
|
||||
// Created by Mitchell Livingston on 5/22/06.
|
||||
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import "Torrent.h"
|
||||
|
||||
@interface InfoWindowController : NSWindowController
|
||||
{
|
||||
IBOutlet NSImageView * fImageView;
|
||||
IBOutlet NSTextField * fName;
|
||||
IBOutlet NSTextField * fSize;
|
||||
IBOutlet NSTextField * fTracker;
|
||||
IBOutlet NSTextField * fAnnounce;
|
||||
IBOutlet NSTextField * fPieceSize;
|
||||
IBOutlet NSTextField * fPieces;
|
||||
IBOutlet NSTextField * fHash;
|
||||
IBOutlet NSTextField * fSeeders;
|
||||
IBOutlet NSTextField * fLeechers;
|
||||
IBOutlet NSTextField * fDownloaded;
|
||||
IBOutlet NSTextField * fUploaded;
|
||||
|
||||
NSImage * fAppIcon;
|
||||
}
|
||||
|
||||
- (void) updateInfoForTorrents: (NSArray *) torrents;
|
||||
- (void) updateInfoStatsForTorrents: (NSArray *) torrents;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user