1 | /****************************************************************************** |
---|
2 | * $Id: InfoWindowController.h 3300 2007-10-07 02:25:39Z livings124 $ |
---|
3 | * |
---|
4 | * Copyright (c) 2006-2007 Transmission authors and contributors |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #import <Cocoa/Cocoa.h> |
---|
26 | #import "Torrent.h" |
---|
27 | #import "FileOutlineView.h" |
---|
28 | #import "ImageBackgroundView.h" |
---|
29 | #import "PiecesView.h" |
---|
30 | #import <transmission.h> |
---|
31 | |
---|
32 | @interface InfoWindowController : NSWindowController |
---|
33 | { |
---|
34 | NSArray * fTorrents, * fPeers, * fFiles; |
---|
35 | NSImage * fAppIcon, * fLockImage; |
---|
36 | |
---|
37 | #warning need? |
---|
38 | BOOL fCanResizeVertical; |
---|
39 | |
---|
40 | IBOutlet NSView * fInfoView, * fActivityView, * fPeersView, * fFilesView, * fOptionsView; |
---|
41 | #warning streamline |
---|
42 | NSView * fCurrentView; |
---|
43 | int fCurrentTabTag; |
---|
44 | IBOutlet NSMatrix * fTabMatrix; |
---|
45 | IBOutlet ImageBackgroundView * fTabBackBar; |
---|
46 | |
---|
47 | IBOutlet NSImageView * fImageView; |
---|
48 | IBOutlet NSTextField * fNameField, * fSizeField, * fTrackerField, |
---|
49 | * fPiecesField, * fHashField, * fSecureField, |
---|
50 | * fTorrentLocationField, * fDataLocationField, |
---|
51 | * fDateAddedField, * fDateCompletedField, * fDateActivityField, |
---|
52 | * fCreatorField, * fDateCreatedField, |
---|
53 | * fStateField, * fProgressField, |
---|
54 | * fHaveField, * fDownloadedTotalField, * fUploadedTotalField, * fFailedHashField, |
---|
55 | * fRatioField, * fSwarmSpeedField; |
---|
56 | IBOutlet NSTextView * fCommentView; |
---|
57 | IBOutlet NSButton * fRevealDataButton, * fRevealTorrentButton; |
---|
58 | |
---|
59 | IBOutlet NSTableView * fPeerTable; |
---|
60 | IBOutlet NSTextField * fConnectedPeersField, * fDownloadingFromField, * fUploadingToField, * fKnownField, |
---|
61 | * fSeedersField, * fLeechersField, * fCompletedFromTrackerField; |
---|
62 | IBOutlet NSTextView * fErrorMessageView; |
---|
63 | IBOutlet PiecesView * fPiecesView; |
---|
64 | IBOutlet NSSegmentedControl * fPiecesControl; |
---|
65 | |
---|
66 | IBOutlet FileOutlineView * fFileOutline; |
---|
67 | IBOutlet NSTextField * fFileTableStatusField; |
---|
68 | IBOutlet NSMenuItem * fFileCheckItem, * fFileUncheckItem, |
---|
69 | * fFilePriorityNormal, * fFilePriorityHigh, * fFilePriorityLow; |
---|
70 | |
---|
71 | IBOutlet NSPopUpButton * fRatioPopUp, * fUploadLimitPopUp, * fDownloadLimitPopUp; |
---|
72 | IBOutlet NSTextField * fUploadLimitField, * fDownloadLimitField, * fRatioLimitField, |
---|
73 | * fUploadLimitLabel, * fDownloadLimitLabel; |
---|
74 | IBOutlet NSButton * fPexCheck; |
---|
75 | } |
---|
76 | |
---|
77 | - (void) updateInfoForTorrents: (NSArray *) torrents; |
---|
78 | - (Torrent *) selectedTorrent; |
---|
79 | - (void) updateInfoStats; |
---|
80 | |
---|
81 | - (void) setTab: (id) sender; |
---|
82 | |
---|
83 | - (void) setNextTab; |
---|
84 | - (void) setPreviousTab; |
---|
85 | |
---|
86 | - (void) setPiecesView: (id) sender; |
---|
87 | - (void) setPiecesViewForAvailable: (BOOL) available; |
---|
88 | |
---|
89 | - (void) revealTorrentFile: (id) sender; |
---|
90 | - (void) revealDataFile: (id) sender; |
---|
91 | - (void) revealFile: (id) sender; |
---|
92 | |
---|
93 | - (void) setCheck: (id) sender; |
---|
94 | - (void) setOnlySelectedCheck: (id) sender; |
---|
95 | - (void) setPriority: (id) sender; |
---|
96 | |
---|
97 | - (void) setSpeedMode: (id) sender; |
---|
98 | - (void) setSpeedLimit: (id) sender; |
---|
99 | |
---|
100 | - (void) setRatioSetting: (id) sender; |
---|
101 | - (void) setRatioLimit: (id) sender; |
---|
102 | |
---|
103 | - (void) setPex: (id) sender; |
---|
104 | |
---|
105 | @end |
---|