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:
Eric Petit
2006-05-25 12:22:19 +00:00
parent 30a89e1f70
commit 7e244c6792
21 changed files with 890 additions and 575 deletions

View 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