mirror of
https://github.com/transmission/transmission
synced 2025-02-20 21:26:53 +00:00
perform localization of InfoActivityViewController with a strings files and resizing code
This commit is contained in:
parent
d3e57ff7f8
commit
340c8aedf7
3 changed files with 356 additions and 53 deletions
|
@ -39,11 +39,18 @@
|
|||
* fHaveField, * fDownloadedTotalField, * fUploadedTotalField, * fFailedHashField,
|
||||
* fRatioField,
|
||||
* fDownloadTimeField, * fSeedTimeField;
|
||||
|
||||
IBOutlet NSTextView * fErrorMessageView;
|
||||
|
||||
IBOutlet PiecesView * fPiecesView;
|
||||
IBOutlet NSSegmentedControl * fPiecesControl;
|
||||
|
||||
//remove when we switch to auto layout on 10.7
|
||||
IBOutlet NSTextField * fTransferSectionLabel, * fDatesSectionLabel, * fTimeSectionLabel;
|
||||
IBOutlet NSTextField * fStateLabel, * fProgressLabel, * fHaveLabel, * fDownloadedLabel, * fUploadedLabel,
|
||||
* fFailedDLLabel, * fRatioLabel, * fErrorLabel,
|
||||
* fDateAddedLabel, * fDateCompletedLabel, * fDateActivityLabel,
|
||||
* fDownloadTimeLabel, * fSeedTimeLabel;
|
||||
IBOutlet NSScrollView * fErrorScrollView;
|
||||
}
|
||||
|
||||
- (void) setInfoForTorrents: (NSArray *) torrents;
|
||||
|
|
|
@ -56,6 +56,46 @@
|
|||
- (void) awakeFromNib
|
||||
{
|
||||
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(updatePiecesView) name: @"UpdatePiecesView" object: nil];
|
||||
|
||||
#warning remove when 10.7-only with auto layout
|
||||
[fTransferSectionLabel sizeToFit];
|
||||
[fDatesSectionLabel sizeToFit];
|
||||
[fTimeSectionLabel sizeToFit];
|
||||
|
||||
NSArray * labels = @[ fStateLabel, fProgressLabel, fHaveLabel, fDownloadedLabel, fUploadedLabel, fFailedDLLabel, fRatioLabel, fErrorLabel, fDateAddedLabel, fDateCompletedLabel, fDateActivityLabel, fDownloadTimeLabel, fSeedTimeLabel ];
|
||||
|
||||
CGFloat oldMaxWidth = 0.0, originX, newMaxWidth = 0.0;
|
||||
for (NSTextField * label in labels)
|
||||
{
|
||||
const CGRect oldFrame = [label frame];
|
||||
if (oldFrame.size.width > oldMaxWidth)
|
||||
{
|
||||
oldMaxWidth = oldFrame.size.width;
|
||||
originX = oldFrame.origin.x;
|
||||
}
|
||||
|
||||
[label sizeToFit];
|
||||
const CGFloat newWidth = [label bounds].size.width;
|
||||
if (newWidth > newMaxWidth)
|
||||
newMaxWidth = newWidth;
|
||||
}
|
||||
|
||||
for (NSTextField * label in labels)
|
||||
{
|
||||
NSRect frame = [label frame];
|
||||
frame.origin.x = originX + (newMaxWidth - frame.size.width);
|
||||
[label setFrame: frame];
|
||||
}
|
||||
|
||||
NSArray * fields = @[ fDateAddedField, fDateCompletedField, fDateActivityField, fStateField, fProgressField, fHaveField, fDownloadedTotalField, fUploadedTotalField, fFailedHashField, fRatioField, fDownloadTimeField, fSeedTimeField, fErrorScrollView ];
|
||||
|
||||
for (NSView * field in fields) {
|
||||
const CGFloat widthIncrease = newMaxWidth - oldMaxWidth;
|
||||
NSRect frame = [field frame];
|
||||
frame.origin.x += widthIncrease;
|
||||
frame.size.width -= widthIncrease;
|
||||
[field setFrame: frame];
|
||||
}
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
|
|
|
@ -2,28 +2,28 @@
|
|||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1060</int>
|
||||
<string key="IBDocument.SystemVersion">11D50</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">2177</string>
|
||||
<string key="IBDocument.AppKitVersion">1138.32</string>
|
||||
<string key="IBDocument.HIToolboxVersion">568.00</string>
|
||||
<string key="IBDocument.SystemVersion">12C54</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">2840</string>
|
||||
<string key="IBDocument.AppKitVersion">1187.34</string>
|
||||
<string key="IBDocument.HIToolboxVersion">625.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">2177</string>
|
||||
<string key="NS.object.0">2840</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSSegmentedControl</string>
|
||||
<string>NSScroller</string>
|
||||
<string>NSScrollView</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
<string>NSDateFormatter</string>
|
||||
<string>NSImageView</string>
|
||||
<string>NSImageCell</string>
|
||||
<string>NSBox</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSSegmentedCell</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSTextView</string>
|
||||
<string>NSDateFormatter</string>
|
||||
<string>NSImageCell</string>
|
||||
<string>NSImageView</string>
|
||||
<string>NSScrollView</string>
|
||||
<string>NSScroller</string>
|
||||
<string>NSSegmentedCell</string>
|
||||
<string>NSSegmentedControl</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
<string>NSTextView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
|
@ -55,7 +55,7 @@
|
|||
<reference key="NSNextKeyView" ref="700662710"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="17686809">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Downloaded:</string>
|
||||
<object class="NSFont" key="NSSupport" id="26">
|
||||
|
@ -83,6 +83,7 @@
|
|||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="700662710">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -93,7 +94,7 @@
|
|||
<reference key="NSNextKeyView" ref="1068112942"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="633100303">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -102,6 +103,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="1068112942">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -112,7 +114,7 @@
|
|||
<reference key="NSNextKeyView" ref="375557524"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="506564662">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Uploaded:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -120,6 +122,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="375557524">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -130,7 +133,7 @@
|
|||
<reference key="NSNextKeyView" ref="882091406"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="460477636">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -139,6 +142,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="635463300">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -149,7 +153,7 @@
|
|||
<reference key="NSNextKeyView" ref="655961577"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="754768633">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Ratio:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -157,6 +161,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="655961577">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -167,7 +172,7 @@
|
|||
<reference key="NSNextKeyView" ref="952075492"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="591650892">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -176,6 +181,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="206962076">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -186,7 +192,7 @@
|
|||
<reference key="NSNextKeyView" ref="581792195"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="206661970">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Have:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -194,6 +200,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="581792195">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -204,7 +211,7 @@
|
|||
<reference key="NSNextKeyView" ref="377137329"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="373169675">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -213,6 +220,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="553434559">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -223,7 +231,7 @@
|
|||
<reference key="NSNextKeyView" ref="255262911"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="519009534">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">State:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -231,6 +239,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="255262911">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -241,7 +250,7 @@
|
|||
<reference key="NSNextKeyView" ref="630952996"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="1012733611">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -250,6 +259,7 @@
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSImageView" id="183905107">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -268,13 +278,14 @@
|
|||
<reference key="NSNextKeyView" ref="635463300"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSImageCell" key="NSCell" id="627429641">
|
||||
<int key="NSCellFlags">130560</int>
|
||||
<int key="NSCellFlags">134217728</int>
|
||||
<int key="NSCellFlags2">33554432</int>
|
||||
<int key="NSAlign">0</int>
|
||||
<int key="NSScale">1</int>
|
||||
<int key="NSStyle">0</int>
|
||||
<bool key="NSAnimates">YES</bool>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<bool key="NSEditable">YES</bool>
|
||||
</object>
|
||||
<object class="NSScrollView" id="1015114756">
|
||||
|
@ -288,7 +299,7 @@
|
|||
<object class="NSTextView" id="745634418">
|
||||
<reference key="NSNextResponder" ref="664609260"/>
|
||||
<int key="NSvFlags">2322</int>
|
||||
<string key="NSFrameSize">{248, 14}</string>
|
||||
<string key="NSFrameSize">{248, 56}</string>
|
||||
<reference key="NSSuperview" ref="664609260"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="975841179"/>
|
||||
|
@ -303,7 +314,7 @@
|
|||
<array class="NSMutableArray" key="NSTextContainers">
|
||||
<reference ref="275708743"/>
|
||||
</array>
|
||||
<int key="NSLMFlags">6</int>
|
||||
<int key="NSLMFlags">38</int>
|
||||
<nil key="NSDelegate"/>
|
||||
</object>
|
||||
<reference key="NSTextView" ref="745634418"/>
|
||||
|
@ -346,7 +357,6 @@
|
|||
</object>
|
||||
<int key="NSTVFlags">6</int>
|
||||
<string key="NSMaxSize">{517, 10000000}</string>
|
||||
<string key="NSMinize">{87, 0}</string>
|
||||
<nil key="NSDelegate"/>
|
||||
</object>
|
||||
</array>
|
||||
|
@ -385,10 +395,11 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<object class="NSScroller" id="975841179">
|
||||
<reference key="NSNextResponder" ref="1015114756"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<string key="NSFrame">{{249, 1}, {11, 56}}</string>
|
||||
<string key="NSFrame">{{246, 1}, {14, 56}}</string>
|
||||
<reference key="NSSuperview" ref="1015114756"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="428643281"/>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSsFlags">256</int>
|
||||
<reference key="NSTarget" ref="1015114756"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
|
@ -401,6 +412,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSSuperview" ref="1015114756"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="664609260"/>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSsFlags">257</int>
|
||||
<reference key="NSTarget" ref="1015114756"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
|
@ -416,6 +428,9 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSVScroller" ref="975841179"/>
|
||||
<reference key="NSHScroller" ref="153164887"/>
|
||||
<reference key="NSContentView" ref="664609260"/>
|
||||
<double key="NSMinMagnification">0.25</double>
|
||||
<double key="NSMaxMagnification">4</double>
|
||||
<double key="NSMagnification">1</double>
|
||||
</object>
|
||||
<object class="NSTextField" id="615655994">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -426,7 +441,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="1015114756"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="696935780">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Error:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -434,6 +449,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="1017199380">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -444,7 +460,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="835637422"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="414540253">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">272629760</int>
|
||||
<string key="NSContents">Time Elapsed</string>
|
||||
<object class="NSFont" key="NSSupport" id="27">
|
||||
|
@ -456,6 +472,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="835637422">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -466,7 +483,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="178079550"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="47009879">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Downloading:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -474,6 +491,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="178079550">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -484,7 +502,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="393335924"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="914936923">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
<string key="NSPlaceholderString">N/A</string>
|
||||
|
@ -492,6 +510,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="393335924">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -502,7 +521,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="961311417"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="752785422">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Seeding:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -510,6 +529,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="961311417">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -520,7 +540,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="877219475">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
<string key="NSPlaceholderString">N/A</string>
|
||||
|
@ -528,6 +548,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSBox" id="746679931">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -538,7 +559,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="1017199380"/>
|
||||
<string key="NSOffsets">{0, 0}</string>
|
||||
<object class="NSTextFieldCell" key="NSTitleCell">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Box</string>
|
||||
<object class="NSFont" key="NSSupport" id="889265652">
|
||||
|
@ -571,7 +592,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="895817577"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="719007168">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">272629760</int>
|
||||
<string key="NSContents">Dates</string>
|
||||
<reference key="NSSupport" ref="27"/>
|
||||
|
@ -579,6 +600,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="895817577">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -589,7 +611,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="819483856"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="11774647">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Added:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -597,6 +619,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="819483856">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -607,7 +630,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="267672181"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="543771892">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
<object class="NSDateFormatter" key="NSFormatter" id="48399317">
|
||||
|
@ -625,6 +648,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="267672181">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -635,7 +659,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="72642357"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="816909811">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Completed:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -643,6 +667,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="72642357">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -653,7 +678,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="253816666"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="623696005">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
<object class="NSDateFormatter" key="NSFormatter" id="441447886">
|
||||
|
@ -671,6 +696,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSBox" id="428643281">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -681,7 +707,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="293727443"/>
|
||||
<string key="NSOffsets">{0, 0}</string>
|
||||
<object class="NSTextFieldCell" key="NSTitleCell">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Box</string>
|
||||
<reference key="NSSupport" ref="889265652"/>
|
||||
|
@ -705,7 +731,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="553434559"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="921833840">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">272629760</int>
|
||||
<string key="NSContents">Transfer</string>
|
||||
<reference key="NSSupport" ref="27"/>
|
||||
|
@ -713,6 +739,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="253816666">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -723,7 +750,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="988657593"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="336464347">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Last Activity:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -731,6 +758,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="988657593">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -741,7 +769,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="746679931"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="951805410">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
<object class="NSDateFormatter" key="NSFormatter" id="658343916">
|
||||
|
@ -759,6 +787,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSSegmentedControl" id="952075492">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -769,7 +798,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="615655994"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSSegmentedCell" key="NSCell" id="646128094">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">262144</int>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<string key="NSName">LucidaGrande</string>
|
||||
|
@ -793,6 +822,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<int key="NSSelectedSegment">-1</int>
|
||||
<int key="NSTrackingMode">1</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="630952996">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -803,7 +833,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="615576480"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="745598910">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Progress:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -811,6 +841,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="615576480">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -821,7 +852,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="206962076"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="1010432478">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -830,6 +861,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="882091406">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -840,7 +872,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="866921806"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="390866183">
|
||||
<int key="NSCellFlags">67239424</int>
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">71303168</int>
|
||||
<string key="NSContents">Failed DL:</string>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -848,6 +880,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="866921806">
|
||||
<reference key="NSNextResponder" ref="570476534"/>
|
||||
|
@ -858,7 +891,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSNextKeyView" ref="183905107"/>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="192165351">
|
||||
<int key="NSCellFlags">67239488</int>
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="26"/>
|
||||
|
@ -867,6 +900,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<reference key="NSBackgroundColor" ref="1003757738"/>
|
||||
<reference key="NSTextColor" ref="235971808"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{360, 335}</string>
|
||||
|
@ -1017,6 +1051,142 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
</object>
|
||||
<int key="connectionID">99</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fStateLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="553434559"/>
|
||||
</object>
|
||||
<int key="connectionID">100</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fProgressLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="630952996"/>
|
||||
</object>
|
||||
<int key="connectionID">101</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fHaveLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="206962076"/>
|
||||
</object>
|
||||
<int key="connectionID">102</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDownloadedLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="377137329"/>
|
||||
</object>
|
||||
<int key="connectionID">103</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fUploadedLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="1068112942"/>
|
||||
</object>
|
||||
<int key="connectionID">104</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fFailedDLLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="882091406"/>
|
||||
</object>
|
||||
<int key="connectionID">105</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fRatioLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="635463300"/>
|
||||
</object>
|
||||
<int key="connectionID">106</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fErrorLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="615655994"/>
|
||||
</object>
|
||||
<int key="connectionID">107</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDateAddedLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="895817577"/>
|
||||
</object>
|
||||
<int key="connectionID">108</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDateCompletedLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="267672181"/>
|
||||
</object>
|
||||
<int key="connectionID">109</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDateActivityLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="253816666"/>
|
||||
</object>
|
||||
<int key="connectionID">110</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fSeedTimeLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="393335924"/>
|
||||
</object>
|
||||
<int key="connectionID">111</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDownloadTimeLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="835637422"/>
|
||||
</object>
|
||||
<int key="connectionID">112</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fTransferSectionLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="381599958"/>
|
||||
</object>
|
||||
<int key="connectionID">113</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fDatesSectionLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="293727443"/>
|
||||
</object>
|
||||
<int key="connectionID">114</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fTimeSectionLabel</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="1017199380"/>
|
||||
</object>
|
||||
<int key="connectionID">116</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">fErrorScrollView</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="1015114756"/>
|
||||
</object>
|
||||
<int key="connectionID">118</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
|
@ -1603,6 +1773,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<string key="52.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<integer value="1" key="53.IBDateFormatterBehaviorMetadataKey"/>
|
||||
<string key="53.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<integer value="1" key="54.IBNSSegmentedControlInspectorSelectedSegmentMetadataKey"/>
|
||||
<string key="54.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="55.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="56.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
|
@ -1637,7 +1808,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">99</int>
|
||||
<int key="maxID">118</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
|
@ -1646,19 +1817,36 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<string key="superclassName">NSViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="fDateActivityField">NSTextField</string>
|
||||
<string key="fDateActivityLabel">NSTextField</string>
|
||||
<string key="fDateAddedField">NSTextField</string>
|
||||
<string key="fDateAddedLabel">NSTextField</string>
|
||||
<string key="fDateCompletedField">NSTextField</string>
|
||||
<string key="fDateCompletedLabel">NSTextField</string>
|
||||
<string key="fDatesSectionLabel">NSTextField</string>
|
||||
<string key="fDownloadTimeField">NSTextField</string>
|
||||
<string key="fDownloadTimeLabel">NSTextField</string>
|
||||
<string key="fDownloadedLabel">NSTextField</string>
|
||||
<string key="fDownloadedTotalField">NSTextField</string>
|
||||
<string key="fErrorLabel">NSTextField</string>
|
||||
<string key="fErrorMessageView">NSTextView</string>
|
||||
<string key="fErrorScrollView">NSScrollView</string>
|
||||
<string key="fFailedDLLabel">NSTextField</string>
|
||||
<string key="fFailedHashField">NSTextField</string>
|
||||
<string key="fHaveField">NSTextField</string>
|
||||
<string key="fHaveLabel">NSTextField</string>
|
||||
<string key="fPiecesControl">NSSegmentedControl</string>
|
||||
<string key="fPiecesView">PiecesView</string>
|
||||
<string key="fProgressField">NSTextField</string>
|
||||
<string key="fProgressLabel">NSTextField</string>
|
||||
<string key="fRatioField">NSTextField</string>
|
||||
<string key="fRatioLabel">NSTextField</string>
|
||||
<string key="fSeedTimeField">NSTextField</string>
|
||||
<string key="fSeedTimeLabel">NSTextField</string>
|
||||
<string key="fStateField">NSTextField</string>
|
||||
<string key="fStateLabel">NSTextField</string>
|
||||
<string key="fTimeSectionLabel">NSTextField</string>
|
||||
<string key="fTransferSectionLabel">NSTextField</string>
|
||||
<string key="fUploadedLabel">NSTextField</string>
|
||||
<string key="fUploadedTotalField">NSTextField</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
|
@ -1666,26 +1854,62 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<string key="name">fDateActivityField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDateActivityLabel">
|
||||
<string key="name">fDateActivityLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDateAddedField">
|
||||
<string key="name">fDateAddedField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDateAddedLabel">
|
||||
<string key="name">fDateAddedLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDateCompletedField">
|
||||
<string key="name">fDateCompletedField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDateCompletedLabel">
|
||||
<string key="name">fDateCompletedLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDatesSectionLabel">
|
||||
<string key="name">fDatesSectionLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDownloadTimeField">
|
||||
<string key="name">fDownloadTimeField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDownloadTimeLabel">
|
||||
<string key="name">fDownloadTimeLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDownloadedLabel">
|
||||
<string key="name">fDownloadedLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fDownloadedTotalField">
|
||||
<string key="name">fDownloadedTotalField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fErrorLabel">
|
||||
<string key="name">fErrorLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fErrorMessageView">
|
||||
<string key="name">fErrorMessageView</string>
|
||||
<string key="candidateClassName">NSTextView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fErrorScrollView">
|
||||
<string key="name">fErrorScrollView</string>
|
||||
<string key="candidateClassName">NSScrollView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fFailedDLLabel">
|
||||
<string key="name">fFailedDLLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fFailedHashField">
|
||||
<string key="name">fFailedHashField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
|
@ -1694,6 +1918,10 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<string key="name">fHaveField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fHaveLabel">
|
||||
<string key="name">fHaveLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fPiecesControl">
|
||||
<string key="name">fPiecesControl</string>
|
||||
<string key="candidateClassName">NSSegmentedControl</string>
|
||||
|
@ -1706,18 +1934,46 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
<string key="name">fProgressField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fProgressLabel">
|
||||
<string key="name">fProgressLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fRatioField">
|
||||
<string key="name">fRatioField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fRatioLabel">
|
||||
<string key="name">fRatioLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fSeedTimeField">
|
||||
<string key="name">fSeedTimeField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fSeedTimeLabel">
|
||||
<string key="name">fSeedTimeLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fStateField">
|
||||
<string key="name">fStateField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fStateLabel">
|
||||
<string key="name">fStateLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fTimeSectionLabel">
|
||||
<string key="name">fTimeSectionLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fTransferSectionLabel">
|
||||
<string key="name">fTransferSectionLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fUploadedLabel">
|
||||
<string key="name">fUploadedLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="fUploadedTotalField">
|
||||
<string key="name">fUploadedTotalField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
|
@ -1754,7 +2010,7 @@ AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
|||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
|
||||
<real value="1070" key="NS.object.0"/>
|
||||
<real value="1080" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
|
|
Loading…
Reference in a new issue