Changeset 395
- Timestamp:
- Jun 19, 2006, 11:16:07 PM (17 years ago)
- Location:
- trunk/macosx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/English.lproj/InfoWindow.nib/info.nib
r377 r395 4 4 <dict> 5 5 <key>IBDocumentLocation</key> 6 <string> 69 61 356 240 0 0 1152 842</string>6 <string>94 65 356 240 0 0 1440 878 </string> 7 7 <key>IBEditorPositions</key> 8 8 <dict> … … 20 20 <integer>332</integer> 21 21 </array> 22 <key>IBOpenObjects</key>23 <array>24 <integer>5</integer>25 </array>26 22 <key>IBSystem Version</key> 27 <string>8I1 27</string>23 <string>8I1119</string> 28 24 </dict> 29 25 </plist> -
trunk/macosx/InfoWindowController.h
r354 r395 39 39 * fTorrentLocationField, * fDataLocationField, 40 40 * fDateStartedField, 41 #if 0 41 42 * fStateField, * fPercentField, 42 43 * fDownloadRateField, * fUploadRateField, 44 #endif 43 45 * fDownloadedValidField, * fDownloadedTotalField, * fUploadedTotalField, 44 46 * fRatioField, * fSeedersField, * fLeechersField, -
trunk/macosx/InfoWindowController.m
r377 r395 37 37 //15 spacing at the bottom of each tab 38 38 #define TAB_INFO_HEIGHT 196.0 39 #define TAB_STATUS_HEIGHT 262.039 #define TAB_STATUS_HEIGHT 199.0 40 40 #define TAB_OPTIONS_HEIGHT 82.0 41 41 #define TAB_FILES_HEIGHT 250.0 … … 104 104 [fSizeField setStringValue: @""]; 105 105 106 #if 0 106 107 [fDownloadRateField setStringValue: @""]; 107 108 [fUploadRateField setStringValue: @""]; 109 #endif 108 110 109 111 [fDownloadedValidField setStringValue: @""]; … … 130 132 [fDateStartedField setStringValue: @""]; 131 133 134 #if 0 132 135 [fStateField setStringValue: @""]; 133 136 [fPercentField setStringValue: @""]; 137 #endif 134 138 [fRatioField setStringValue: @""]; 135 139 … … 253 257 } 254 258 259 #if 0 255 260 [fDownloadRateField setStringValue: [NSString stringForSpeed: downloadRate]]; 256 261 [fUploadRateField setStringValue: [NSString stringForSpeed: uploadRate]]; 262 #endif 257 263 258 264 [fDownloadedValidField setStringValue: [NSString stringForFileSize: downloadedValid]]; … … 264 270 torrent = [fTorrents objectAtIndex: 0]; 265 271 272 #if 0 266 273 [fStateField setStringValue: [torrent state]]; 267 274 [fPercentField setStringValue: [NSString stringWithFormat: 268 275 @"%.2f%%", 100.0 * [torrent progress]]]; 276 #endif 269 277 270 278 int seeders = [torrent seeders], leechers = [torrent leechers];
Note: See TracChangeset
for help on using the changeset viewer.