~ubuntu-branches/ubuntu/maverick/transmission/maverick

« back to all changes in this revision

Viewing changes to macosx/InfoWindowController.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-05-22 21:57:30 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (2.1.18 sid) (1.3.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20090522215730-ly5kgv5aw9ig2u82
Tags: upstream-1.61
ImportĀ upstreamĀ versionĀ 1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: InfoWindowController.h 7016 2008-11-02 01:07:01Z livings124 $
 
2
 * $Id: InfoWindowController.h 8261 2009-04-20 03:36:35Z livings124 $
3
3
 *
4
 
 * Copyright (c) 2006-2008 Transmission authors and contributors
 
4
 * Copyright (c) 2006-2009 Transmission authors and contributors
5
5
 *
6
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
7
 * copy of this software and associated documentation files (the "Software"),
68
68
    NSViewAnimation * fWebSeedTableAnimation;
69
69
    
70
70
    IBOutlet FileOutlineController * fFileController;
 
71
    IBOutlet NSSearchField * fFileFilterField;
71
72
    
72
 
    IBOutlet NSPopUpButton * fRatioPopUp, * fUploadLimitPopUp, * fDownloadLimitPopUp;
73
 
    IBOutlet NSTextField * fUploadLimitField, * fDownloadLimitField, * fRatioLimitField, * fPeersConnectField,
74
 
                        * fUploadLimitLabel, * fDownloadLimitLabel, * fPeersConnectLabel;
 
73
    IBOutlet NSPopUpButton * fPriorityPopUp, * fRatioPopUp;
 
74
    IBOutlet NSButton * fUploadLimitCheck, * fDownloadLimitCheck, * fGlobalLimitCheck;
 
75
    IBOutlet NSTextField * fUploadLimitField, * fDownloadLimitField, * fRatioLimitField,
 
76
                        * fUploadLimitLabel, * fDownloadLimitLabel, * fPeersConnectLabel,
 
77
                        * fPeersConnectField;
75
78
    
76
79
    NSString * fInitialString;
77
80
}
98
101
- (void) revealTorrentFile: (id) sender;
99
102
- (void) revealDataFile: (id) sender;
100
103
 
101
 
- (void) setSpeedMode: (id) sender;
 
104
- (void) setFileFilterText: (id) sender;
 
105
 
 
106
- (void) setUseSpeedLimit: (id) sender;
102
107
- (void) setSpeedLimit: (id) sender;
 
108
- (void) setUseGlobalSpeedLimit: (id) sender;
103
109
 
104
110
- (void) setRatioSetting: (id) sender;
105
111
- (void) setRatioLimit: (id) sender;
106
112
 
 
113
- (void) setPriority: (id) sender;
 
114
 
107
115
- (void) setPeersConnectLimit: (id) sender;
108
116
 
109
117
@end