Changeset 395


Ignore:
Timestamp:
Jun 19, 2006, 11:16:07 PM (17 years ago)
Author:
titer
Message:

Removed some fields from the info window that are duplicate with the
main window

Location:
trunk/macosx
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/macosx/English.lproj/InfoWindow.nib/info.nib

    r377 r395  
    44<dict>
    55        <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>
    77        <key>IBEditorPositions</key>
    88        <dict>
     
    2020                <integer>332</integer>
    2121        </array>
    22         <key>IBOpenObjects</key>
    23         <array>
    24                 <integer>5</integer>
    25         </array>
    2622        <key>IBSystem Version</key>
    27         <string>8I127</string>
     23        <string>8I1119</string>
    2824</dict>
    2925</plist>
  • trunk/macosx/InfoWindowController.h

    r354 r395  
    3939                        * fTorrentLocationField, * fDataLocationField,
    4040                        * fDateStartedField,
     41#if 0
    4142                        * fStateField, * fPercentField,
    4243                        * fDownloadRateField, * fUploadRateField,
     44#endif
    4345                        * fDownloadedValidField, * fDownloadedTotalField, * fUploadedTotalField,
    4446                        * fRatioField, * fSeedersField, * fLeechersField,
  • trunk/macosx/InfoWindowController.m

    r377 r395  
    3737//15 spacing at the bottom of each tab
    3838#define TAB_INFO_HEIGHT 196.0
    39 #define TAB_STATUS_HEIGHT 262.0
     39#define TAB_STATUS_HEIGHT 199.0
    4040#define TAB_OPTIONS_HEIGHT 82.0
    4141#define TAB_FILES_HEIGHT 250.0
     
    104104            [fSizeField setStringValue: @""];
    105105           
     106#if 0
    106107            [fDownloadRateField setStringValue: @""];
    107108            [fUploadRateField setStringValue: @""];
     109#endif
    108110           
    109111            [fDownloadedValidField setStringValue: @""];
     
    130132        [fDateStartedField setStringValue: @""];
    131133       
     134#if 0
    132135        [fStateField setStringValue: @""];
    133136        [fPercentField setStringValue: @""];
     137#endif
    134138        [fRatioField setStringValue: @""];
    135139       
     
    253257        }
    254258       
     259#if 0
    255260        [fDownloadRateField setStringValue: [NSString stringForSpeed: downloadRate]];
    256261        [fUploadRateField setStringValue: [NSString stringForSpeed: uploadRate]];
     262#endif
    257263       
    258264        [fDownloadedValidField setStringValue: [NSString stringForFileSize: downloadedValid]];
     
    264270            torrent = [fTorrents objectAtIndex: 0];
    265271           
     272#if 0
    266273            [fStateField setStringValue: [torrent state]];
    267274            [fPercentField setStringValue: [NSString stringWithFormat:
    268275                                            @"%.2f%%", 100.0 * [torrent progress]]];
     276#endif
    269277
    270278            int seeders = [torrent seeders], leechers = [torrent leechers];
Note: See TracChangeset for help on using the changeset viewer.