1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 17:17:31 +00:00
transmission/macosx/Badger.h
Eric Petit 7e244c6792 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
2006-05-25 12:22:19 +00:00

31 lines
628 B
Objective-C

//
// Badger.h
// Transmission
//
// Created by Mitchell Livingston on 12/21/05.
//
#ifndef BADGER_H
#define BADGER_H
#import <Cocoa/Cocoa.h>
@interface Badger : NSObject {
NSImage * fDockIcon, * fBadgedDockIcon,
* fBadge, * fUploadBadge, * fDownloadBadge;
NSDictionary * fAttributes;
int fCompleted;
BOOL fSpeedShown;
}
- (void) updateBadgeWithCompleted: (int) completed
uploadRate: (NSString *) uploadRate
downloadRate: (NSString *) downloadRate;
- (void) clearBadge;
@end
#endif