|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacControls", "MacControls\MacControls.csproj", "{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacControls", "MacControls\MacControls.csproj", "{18BFA1E8-DC95-43FA-B736-3E4B822527F0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
@ -9,9 +9,9 @@ Global
|
|||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{18BFA1E8-DC95-43FA-B736-3E4B822527F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{18BFA1E8-DC95-43FA-B736-3E4B822527F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{18BFA1E8-DC95-43FA-B736-3E4B822527F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{18BFA1E8-DC95-43FA-B736-3E4B822527F0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
|
@ -1,23 +1,47 @@
|
|||
using System;
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class AppDelegate : NSApplicationDelegate
|
||||
[Register ("AppDelegate")]
|
||||
public class AppDelegate : NSApplicationDelegate
|
||||
{
|
||||
MainWindowController mainWindowController;
|
||||
#region Computed Properties
|
||||
public int UntitledWindowCount { get; set;} =1;
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public AppDelegate ()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void DidFinishLaunching (NSNotification notification)
|
||||
{
|
||||
mainWindowController = new MainWindowController ();
|
||||
mainWindowController.Window.MakeKeyAndOrderFront (this);
|
||||
// Insert code here to initialize your application
|
||||
}
|
||||
|
||||
public override void WillTerminate (NSNotification notification)
|
||||
{
|
||||
// Insert code here to tear down your application
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Custom Actions
|
||||
[Export ("newDocument:")]
|
||||
void NewDocument (NSObject sender) {
|
||||
// Get new window
|
||||
var storyboard = NSStoryboard.FromName ("Main", null);
|
||||
var controller = storyboard.InstantiateControllerWithIdentifier ("MainWindow") as NSWindowController;
|
||||
|
||||
// Display
|
||||
controller.ShowWindow(this);
|
||||
|
||||
// Set the title
|
||||
controller.Window.Title = (++UntitledWindowCount == 1) ? "untitled" : string.Format ("untitled {0}", UntitledWindowCount);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
[global::Foundation.Register ("AppDelegate")]
|
||||
public partial class AppDelegate
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,39 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewButtons : AppKit.NSView
|
||||
public partial class ButtonsViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewButtons (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewButtons (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public ButtonsViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
base.ViewWillAppear ();
|
||||
|
||||
// Wireup events
|
||||
ButtonOutlet.Activated += (sender, e) => {
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewButtons")]
|
||||
partial class SubviewButtons
|
||||
[Register ("ButtonsViewController")]
|
||||
partial class ButtonsViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSButton ButtonOutlet { get; set; }
|
||||
|
@ -21,6 +21,9 @@ namespace MacControls
|
|||
[Outlet]
|
||||
AppKit.NSTextField FeedbackLabel { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSButton HelpButton { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSTextField LorumIpsum { get; set; }
|
||||
|
||||
|
@ -55,24 +58,29 @@ namespace MacControls
|
|||
ButtonOutlet = null;
|
||||
}
|
||||
|
||||
if (RoundedGradient != null) {
|
||||
RoundedGradient.Dispose ();
|
||||
RoundedGradient = null;
|
||||
}
|
||||
|
||||
if (DisclosureButton != null) {
|
||||
DisclosureButton.Dispose ();
|
||||
DisclosureButton = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (LorumIpsum != null) {
|
||||
LorumIpsum.Dispose ();
|
||||
LorumIpsum = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
if (RoundedGradient != null) {
|
||||
RoundedGradient.Dispose ();
|
||||
RoundedGradient = null;
|
||||
}
|
||||
|
||||
if (HelpButton != null) {
|
||||
HelpButton.Dispose ();
|
||||
HelpButton = null;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,39 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewChecksRadio : AppKit.NSView
|
||||
public partial class CheckboxViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewChecksRadio (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewChecksRadio (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public CheckboxViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
base.ViewWillAppear ();
|
||||
|
||||
// Wireup controls
|
||||
AdjustTime.Activated += (sender, e) => {
|
||||
|
@ -51,13 +36,12 @@ namespace MacControls
|
|||
TransportationWalking.Activated += (sender, e) => {
|
||||
FeedbackLabel.StringValue = "Walking Selected";
|
||||
};
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Button Actions
|
||||
partial void SelectCar (Foundation.NSObject sender) {
|
||||
Transportation.SelectCell(TransportationCar);
|
||||
TransportationCar.State = NSCellStateValue.On;
|
||||
FeedbackLabel.StringValue = "Car Selected";
|
||||
}
|
||||
#endregion
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewChecksRadio")]
|
||||
partial class SubviewChecksRadio
|
||||
[Register ("CheckboxViewController")]
|
||||
partial class CheckboxViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSButton AdjustTime { get; set; }
|
||||
|
@ -18,18 +18,12 @@ namespace MacControls
|
|||
[Outlet]
|
||||
AppKit.NSTextField FeedbackLabel { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSMatrix Transportation { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSButtonCell TransportationCar { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSButtonCell TransportationPublic { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSButtonCell TransportationType { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSButtonCell TransportationWalking { get; set; }
|
||||
|
||||
|
@ -38,31 +32,6 @@ namespace MacControls
|
|||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (Transportation != null) {
|
||||
Transportation.Dispose ();
|
||||
Transportation = null;
|
||||
}
|
||||
|
||||
if (TransportationType != null) {
|
||||
TransportationType.Dispose ();
|
||||
TransportationType = null;
|
||||
}
|
||||
|
||||
if (TransportationWalking != null) {
|
||||
TransportationWalking.Dispose ();
|
||||
TransportationWalking = null;
|
||||
}
|
||||
|
||||
if (TransportationPublic != null) {
|
||||
TransportationPublic.Dispose ();
|
||||
TransportationPublic = null;
|
||||
}
|
||||
|
||||
if (TransportationCar != null) {
|
||||
TransportationCar.Dispose ();
|
||||
TransportationCar = null;
|
||||
}
|
||||
|
||||
if (AdjustTime != null) {
|
||||
AdjustTime.Dispose ();
|
||||
AdjustTime = null;
|
||||
|
@ -72,6 +41,21 @@ namespace MacControls
|
|||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (TransportationCar != null) {
|
||||
TransportationCar.Dispose ();
|
||||
TransportationCar = null;
|
||||
}
|
||||
|
||||
if (TransportationPublic != null) {
|
||||
TransportationPublic.Dispose ();
|
||||
TransportationPublic = null;
|
||||
}
|
||||
|
||||
if (TransportationWalking != null) {
|
||||
TransportationWalking.Dispose ();
|
||||
TransportationWalking = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
using System;
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace AppKit
|
||||
{
|
||||
[Register("ReplaceViewSeque")]
|
||||
public class ReplaceViewSeque : NSStoryboardSegue
|
||||
{
|
||||
#region Constructors
|
||||
public ReplaceViewSeque() {
|
||||
|
||||
}
|
||||
|
||||
public ReplaceViewSeque (string identifier, NSObject sourceController, NSObject destinationController) : base(identifier,sourceController,destinationController) {
|
||||
|
||||
}
|
||||
|
||||
public ReplaceViewSeque (IntPtr handle) : base(handle) {
|
||||
}
|
||||
|
||||
public ReplaceViewSeque (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void Perform ()
|
||||
{
|
||||
// Cast the source and destination controllers
|
||||
var source = SourceController as NSViewController;
|
||||
var destination = DestinationController as NSViewController;
|
||||
|
||||
// Remove any existing view
|
||||
if (source.View.Subviews.Length > 0) {
|
||||
source.View.Subviews [0].RemoveFromSuperview ();
|
||||
}
|
||||
|
||||
// Adjust sizing and add new view
|
||||
destination.View.Frame = new CGRect(0 ,0 ,source.View.Frame.Width, source.View.Frame.Height);
|
||||
destination.View.AutoresizingMask = NSViewResizingMask.HeightSizable | NSViewResizingMask.WidthSizable;
|
||||
source.View.AddSubview(destination.View);
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class ContentViewController : NSViewController
|
||||
{
|
||||
public ContentViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewChecksRadioController")]
|
||||
partial class SubviewChecksRadioController
|
||||
[Register ("ContentViewController")]
|
||||
partial class ContentViewController
|
||||
{
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
|
@ -1,38 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewIndicatorControls : AppKit.NSView
|
||||
public partial class IndicatorViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewIndicatorControls (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewIndicatorControls (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public IndicatorViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
base.ViewWillAppear ();
|
||||
|
||||
// Start animation on progress bars
|
||||
Indeterminate.StartAnimation (this);
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewIndicatorControls")]
|
||||
partial class SubviewIndicatorControls
|
||||
[Register ("IndicatorViewController")]
|
||||
partial class IndicatorViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSProgressIndicator AsyncProgress { get; set; }
|
||||
|
@ -38,6 +38,26 @@ namespace MacControls
|
|||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (AsyncProgress != null) {
|
||||
AsyncProgress.Dispose ();
|
||||
AsyncProgress = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (Indeterminate != null) {
|
||||
Indeterminate.Dispose ();
|
||||
Indeterminate = null;
|
||||
}
|
||||
|
||||
if (LevelIndicator != null) {
|
||||
LevelIndicator.Dispose ();
|
||||
LevelIndicator = null;
|
||||
}
|
||||
|
||||
if (ProgressIndicator != null) {
|
||||
ProgressIndicator.Dispose ();
|
||||
ProgressIndicator = null;
|
||||
|
@ -52,26 +72,6 @@ namespace MacControls
|
|||
Relevance.Dispose ();
|
||||
Relevance = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (Indeterminate != null) {
|
||||
Indeterminate.Dispose ();
|
||||
Indeterminate = null;
|
||||
}
|
||||
|
||||
if (AsyncProgress != null) {
|
||||
AsyncProgress.Dispose ();
|
||||
AsyncProgress = null;
|
||||
}
|
||||
|
||||
if (LevelIndicator != null) {
|
||||
LevelIndicator.Dispose ();
|
||||
LevelIndicator = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,33 +2,32 @@
|
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>MacControls</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string></string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.your-company.MacControls</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>MacControls</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.xamarin.maccontrols</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.8</string>
|
||||
<string>10.11</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>kmullins</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>MainMenu</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>NSMainStoryboardFile</key>
|
||||
<string>Main</string>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Resources/Images.xcassets/AppIcons.appiconset</string>
|
||||
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -0,0 +1,83 @@
|
|||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class LeftViewController : NSViewController
|
||||
{
|
||||
#region Private Variables
|
||||
private SubviewType ViewType = SubviewType.None;
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public LeftViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Private Methods
|
||||
private void DisplaySubview(SubviewType type) {
|
||||
|
||||
// Is this view already displayed?
|
||||
if (ViewType == type) return;
|
||||
|
||||
// Save values
|
||||
ViewType = type;
|
||||
RaiseViewTypeChanged (type);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
|
||||
// Populate Source List
|
||||
SourceList.Initialize ();
|
||||
|
||||
var TableViews = new SourceListItem ("Control Type");
|
||||
TableViews.AddItem ("Buttons", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.Buttons);
|
||||
});
|
||||
TableViews.AddItem ("Checkboxes & Radio Buttons", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.CheckAndRadioButtons);
|
||||
});
|
||||
TableViews.AddItem ("Menu Controls", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.MenuControls);
|
||||
});
|
||||
TableViews.AddItem ("Selection Controls", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.SelectionControls);
|
||||
});
|
||||
TableViews.AddItem ("Indicator Controls", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.IndicatorControls);
|
||||
});
|
||||
TableViews.AddItem ("Text Controls", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.TextControls);
|
||||
});
|
||||
TableViews.AddItem ("Content Views", "tag.png", () => {
|
||||
DisplaySubview(SubviewType.ContentViews);
|
||||
});
|
||||
SourceList.AddItem (TableViews);
|
||||
|
||||
// Display Source List
|
||||
SourceList.ReloadData();
|
||||
SourceList.ExpandItem (null, true);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Events
|
||||
public delegate void ViewTypeChangedDelegate(SubviewType viewType);
|
||||
public event ViewTypeChangedDelegate ViewTypeChanged;
|
||||
|
||||
internal void RaiseViewTypeChanged(SubviewType type) {
|
||||
if (this.ViewTypeChanged != null)
|
||||
this.ViewTypeChanged (type);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -9,14 +9,11 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("MainWindow")]
|
||||
partial class MainWindow
|
||||
[Register ("LeftViewController")]
|
||||
partial class LeftViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.SourceListView SourceList { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSView ViewContainer { get; set; }
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
|
@ -24,11 +21,6 @@ namespace MacControls
|
|||
SourceList.Dispose ();
|
||||
SourceList = null;
|
||||
}
|
||||
|
||||
if (ViewContainer != null) {
|
||||
ViewContainer.Dispose ();
|
||||
ViewContainer = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<ProjectGuid>{87F4FA0E-0256-4260-9DB6-58A8A41BE8C1}</ProjectGuid>
|
||||
<ProjectGuid>{18BFA1E8-DC95-43FA-B736-3E4B822527F0}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>MacControls</RootNamespace>
|
||||
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
|
||||
|
@ -21,13 +21,14 @@
|
|||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<Profiling>true</Profiling>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<UseSGen>true</UseSGen>
|
||||
<IncludeMonoRuntime>false</IncludeMonoRuntime>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<CodeSigningKey>Mac Developer</CodeSigningKey>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>full</DebugType>
|
||||
|
@ -37,6 +38,7 @@
|
|||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<LinkMode>SdkOnly</LinkMode>
|
||||
<Profiling>false</Profiling>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<UseSGen>true</UseSGen>
|
||||
<IncludeMonoRuntime>true</IncludeMonoRuntime>
|
||||
|
@ -51,101 +53,80 @@
|
|||
<Reference Include="Xamarin.Mac" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Resources\" />
|
||||
<Folder Include="Sourcelist\" />
|
||||
<Folder Include="Enums\" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\Contents.json" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-128.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-128%402x.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-16.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-16%402x.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-256.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-256%402x.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-32.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-32%402x.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-512.png" />
|
||||
<ImageAsset Include="Resources\Images.xcassets\AppIcons.appiconset\AppIcon-512%402x.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="MainWindow.cs" />
|
||||
<Compile Include="MainWindow.designer.cs">
|
||||
<DependentUpon>MainWindow.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainWindowController.cs" />
|
||||
<Compile Include="MainWindowController.designer.cs">
|
||||
<DependentUpon>MainWindowController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<Compile Include="AppDelegate.designer.cs">
|
||||
<DependentUpon>AppDelegate.cs</DependentUpon>
|
||||
<Compile Include="SplitViewController.cs" />
|
||||
<Compile Include="SplitViewController.designer.cs">
|
||||
<DependentUpon>SplitViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Sourcelist\SourceListDataSource.cs" />
|
||||
<Compile Include="Sourcelist\SourceListDelegate.cs" />
|
||||
<Compile Include="Sourcelist\SourceListItem.cs" />
|
||||
<Compile Include="Sourcelist\SourceListView.cs" />
|
||||
<Compile Include="Enums\SubviewType.cs" />
|
||||
<Compile Include="SubviewButtons.cs" />
|
||||
<Compile Include="SubviewButtonsController.cs" />
|
||||
<Compile Include="SubviewButtons.designer.cs">
|
||||
<DependentUpon>SubviewButtons.cs</DependentUpon>
|
||||
<Compile Include="Classes\ReplaceViewSegue.cs" />
|
||||
<Compile Include="LeftViewController.cs" />
|
||||
<Compile Include="LeftViewController.designer.cs">
|
||||
<DependentUpon>LeftViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewButtonsController.designer.cs">
|
||||
<DependentUpon>SubviewButtonsController.cs</DependentUpon>
|
||||
<Compile Include="RightViewController.cs" />
|
||||
<Compile Include="RightViewController.designer.cs">
|
||||
<DependentUpon>RightViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewChecksRadio.cs" />
|
||||
<Compile Include="SubviewChecksRadioController.cs" />
|
||||
<Compile Include="SubviewChecksRadio.designer.cs">
|
||||
<DependentUpon>SubviewChecksRadio.cs</DependentUpon>
|
||||
<Compile Include="ButtonsViewController.cs" />
|
||||
<Compile Include="ButtonsViewController.designer.cs">
|
||||
<DependentUpon>ButtonsViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewChecksRadioController.designer.cs">
|
||||
<DependentUpon>SubviewChecksRadioController.cs</DependentUpon>
|
||||
<Compile Include="CheckboxViewController.cs" />
|
||||
<Compile Include="CheckboxViewController.designer.cs">
|
||||
<DependentUpon>CheckboxViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewMenuControls.cs" />
|
||||
<Compile Include="SubviewMenuControlsController.cs" />
|
||||
<Compile Include="SubviewMenuControls.designer.cs">
|
||||
<DependentUpon>SubviewMenuControls.cs</DependentUpon>
|
||||
<Compile Include="MenuViewController.cs" />
|
||||
<Compile Include="MenuViewController.designer.cs">
|
||||
<DependentUpon>MenuViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewMenuControlsController.designer.cs">
|
||||
<DependentUpon>SubviewMenuControlsController.cs</DependentUpon>
|
||||
<Compile Include="SelectionViewController.cs" />
|
||||
<Compile Include="SelectionViewController.designer.cs">
|
||||
<DependentUpon>SelectionViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewSelectionControls.cs" />
|
||||
<Compile Include="SubviewSelectionControlsController.cs" />
|
||||
<Compile Include="SubviewSelectionControls.designer.cs">
|
||||
<DependentUpon>SubviewSelectionControls.cs</DependentUpon>
|
||||
<Compile Include="IndicatorViewController.cs" />
|
||||
<Compile Include="IndicatorViewController.designer.cs">
|
||||
<DependentUpon>IndicatorViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewSelectionControlsController.designer.cs">
|
||||
<DependentUpon>SubviewSelectionControlsController.cs</DependentUpon>
|
||||
<Compile Include="TextViewController.cs" />
|
||||
<Compile Include="TextViewController.designer.cs">
|
||||
<DependentUpon>TextViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewIndicatorControls.cs" />
|
||||
<Compile Include="SubviewIndicatorControlsController.cs" />
|
||||
<Compile Include="SubviewIndicatorControls.designer.cs">
|
||||
<DependentUpon>SubviewIndicatorControls.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewIndicatorControlsController.designer.cs">
|
||||
<DependentUpon>SubviewIndicatorControlsController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewTextControls.cs" />
|
||||
<Compile Include="SubviewTextControlsController.cs" />
|
||||
<Compile Include="SubviewTextControls.designer.cs">
|
||||
<DependentUpon>SubviewTextControls.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewTextControlsController.designer.cs">
|
||||
<DependentUpon>SubviewTextControlsController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewContentViews.cs" />
|
||||
<Compile Include="SubviewContentViewsController.cs" />
|
||||
<Compile Include="SubviewContentViews.designer.cs">
|
||||
<DependentUpon>SubviewContentViews.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SubviewContentViewsController.designer.cs">
|
||||
<DependentUpon>SubviewContentViewsController.cs</DependentUpon>
|
||||
<Compile Include="ContentViewController.cs" />
|
||||
<Compile Include="ContentViewController.designer.cs">
|
||||
<DependentUpon>ContentViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InterfaceDefinition Include="MainWindow.xib" />
|
||||
<InterfaceDefinition Include="MainMenu.xib" />
|
||||
<InterfaceDefinition Include="SubviewButtons.xib" />
|
||||
<InterfaceDefinition Include="SubviewChecksRadio.xib" />
|
||||
<InterfaceDefinition Include="SubviewMenuControls.xib" />
|
||||
<InterfaceDefinition Include="SubviewSelectionControls.xib" />
|
||||
<InterfaceDefinition Include="SubviewIndicatorControls.xib" />
|
||||
<InterfaceDefinition Include="SubviewTextControls.xib" />
|
||||
<InterfaceDefinition Include="SubviewContentViews.xib" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
<InterfaceDefinition Include="Main.storyboard" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<Folder Include="Sourcelist\" />
|
||||
<Folder Include="Enums\" />
|
||||
<Folder Include="Classes\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BundleResource Include="Resources\tag.png" />
|
||||
<BundleResource Include="Resources\tag%402x.png" />
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
using System;
|
||||
|
||||
using AppKit;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
|
|
|
@ -1,667 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="6205" systemVersion="13E28" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
|
||||
<dependencies>
|
||||
<deployment defaultVersion="101000" identifier="macosx" />
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="6205" />
|
||||
</dependencies>
|
||||
<objects>
|
||||
<customObject id="-2" userLabel="File's Owner" customClass="NSApplication">
|
||||
<connections>
|
||||
<outlet property="delegate" destination="Voe-Tx-rLC" id="GzC-gU-4Uq" />
|
||||
</connections>
|
||||
</customObject>
|
||||
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder" />
|
||||
<customObject id="-3" userLabel="Application" customClass="NSObject" />
|
||||
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" />
|
||||
<customObject id="YLy-65-1bz" customClass="NSFontManager" />
|
||||
<menu title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
|
||||
<items>
|
||||
<menuItem title="MacControls" id="1Xt-HY-uBw">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="MacControls" systemMenu="apple" id="uQy-DD-JDr">
|
||||
<items>
|
||||
<menuItem title="About MacControls" id="5kV-Vb-QxS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="orderFrontStandardAboutPanel:" target="-1" id="Exp-CZ-Vem" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="VOq-y0-SEH" />
|
||||
<menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW" />
|
||||
<menuItem isSeparatorItem="YES" id="wFC-TO-SCJ" />
|
||||
<menuItem title="Services" id="NMo-om-nkz">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Services" systemMenu="services" id="hz9-B4-Xy5" />
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="4je-JR-u6R" />
|
||||
<menuItem title="Hide MacControls" keyEquivalent="h" id="Olw-nP-bQN">
|
||||
<connections>
|
||||
<action selector="hide:" target="-1" id="PnN-Uc-m68" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Hide Others" keyEquivalent="h" id="Vdr-fp-XzO">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="hideOtherApplications:" target="-1" id="VT4-aY-XCT" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Show All" id="Kd2-mp-pUS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="unhideAllApplications:" target="-1" id="Dhg-Le-xox" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="kCx-OE-vgT" />
|
||||
<menuItem title="Quit MacControls" keyEquivalent="q" id="4sb-4s-VLi">
|
||||
<connections>
|
||||
<action selector="terminate:" target="-1" id="Te7-pn-YzF" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="File" id="dMs-cI-mzQ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="File" id="bib-Uj-vzu">
|
||||
<items>
|
||||
<menuItem title="New" keyEquivalent="n" id="Was-JA-tGl">
|
||||
<connections>
|
||||
<action selector="newDocument:" target="-1" id="4Si-XN-c54" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Open…" keyEquivalent="o" id="IAo-SY-fd9">
|
||||
<connections>
|
||||
<action selector="openDocument:" target="-1" id="bVn-NM-KNZ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Open Recent" id="tXI-mr-wws">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="oas-Oc-fiZ">
|
||||
<items>
|
||||
<menuItem title="Clear Menu" id="vNY-rz-j42">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="clearRecentDocuments:" target="-1" id="Daa-9d-B3U" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="m54-Is-iLE" />
|
||||
<menuItem title="Close" keyEquivalent="w" id="DVo-aG-piG">
|
||||
<connections>
|
||||
<action selector="performClose:" target="-1" id="HmO-Ls-i7Q" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save…" keyEquivalent="s" id="pxx-59-PXV">
|
||||
<connections>
|
||||
<action selector="saveDocument:" target="-1" id="teZ-XB-qJY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save As…" keyEquivalent="S" id="Bw7-FT-i3A">
|
||||
<connections>
|
||||
<action selector="saveDocumentAs:" target="-1" id="mDf-zr-I0C" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Revert to Saved" id="KaW-ft-85H">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="revertDocumentToSaved:" target="-1" id="iJ3-Pv-kwq" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="aJh-i4-bef" />
|
||||
<menuItem title="Page Setup…" keyEquivalent="P" id="qIS-W8-SiK">
|
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="runPageLayout:" target="-1" id="Din-rz-gC5" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Print…" keyEquivalent="p" id="aTl-1u-JFS">
|
||||
<connections>
|
||||
<action selector="print:" target="-1" id="qaZ-4w-aoO" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Edit" id="5QF-Oa-p0T">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Edit" id="W48-6f-4Dl">
|
||||
<items>
|
||||
<menuItem title="Undo" keyEquivalent="z" id="dRJ-4n-Yzg">
|
||||
<connections>
|
||||
<action selector="undo:" target="-1" id="M6e-cu-g7V" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Redo" keyEquivalent="Z" id="6dh-zS-Vam">
|
||||
<connections>
|
||||
<action selector="redo:" target="-1" id="oIA-Rs-6OD" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="WRV-NI-Exz" />
|
||||
<menuItem title="Cut" keyEquivalent="x" id="uRl-iY-unG">
|
||||
<connections>
|
||||
<action selector="cut:" target="-1" id="YJe-68-I9s" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Copy" keyEquivalent="c" id="x3v-GG-iWU">
|
||||
<connections>
|
||||
<action selector="copy:" target="-1" id="G1f-GL-Joy" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste" keyEquivalent="v" id="gVA-U4-sdL">
|
||||
<connections>
|
||||
<action selector="paste:" target="-1" id="UvS-8e-Qdg" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="WeT-3V-zwk">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteAsPlainText:" target="-1" id="cEh-KX-wJQ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Delete" id="pa3-QI-u2k">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="delete:" target="-1" id="0Mk-Ml-PaM" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Select All" keyEquivalent="a" id="Ruw-6m-B2m">
|
||||
<connections>
|
||||
<action selector="selectAll:" target="-1" id="VNm-Mi-diN" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="uyl-h8-XO2" />
|
||||
<menuItem title="Find" id="4EN-yA-p0u">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Find" id="1b7-l0-nxx">
|
||||
<items>
|
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="Xz5-n4-O0W">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="-1" id="cD7-Qs-BN4" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="YEy-JH-Tfz">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="-1" id="WD3-Gg-5AJ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="q09-fT-Sye">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="-1" id="NDo-RZ-v9R" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="OwM-mh-QMV">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="-1" id="HOh-sY-3ay" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="buJ-ug-pKt">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="-1" id="U76-nv-p5D" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="S0p-oC-mLd">
|
||||
<connections>
|
||||
<action selector="centerSelectionInVisibleArea:" target="-1" id="IOG-6D-g5B" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Spelling and Grammar" id="Dv1-io-Yv7">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Spelling" id="3IN-sU-3Bg">
|
||||
<items>
|
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="HFo-cy-zxI">
|
||||
<connections>
|
||||
<action selector="showGuessPanel:" target="-1" id="vFj-Ks-hy3" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="hz2-CU-CR7">
|
||||
<connections>
|
||||
<action selector="checkSpelling:" target="-1" id="fz7-VC-reM" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="bNw-od-mp5" />
|
||||
<menuItem title="Check Spelling While Typing" id="rbD-Rh-wIN">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleContinuousSpellChecking:" target="-1" id="7w6-Qz-0kB" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Grammar With Spelling" id="mK6-2p-4JG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleGrammarChecking:" target="-1" id="muD-Qn-j4w" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Correct Spelling Automatically" id="78Y-hA-62v">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticSpellingCorrection:" target="-1" id="2lM-Qi-WAP" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Substitutions" id="9ic-FL-obx">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Substitutions" id="FeM-D8-WVr">
|
||||
<items>
|
||||
<menuItem title="Show Substitutions" id="z6F-FW-3nz">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="orderFrontSubstitutionsPanel:" target="-1" id="oku-mr-iSq" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="gPx-C9-uUO" />
|
||||
<menuItem title="Smart Copy/Paste" id="9yt-4B-nSM">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleSmartInsertDelete:" target="-1" id="3IJ-Se-DZD" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Quotes" id="hQb-2v-fYv">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="-1" id="ptq-xd-QOA" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Dashes" id="rgM-f4-ycn">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDashSubstitution:" target="-1" id="oCt-pO-9gS" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Links" id="cwL-P1-jid">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticLinkDetection:" target="-1" id="Gip-E3-Fov" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Data Detectors" id="tRr-pd-1PS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDataDetection:" target="-1" id="R1I-Nq-Kbl" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Text Replacement" id="HFQ-gK-NFA">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticTextReplacement:" target="-1" id="DvP-Fe-Py6" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Transformations" id="2oI-Rn-ZJC">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Transformations" id="c8a-y6-VQd">
|
||||
<items>
|
||||
<menuItem title="Make Upper Case" id="vmV-6d-7jI">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="uppercaseWord:" target="-1" id="sPh-Tk-edu" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Make Lower Case" id="d9M-CD-aMd">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="lowercaseWord:" target="-1" id="iUZ-b5-hil" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Capitalize" id="UEZ-Bs-lqG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="capitalizeWord:" target="-1" id="26H-TL-nsh" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Speech" id="xrE-MZ-jX0">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Speech" id="3rS-ZA-NoH">
|
||||
<items>
|
||||
<menuItem title="Start Speaking" id="Ynk-f8-cLZ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="startSpeaking:" target="-1" id="654-Ng-kyl" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Stop Speaking" id="Oyz-dy-DGm">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="stopSpeaking:" target="-1" id="dX8-6p-jy9" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Format" id="jxT-CU-nIS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Format" id="GEO-Iw-cKr">
|
||||
<items>
|
||||
<menuItem title="Font" id="Gi5-1S-RQB">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Font" systemMenu="font" id="aXa-aM-Jaq">
|
||||
<items>
|
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="Q5e-8K-NDq">
|
||||
<connections>
|
||||
<action selector="orderFrontFontPanel:" target="YLy-65-1bz" id="WHr-nq-2xA" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="GB9-OM-e27">
|
||||
<connections>
|
||||
<action selector="addFontTrait:" target="YLy-65-1bz" id="hqk-hr-sYV" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="Vjx-xi-njq">
|
||||
<connections>
|
||||
<action selector="addFontTrait:" target="YLy-65-1bz" id="IHV-OB-c03" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Underline" keyEquivalent="u" id="WRG-CD-K1S">
|
||||
<connections>
|
||||
<action selector="underline:" target="-1" id="FYS-2b-JAY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="5gT-KC-WSO" />
|
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="Ptp-SP-VEL">
|
||||
<connections>
|
||||
<action selector="modifyFont:" target="YLy-65-1bz" id="Uc7-di-UnL" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="i1d-Er-qST">
|
||||
<connections>
|
||||
<action selector="modifyFont:" target="YLy-65-1bz" id="HcX-Lf-eNd" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="kx3-Dk-x3B" />
|
||||
<menuItem title="Kern" id="jBQ-r6-VK2">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Kern" id="tlD-Oa-oAM">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="GUa-eO-cwY">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useStandardKerning:" target="-1" id="6dk-9l-Ckg" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="cDB-IK-hbR">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="turnOffKerning:" target="-1" id="U8a-gz-Maa" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Tighten" id="46P-cB-AYj">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="tightenKerning:" target="-1" id="hr7-Nz-8ro" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Loosen" id="ogc-rX-tC1">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="loosenKerning:" target="-1" id="8i4-f9-FKE" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Ligatures" id="o6e-r0-MWq">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Ligatures" id="w0m-vy-SC9">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="agt-UL-0e3">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useStandardLigatures:" target="-1" id="7uR-wd-Dx6" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="J7y-lM-qPV">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="turnOffLigatures:" target="-1" id="iX2-gA-Ilz" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use All" id="xQD-1f-W4t">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useAllLigatures:" target="-1" id="KcB-kA-TuK" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Baseline" id="OaQ-X3-Vso">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Baseline" id="ijk-EB-dga">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="3Om-Ey-2VK">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="unscript:" target="-1" id="0vZ-95-Ywn" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Superscript" id="Rqc-34-cIF">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="superscript:" target="-1" id="3qV-fo-wpU" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Subscript" id="I0S-gh-46l">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="subscript:" target="-1" id="Q6W-4W-IGz" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Raise" id="2h7-ER-AoG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="raiseBaseline:" target="-1" id="4sk-31-7Q9" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Lower" id="1tx-W0-xDw">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="lowerBaseline:" target="-1" id="OF1-bc-KW4" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="Ndw-q3-faq" />
|
||||
<menuItem title="Show Colors" keyEquivalent="C" id="bgn-CT-cEk">
|
||||
<connections>
|
||||
<action selector="orderFrontColorPanel:" target="-1" id="mSX-Xz-DV3" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="iMs-zA-UFJ" />
|
||||
<menuItem title="Copy Style" keyEquivalent="c" id="5Vv-lz-BsD">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="copyFont:" target="-1" id="GJO-xA-L4q" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste Style" keyEquivalent="v" id="vKC-jM-MkH">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteFont:" target="-1" id="JfD-CL-leO" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Text" id="Fal-I4-PZk">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Text" id="d9c-me-L2H">
|
||||
<items>
|
||||
<menuItem title="Align Left" keyEquivalent="{" id="ZM1-6Q-yy1">
|
||||
<connections>
|
||||
<action selector="alignLeft:" target="-1" id="zUv-R1-uAa" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Center" keyEquivalent="|" id="VIY-Ag-zcb">
|
||||
<connections>
|
||||
<action selector="alignCenter:" target="-1" id="spX-mk-kcS" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Justify" id="J5U-5w-g23">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="alignJustified:" target="-1" id="ljL-7U-jND" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Align Right" keyEquivalent="}" id="wb2-vD-lq4">
|
||||
<connections>
|
||||
<action selector="alignRight:" target="-1" id="r48-bG-YeY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="4s2-GY-VfK" />
|
||||
<menuItem title="Writing Direction" id="H1b-Si-o9J">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Writing Direction" id="8mr-sm-Yjd">
|
||||
<items>
|
||||
<menuItem title="Paragraph" enabled="NO" id="ZvO-Gk-QUH">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
</menuItem>
|
||||
<menuItem id="YGs-j5-SAR">
|
||||
<string key="title"> Default</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionNatural:" target="-1" id="qtV-5e-UBP" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="Lbh-J2-qVU">
|
||||
<string key="title"> Left to Right</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="-1" id="S0X-9S-QSf" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="jFq-tB-4Kx">
|
||||
<string key="title"> Right to Left</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="-1" id="5fk-qB-AqJ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="swp-gr-a21" />
|
||||
<menuItem title="Selection" enabled="NO" id="cqv-fj-IhA">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
</menuItem>
|
||||
<menuItem id="Nop-cj-93Q">
|
||||
<string key="title"> Default</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionNatural:" target="-1" id="lPI-Se-ZHp" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="BgM-ve-c93">
|
||||
<string key="title"> Left to Right</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="-1" id="caW-Bv-w94" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="RB4-Sm-HuC">
|
||||
<string key="title"> Right to Left</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="-1" id="EXD-6r-ZUu" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="fKy-g9-1gm" />
|
||||
<menuItem title="Show Ruler" id="vLm-3I-IUL">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleRuler:" target="-1" id="FOx-HJ-KwY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="MkV-Pr-PK5">
|
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="copyRuler:" target="-1" id="71i-fW-3W2" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="LVM-kO-fVI">
|
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteRuler:" target="-1" id="cSh-wd-qM2" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="View" id="H8h-7b-M4v">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="View" id="HyV-fh-RgO">
|
||||
<items>
|
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="snW-S8-Cw5">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="toggleToolbarShown:" target="-1" id="BXY-wc-z0C" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Customize Toolbar…" id="1UK-8n-QPP">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="runToolbarCustomizationPalette:" target="-1" id="pQI-g3-MTW" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Window" id="aUF-d1-5bR">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Window" systemMenu="window" id="Td7-aD-5lo">
|
||||
<items>
|
||||
<menuItem title="Minimize" keyEquivalent="m" id="OY7-WF-poV">
|
||||
<connections>
|
||||
<action selector="performMiniaturize:" target="-1" id="VwT-WD-YPe" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Zoom" id="R4o-n2-Eq4">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="performZoom:" target="-1" id="DIl-cC-cCs" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="eu3-7i-yIM" />
|
||||
<menuItem title="Bring All to Front" id="LE2-aR-0XJ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="arrangeInFront:" target="-1" id="DRN-fu-gQh" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Help" id="wpr-3q-Mcd">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Help" systemMenu="help" id="F2S-fz-NVQ">
|
||||
<items>
|
||||
<menuItem title="MacControls Help" keyEquivalent="?" id="FKE-Sm-Kum">
|
||||
<connections>
|
||||
<action selector="showHelp:" target="-1" id="y7X-2Q-9no" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</objects>
|
||||
</document>
|
|
@ -1,98 +0,0 @@
|
|||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class MainWindow : NSWindow
|
||||
{
|
||||
#region Private Variables
|
||||
private SubviewType ViewType = SubviewType.None;
|
||||
private NSViewController SubviewController = null;
|
||||
private NSView Subview = null;
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public MainWindow (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
||||
[Export ("initWithCoder:")]
|
||||
public MainWindow (NSCoder coder) : base (coder)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private Methods
|
||||
private void DisplaySubview(NSViewController controller, SubviewType type) {
|
||||
|
||||
// Is this view already displayed?
|
||||
if (ViewType == type) return;
|
||||
|
||||
// Is there a view already being displayed?
|
||||
if (Subview != null) {
|
||||
// Yes, remove it from the view
|
||||
Subview.RemoveFromSuperview ();
|
||||
|
||||
// Release memory
|
||||
Subview = null;
|
||||
SubviewController = null;
|
||||
}
|
||||
|
||||
// Save values
|
||||
ViewType = type;
|
||||
SubviewController = controller;
|
||||
Subview = controller.View;
|
||||
|
||||
// Define frame and display
|
||||
Subview.Frame = new CGRect (0, 0, ViewContainer.Frame.Width, ViewContainer.Frame.Height);
|
||||
ViewContainer.AddSubview (Subview);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
|
||||
// Populate Source List
|
||||
SourceList.Initialize ();
|
||||
|
||||
var TableViews = new SourceListItem ("Control Type");
|
||||
TableViews.AddItem ("Buttons", "tag.png", () => {
|
||||
DisplaySubview(new SubviewButtonsController(), SubviewType.Buttons);
|
||||
});
|
||||
TableViews.AddItem ("Checkboxes & Radio Buttons", "tag.png", () => {
|
||||
DisplaySubview(new SubviewChecksRadioController(), SubviewType.CheckAndRadioButtons);
|
||||
});
|
||||
TableViews.AddItem ("Menu Controls", "tag.png", () => {
|
||||
DisplaySubview(new SubviewMenuControlsController(), SubviewType.MenuControls);
|
||||
});
|
||||
TableViews.AddItem ("Selection Controls", "tag.png", () => {
|
||||
DisplaySubview(new SubviewSelectionControlsController(), SubviewType.SelectionControls);
|
||||
});
|
||||
TableViews.AddItem ("Indicator Controls", "tag.png", () => {
|
||||
DisplaySubview(new SubviewIndicatorControlsController(), SubviewType.IndicatorControls);
|
||||
});
|
||||
TableViews.AddItem ("Text Controls", "tag.png", () => {
|
||||
DisplaySubview(new SubviewTextControlsController(), SubviewType.IndicatorControls);
|
||||
});
|
||||
TableViews.AddItem ("Content Views", "tag.png", () => {
|
||||
DisplaySubview(new SubviewContentViewsController(), SubviewType.ContentViews);
|
||||
});
|
||||
SourceList.AddItem (TableViews);
|
||||
|
||||
|
||||
// Display Source List
|
||||
SourceList.ReloadData();
|
||||
SourceList.ExpandItem (null, true);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -1,940 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSImageCell</string>
|
||||
<string>NSImageView</string>
|
||||
<string>NSOutlineView</string>
|
||||
<string>NSScrollView</string>
|
||||
<string>NSScroller</string>
|
||||
<string>NSSplitView</string>
|
||||
<string>NSTableCellView</string>
|
||||
<string>NSTableColumn</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
<string>NSToolbar</string>
|
||||
<string>NSToolbarFlexibleSpaceItem</string>
|
||||
<string>NSToolbarItem</string>
|
||||
<string>NSToolbarSpaceItem</string>
|
||||
<string>NSView</string>
|
||||
<string>NSWindowTemplate</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">MainWindowController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSWindowTemplate" id="748157544">
|
||||
<int key="NSWindowStyleMask">15</int>
|
||||
<int key="NSWindowBacking">2</int>
|
||||
<string key="NSWindowRect">{{32, 404}, {606, 354}}</string>
|
||||
<int key="NSWTFlags">611844096</int>
|
||||
<string key="NSWindowTitle">Standard Controls</string>
|
||||
<string key="NSWindowClass">MainWindow</string>
|
||||
<object class="NSToolbar" key="NSViewClass" id="789203754">
|
||||
<string key="NSToolbarIdentifier">920BC61D-5DE9-4B26-B4B2-23DAF885D967</string>
|
||||
<nil key="NSToolbarDelegate"/>
|
||||
<bool key="NSToolbarPrefersToBeShown">YES</bool>
|
||||
<bool key="NSToolbarShowsBaselineSeparator">YES</bool>
|
||||
<bool key="NSToolbarAllowsUserCustomization">YES</bool>
|
||||
<bool key="NSToolbarAutosavesConfiguration">NO</bool>
|
||||
<int key="NSToolbarDisplayMode">1</int>
|
||||
<int key="NSToolbarSizeMode">1</int>
|
||||
<dictionary class="NSMutableDictionary" key="NSToolbarIBIdentifiedItems">
|
||||
<object class="NSToolbarFlexibleSpaceItem" key="NSToolbarFlexibleSpaceItem" id="43241544">
|
||||
<string key="NSToolbarItemIdentifier">NSToolbarFlexibleSpaceItem</string>
|
||||
<string key="NSToolbarItemLabel"/>
|
||||
<string key="NSToolbarItemPaletteLabel">Flexible Space</string>
|
||||
<nil key="NSToolbarItemToolTip"/>
|
||||
<nil key="NSToolbarItemView"/>
|
||||
<nil key="NSToolbarItemImage"/>
|
||||
<nil key="NSToolbarItemTarget"/>
|
||||
<nil key="NSToolbarItemAction"/>
|
||||
<string key="NSToolbarItemMinSize">{1, 5}</string>
|
||||
<string key="NSToolbarItemMaxSize">{20000, 32}</string>
|
||||
<bool key="NSToolbarItemEnabled">YES</bool>
|
||||
<bool key="NSToolbarItemAutovalidates">YES</bool>
|
||||
<int key="NSToolbarItemTag">-1</int>
|
||||
<bool key="NSToolbarIsUserRemovable">YES</bool>
|
||||
<int key="NSToolbarItemVisibilityPriority">0</int>
|
||||
<object class="NSMenuItem" key="NSToolbarItemMenuFormRepresentation">
|
||||
<bool key="NSIsDisabled">YES</bool>
|
||||
<bool key="NSIsSeparator">YES</bool>
|
||||
<string key="NSTitle"/>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<object class="NSCustomResource" key="NSOnImage" id="70297967">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSMenuCheckmark</string>
|
||||
</object>
|
||||
<object class="NSCustomResource" key="NSMixedImage" id="664535428">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSMenuMixedState</string>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSToolbarItem" key="NSToolbarPrintItem" id="225466920">
|
||||
<string key="NSToolbarItemIdentifier">NSToolbarPrintItem</string>
|
||||
<string key="NSToolbarItemLabel">Print</string>
|
||||
<string key="NSToolbarItemPaletteLabel">Print</string>
|
||||
<string key="NSToolbarItemToolTip">Print</string>
|
||||
<nil key="NSToolbarItemView"/>
|
||||
<object class="NSCustomResource" key="NSToolbarItemImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSToolbarPrint</string>
|
||||
</object>
|
||||
<nil key="NSToolbarItemTarget"/>
|
||||
<string key="NSToolbarItemAction">printDocument:</string>
|
||||
<string key="NSToolbarItemMinSize">{0, 0}</string>
|
||||
<string key="NSToolbarItemMaxSize">{0, 0}</string>
|
||||
<bool key="NSToolbarItemEnabled">YES</bool>
|
||||
<bool key="NSToolbarItemAutovalidates">YES</bool>
|
||||
<int key="NSToolbarItemTag">-1</int>
|
||||
<bool key="NSToolbarIsUserRemovable">YES</bool>
|
||||
<int key="NSToolbarItemVisibilityPriority">0</int>
|
||||
</object>
|
||||
<object class="NSToolbarItem" key="NSToolbarShowColorsItem" id="1019800403">
|
||||
<string key="NSToolbarItemIdentifier">NSToolbarShowColorsItem</string>
|
||||
<string key="NSToolbarItemLabel">Colors</string>
|
||||
<string key="NSToolbarItemPaletteLabel">Colors</string>
|
||||
<string key="NSToolbarItemToolTip">Show Color Panel</string>
|
||||
<nil key="NSToolbarItemView"/>
|
||||
<object class="NSCustomResource" key="NSToolbarItemImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSToolbarShowColors</string>
|
||||
</object>
|
||||
<nil key="NSToolbarItemTarget"/>
|
||||
<string key="NSToolbarItemAction">orderFrontColorPanel:</string>
|
||||
<string key="NSToolbarItemMinSize">{0, 0}</string>
|
||||
<string key="NSToolbarItemMaxSize">{0, 0}</string>
|
||||
<bool key="NSToolbarItemEnabled">YES</bool>
|
||||
<bool key="NSToolbarItemAutovalidates">YES</bool>
|
||||
<int key="NSToolbarItemTag">-1</int>
|
||||
<bool key="NSToolbarIsUserRemovable">YES</bool>
|
||||
<int key="NSToolbarItemVisibilityPriority">0</int>
|
||||
</object>
|
||||
<object class="NSToolbarItem" key="NSToolbarShowFontsItem" id="899100446">
|
||||
<string key="NSToolbarItemIdentifier">NSToolbarShowFontsItem</string>
|
||||
<string key="NSToolbarItemLabel">Fonts</string>
|
||||
<string key="NSToolbarItemPaletteLabel">Fonts</string>
|
||||
<string key="NSToolbarItemToolTip">Show Font Panel</string>
|
||||
<nil key="NSToolbarItemView"/>
|
||||
<object class="NSCustomResource" key="NSToolbarItemImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSToolbarShowFonts</string>
|
||||
</object>
|
||||
<nil key="NSToolbarItemTarget"/>
|
||||
<string key="NSToolbarItemAction">orderFrontFontPanel:</string>
|
||||
<string key="NSToolbarItemMinSize">{0, 0}</string>
|
||||
<string key="NSToolbarItemMaxSize">{0, 0}</string>
|
||||
<bool key="NSToolbarItemEnabled">YES</bool>
|
||||
<bool key="NSToolbarItemAutovalidates">YES</bool>
|
||||
<int key="NSToolbarItemTag">-1</int>
|
||||
<bool key="NSToolbarIsUserRemovable">YES</bool>
|
||||
<int key="NSToolbarItemVisibilityPriority">0</int>
|
||||
</object>
|
||||
<object class="NSToolbarSpaceItem" key="NSToolbarSpaceItem" id="743307257">
|
||||
<string key="NSToolbarItemIdentifier">NSToolbarSpaceItem</string>
|
||||
<string key="NSToolbarItemLabel"/>
|
||||
<string key="NSToolbarItemPaletteLabel">Space</string>
|
||||
<nil key="NSToolbarItemToolTip"/>
|
||||
<nil key="NSToolbarItemView"/>
|
||||
<nil key="NSToolbarItemImage"/>
|
||||
<nil key="NSToolbarItemTarget"/>
|
||||
<nil key="NSToolbarItemAction"/>
|
||||
<string key="NSToolbarItemMinSize">{32, 5}</string>
|
||||
<string key="NSToolbarItemMaxSize">{32, 10000}</string>
|
||||
<bool key="NSToolbarItemEnabled">YES</bool>
|
||||
<bool key="NSToolbarItemAutovalidates">YES</bool>
|
||||
<int key="NSToolbarItemTag">-1</int>
|
||||
<bool key="NSToolbarIsUserRemovable">YES</bool>
|
||||
<int key="NSToolbarItemVisibilityPriority">0</int>
|
||||
<object class="NSMenuItem" key="NSToolbarItemMenuFormRepresentation">
|
||||
<bool key="NSIsDisabled">YES</bool>
|
||||
<bool key="NSIsSeparator">YES</bool>
|
||||
<string key="NSTitle"/>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="70297967"/>
|
||||
<reference key="NSMixedImage" ref="664535428"/>
|
||||
</object>
|
||||
</object>
|
||||
</dictionary>
|
||||
<array key="NSToolbarIBAllowedItems">
|
||||
<reference ref="1019800403"/>
|
||||
<reference ref="899100446"/>
|
||||
<reference ref="225466920"/>
|
||||
<reference ref="743307257"/>
|
||||
<reference ref="43241544"/>
|
||||
</array>
|
||||
<array key="NSToolbarIBDefaultItems">
|
||||
<reference ref="1019800403"/>
|
||||
<reference ref="899100446"/>
|
||||
<reference ref="43241544"/>
|
||||
<reference ref="225466920"/>
|
||||
</array>
|
||||
<array key="NSToolbarIBSelectableItems" id="0"/>
|
||||
</object>
|
||||
<nil key="NSUserInterfaceItemIdentifier"/>
|
||||
<string key="NSWindowContentMinSize">{606, 354}</string>
|
||||
<object class="NSView" key="NSWindowView" id="312036702">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSSplitView" id="117095692">
|
||||
<reference key="NSNextResponder" ref="312036702"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSCustomView" id="640279782">
|
||||
<reference key="NSNextResponder" ref="117095692"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSScrollView" id="244314487">
|
||||
<reference key="NSNextResponder" ref="640279782"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSClipView" id="679348653">
|
||||
<reference key="NSNextResponder" ref="244314487"/>
|
||||
<int key="NSvFlags">2322</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSOutlineView" id="429416096">
|
||||
<reference key="NSNextResponder" ref="679348653"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTableCellView" id="411750438">
|
||||
<reference key="NSNextResponder" ref="429416096"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="416931300">
|
||||
<reference key="NSNextResponder" ref="411750438"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{0, 1}, {179, 14}}</string>
|
||||
<reference key="NSSuperview" ref="411750438"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="516599839"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:104</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="804447039">
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents">HEADER CELL</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">11</double>
|
||||
<int key="NSfFlags">3357</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:104</string>
|
||||
<reference key="NSControlView" ref="416931300"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="880760214">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor" id="658489791">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="323714999">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">headerColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{1, 1}, {179, 17}}</string>
|
||||
<reference key="NSSuperview" ref="429416096"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="416931300"/>
|
||||
<string key="NSReuseIdentifierKey">HeaderCell</string>
|
||||
</object>
|
||||
<object class="NSTableCellView" id="516599839">
|
||||
<reference key="NSNextResponder" ref="429416096"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSImageView" id="681161117">
|
||||
<reference key="NSNextResponder" ref="516599839"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<set class="NSMutableSet" key="NSDragTypes">
|
||||
<string>Apple PDF pasteboard type</string>
|
||||
<string>Apple PICT pasteboard type</string>
|
||||
<string>Apple PNG pasteboard type</string>
|
||||
<string>NSFilenamesPboardType</string>
|
||||
<string>NeXT Encapsulated PostScript v1.2 pasteboard type</string>
|
||||
<string>NeXT TIFF v4.0 pasteboard type</string>
|
||||
</set>
|
||||
<string key="NSFrame">{{3, 0}, {17, 17}}</string>
|
||||
<reference key="NSSuperview" ref="516599839"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="87023006"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:74</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSImageCell" key="NSCell" id="608668255">
|
||||
<int key="NSCellFlags">0</int>
|
||||
<int key="NSCellFlags2">33554432</int>
|
||||
<object class="NSCustomResource" key="NSContents">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSActionTemplate</string>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:74</string>
|
||||
<int key="NSAlign">0</int>
|
||||
<int key="NSScale">0</int>
|
||||
<int key="NSStyle">0</int>
|
||||
<bool key="NSAnimates">NO</bool>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<bool key="NSEditable">YES</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="87023006">
|
||||
<reference key="NSNextResponder" ref="516599839"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{25, 0}, {154, 17}}</string>
|
||||
<reference key="NSSuperview" ref="516599839"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="611096233"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:90</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="414196844">
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">272631808</int>
|
||||
<string key="NSContents">Table View Cell</string>
|
||||
<object class="NSFont" key="NSSupport" id="445908844">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:90</string>
|
||||
<reference key="NSControlView" ref="87023006"/>
|
||||
<reference key="NSBackgroundColor" ref="880760214"/>
|
||||
<object class="NSColor" key="NSTextColor" id="1040761456">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlTextColor</string>
|
||||
<object class="NSColor" key="NSColor" id="177736391">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{1, 20}, {179, 17}}</string>
|
||||
<reference key="NSSuperview" ref="429416096"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="681161117"/>
|
||||
<string key="NSReuseIdentifierKey">DataCell</string>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{182, 352}</string>
|
||||
<reference key="NSSuperview" ref="679348653"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="411750438"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:13</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<bool key="NSControlAllowsExpansionToolTips">YES</bool>
|
||||
<object class="_NSCornerView" key="NSCornerView">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<string key="NSFrameSize">{15, 20}</string>
|
||||
<string key="NSReuseIdentifierKey">_NS:19</string>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="NSTableColumns">
|
||||
<object class="NSTableColumn" id="21350916">
|
||||
<double key="NSWidth">179</double>
|
||||
<double key="NSMinWidth">16</double>
|
||||
<double key="NSMaxWidth">1000</double>
|
||||
<object class="NSTableHeaderCell" key="NSHeaderCell">
|
||||
<int key="NSCellFlags">75497536</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<string key="NSContents"/>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">11</double>
|
||||
<int key="NSfFlags">3100</int>
|
||||
</object>
|
||||
<reference key="NSBackgroundColor" ref="323714999"/>
|
||||
<object class="NSColor" key="NSTextColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">headerTextColor</string>
|
||||
<reference key="NSColor" ref="177736391"/>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSTextFieldCell" key="NSDataCell" id="263399619">
|
||||
<int key="NSCellFlags">337641537</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<string key="NSContents">Text Cell</string>
|
||||
<reference key="NSSupport" ref="445908844"/>
|
||||
<reference key="NSControlView" ref="429416096"/>
|
||||
<object class="NSColor" key="NSBackgroundColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlBackgroundColor</string>
|
||||
<reference key="NSColor" ref="658489791"/>
|
||||
</object>
|
||||
<reference key="NSTextColor" ref="1040761456"/>
|
||||
</object>
|
||||
<int key="NSResizingMask">3</int>
|
||||
<bool key="NSIsResizeable">YES</bool>
|
||||
<bool key="NSIsEditable">YES</bool>
|
||||
<reference key="NSTableView" ref="429416096"/>
|
||||
</object>
|
||||
</array>
|
||||
<double key="NSIntercellSpacingWidth">3</double>
|
||||
<double key="NSIntercellSpacingHeight">0.0</double>
|
||||
<object class="NSColor" key="NSBackgroundColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">_sourceListBackgroundColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">alternateSelectedControlColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwIDEAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSGridColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">gridColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<double key="NSRowHeight">24</double>
|
||||
<int key="NSTvFlags">-767557632</int>
|
||||
<reference key="NSDelegate"/>
|
||||
<reference key="NSDataSource"/>
|
||||
<int key="NSColumnAutoresizingStyle">4</int>
|
||||
<int key="NSDraggingSourceMaskForLocal">-1</int>
|
||||
<int key="NSDraggingSourceMaskForNonLocal">0</int>
|
||||
<bool key="NSAllowsTypeSelect">YES</bool>
|
||||
<int key="NSTableViewSelectionHighlightStyle">1</int>
|
||||
<int key="NSTableViewDraggingDestinationStyle">1</int>
|
||||
<int key="NSTableViewGroupRowStyle">1</int>
|
||||
<int key="NSTableViewRowSizeStyle">-1</int>
|
||||
<bool key="NSOutlineViewAutoresizesOutlineColumnKey">NO</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{1, 1}, {182, 352}}</string>
|
||||
<reference key="NSSuperview" ref="244314487"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="429416096"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:11</string>
|
||||
<reference key="NSDocView" ref="429416096"/>
|
||||
<bool key="NSAutomaticallyAdjustsContentInsets">YES</bool>
|
||||
</object>
|
||||
<object class="NSScroller" id="611096233">
|
||||
<reference key="NSNextResponder" ref="244314487"/>
|
||||
<int key="NSvFlags">-2147483392</int>
|
||||
<string key="NSFrame">{{224, 17}, {15, 102}}</string>
|
||||
<reference key="NSSuperview" ref="244314487"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="18135438"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:65</string>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<string key="NSControlAction">_doScroller:</string>
|
||||
<reference key="NSControlTarget" ref="244314487"/>
|
||||
<reference key="NSTarget" ref="244314487"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
</object>
|
||||
<object class="NSScroller" id="18135438">
|
||||
<reference key="NSNextResponder" ref="244314487"/>
|
||||
<int key="NSvFlags">-2147483392</int>
|
||||
<string key="NSFrame">{{1, 119}, {238, 15}}</string>
|
||||
<reference key="NSSuperview" ref="244314487"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="271739120"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:61</string>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<string key="NSControlAction">_doScroller:</string>
|
||||
<reference key="NSControlTarget" ref="244314487"/>
|
||||
<int key="NSsFlags">1</int>
|
||||
<reference key="NSTarget" ref="244314487"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{184, 354}</string>
|
||||
<reference key="NSSuperview" ref="640279782"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="679348653"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<int key="NSsFlags">133682</int>
|
||||
<reference key="NSVScroller" ref="611096233"/>
|
||||
<reference key="NSHScroller" ref="18135438"/>
|
||||
<reference key="NSContentView" ref="679348653"/>
|
||||
<bytes key="NSScrollAmts">QSAAAEEgAABB0AAAQdAAAA</bytes>
|
||||
<double key="NSMinMagnification">0.25</double>
|
||||
<double key="NSMaxMagnification">4</double>
|
||||
<double key="NSMagnification">1</double>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{184, 354}</string>
|
||||
<reference key="NSSuperview" ref="117095692"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="244314487"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:11</string>
|
||||
<bool key="NSDoNotTranslateAutoresizingMask">YES</bool>
|
||||
<string key="NSClassName">NSView</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="271739120">
|
||||
<reference key="NSNextResponder" ref="117095692"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSCustomView" id="1043350855">
|
||||
<reference key="NSNextResponder" ref="271739120"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<string key="NSFrameSize">{421, 354}</string>
|
||||
<reference key="NSSuperview" ref="271739120"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<string key="NSClassName">NSView</string>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{185, 0}, {421, 354}}</string>
|
||||
<reference key="NSSuperview" ref="117095692"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:13</string>
|
||||
<bool key="NSDoNotTranslateAutoresizingMask">YES</bool>
|
||||
<string key="NSClassName">NSView</string>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{606, 354}</string>
|
||||
<reference key="NSSuperview" ref="312036702"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="640279782"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSIsVertical">YES</bool>
|
||||
<int key="NSDividerStyle">2</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{606, 354}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="117095692"/>
|
||||
</object>
|
||||
<string key="NSScreenRect">{{0, 0}, {1920, 1057}}</string>
|
||||
<string key="NSMaxSize">{10000000000000, 10000000000000}</string>
|
||||
<bool key="NSWindowIsRestorable">YES</bool>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">window</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="748157544"/>
|
||||
</object>
|
||||
<int key="connectionID">6</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">SourceList</string>
|
||||
<reference key="source" ref="748157544"/>
|
||||
<reference key="destination" ref="429416096"/>
|
||||
</object>
|
||||
<int key="connectionID">40</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">ViewContainer</string>
|
||||
<reference key="source" ref="748157544"/>
|
||||
<reference key="destination" ref="1043350855"/>
|
||||
</object>
|
||||
<int key="connectionID">42</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">textField</string>
|
||||
<reference key="source" ref="411750438"/>
|
||||
<reference key="destination" ref="416931300"/>
|
||||
</object>
|
||||
<int key="connectionID">37</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">textField</string>
|
||||
<reference key="source" ref="516599839"/>
|
||||
<reference key="destination" ref="87023006"/>
|
||||
</object>
|
||||
<int key="connectionID">38</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">imageView</string>
|
||||
<reference key="source" ref="516599839"/>
|
||||
<reference key="destination" ref="681161117"/>
|
||||
</object>
|
||||
<int key="connectionID">39</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<reference key="object" ref="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">2</int>
|
||||
<reference key="object" ref="748157544"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="312036702"/>
|
||||
<reference ref="789203754"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">3</int>
|
||||
<reference key="object" ref="312036702"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="117095692"/>
|
||||
</array>
|
||||
<reference key="parent" ref="748157544"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">7</int>
|
||||
<reference key="object" ref="789203754"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="225466920"/>
|
||||
<reference ref="43241544"/>
|
||||
<reference ref="899100446"/>
|
||||
<reference ref="1019800403"/>
|
||||
<reference ref="743307257"/>
|
||||
</array>
|
||||
<reference key="parent" ref="748157544"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">8</int>
|
||||
<reference key="object" ref="225466920"/>
|
||||
<reference key="parent" ref="789203754"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">9</int>
|
||||
<reference key="object" ref="43241544"/>
|
||||
<reference key="parent" ref="789203754"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">10</int>
|
||||
<reference key="object" ref="899100446"/>
|
||||
<reference key="parent" ref="789203754"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">11</int>
|
||||
<reference key="object" ref="1019800403"/>
|
||||
<reference key="parent" ref="789203754"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">12</int>
|
||||
<reference key="object" ref="743307257"/>
|
||||
<reference key="parent" ref="789203754"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">16</int>
|
||||
<reference key="object" ref="117095692"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="271739120"/>
|
||||
<reference ref="640279782"/>
|
||||
</array>
|
||||
<reference key="parent" ref="312036702"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">17</int>
|
||||
<reference key="object" ref="271739120"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1043350855"/>
|
||||
</array>
|
||||
<reference key="parent" ref="117095692"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="640279782"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="244314487"/>
|
||||
</array>
|
||||
<reference key="parent" ref="117095692"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="244314487"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="611096233"/>
|
||||
<reference ref="18135438"/>
|
||||
<reference ref="429416096"/>
|
||||
</array>
|
||||
<reference key="parent" ref="640279782"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="611096233"/>
|
||||
<reference key="parent" ref="244314487"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="18135438"/>
|
||||
<reference key="parent" ref="244314487"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="429416096"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="21350916"/>
|
||||
</array>
|
||||
<reference key="parent" ref="244314487"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="21350916"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="263399619"/>
|
||||
<reference ref="411750438"/>
|
||||
<reference ref="516599839"/>
|
||||
</array>
|
||||
<reference key="parent" ref="429416096"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="263399619"/>
|
||||
<reference key="parent" ref="21350916"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="411750438"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="416931300"/>
|
||||
</array>
|
||||
<reference key="parent" ref="21350916"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="416931300"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="804447039"/>
|
||||
</array>
|
||||
<reference key="parent" ref="411750438"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">31</int>
|
||||
<reference key="object" ref="804447039"/>
|
||||
<reference key="parent" ref="416931300"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="516599839"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="681161117"/>
|
||||
<reference ref="87023006"/>
|
||||
</array>
|
||||
<reference key="parent" ref="21350916"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="681161117"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="608668255"/>
|
||||
</array>
|
||||
<reference key="parent" ref="516599839"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">34</int>
|
||||
<reference key="object" ref="608668255"/>
|
||||
<reference key="parent" ref="681161117"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">35</int>
|
||||
<reference key="object" ref="87023006"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="414196844"/>
|
||||
</array>
|
||||
<reference key="parent" ref="516599839"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">36</int>
|
||||
<reference key="object" ref="414196844"/>
|
||||
<reference key="parent" ref="87023006"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">41</int>
|
||||
<reference key="object" ref="1043350855"/>
|
||||
<reference key="parent" ref="271739120"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="10.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="11.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="12.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="16.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="17.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="17.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="18.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="2.IBPersistedLastKnownCanvasPosition">{305, 412}</string>
|
||||
<string key="2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="2.IBWindowTemplateEditedContentRect">{{319, 371}, {606, 354}}</string>
|
||||
<boolean value="YES" key="2.NSWindowTemplate.visibleAtLaunch"/>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.CustomClassName">SourceListView</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<boolean value="YES" key="22.ibExternalAutomaticallyCalculatesRowSizeFromViewHeight"/>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<boolean value="YES" key="23.isInViewBasedMode"/>
|
||||
<array key="23.prototypeCellViews">
|
||||
<reference ref="411750438"/>
|
||||
<reference ref="516599839"/>
|
||||
</array>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.userInterfaceItemIdentifier">HeaderCell</string>
|
||||
<reference key="3.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.userInterfaceItemIdentifier">DataCell</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="35.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="36.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="7.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="9.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">42</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MainWindow</string>
|
||||
<string key="superclassName">NSWindow</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="SourceList">SourceListView</string>
|
||||
<string key="ViewContainer">NSView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="SourceList">
|
||||
<string key="name">SourceList</string>
|
||||
<string key="candidateClassName">SourceListView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="ViewContainer">
|
||||
<string key="name">ViewContainer</string>
|
||||
<string key="candidateClassName">NSView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../MainWindow.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">MainWindowController</string>
|
||||
<string key="superclassName">NSWindowController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../MainWindowController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SourceListView</string>
|
||||
<string key="superclassName">NSOutlineView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SourceListView.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NSActionTemplate">{14, 14}</string>
|
||||
<string key="NSMenuCheckmark">{12, 12}</string>
|
||||
<string key="NSMenuMixedState">{10, 2}</string>
|
||||
<string key="NSToolbarPrint">{32, 32}</string>
|
||||
<string key="NSToolbarShowColors">{32, 32}</string>
|
||||
<string key="NSToolbarShowFonts">{32, 32}</string>
|
||||
</dictionary>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,32 +0,0 @@
|
|||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class MainWindowController : NSWindowController
|
||||
{
|
||||
public MainWindowController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
||||
[Export ("initWithCoder:")]
|
||||
public MainWindowController (NSCoder coder) : base (coder)
|
||||
{
|
||||
}
|
||||
|
||||
public MainWindowController () : base ("MainWindow")
|
||||
{
|
||||
}
|
||||
|
||||
public override void AwakeFromNib ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
}
|
||||
|
||||
public new MainWindow Window {
|
||||
get { return (MainWindow)base.Window; }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
[global::Foundation.Register ("MainWindowController")]
|
||||
public partial class MainWindowController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,33 +1,25 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewMenuControls : AppKit.NSView
|
||||
public partial class MenuViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewMenuControls (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewMenuControls (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public MenuViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.ViewWillAppear ();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Actions
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewMenuControls")]
|
||||
partial class SubviewMenuControls
|
||||
[Register ("MenuViewController")]
|
||||
partial class MenuViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSMenuItem DropDownSelected { get; set; }
|
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-128.png
Normal file
После Ширина: | Высота: | Размер: 7.9 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-128@2x.png
Normal file
После Ширина: | Высота: | Размер: 20 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-16.png
Normal file
После Ширина: | Высота: | Размер: 711 B |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-16@2x.png
Normal file
После Ширина: | Высота: | Размер: 1.4 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-256.png
Normal file
После Ширина: | Высота: | Размер: 20 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-256@2x.png
Normal file
После Ширина: | Высота: | Размер: 58 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-32.png
Normal file
После Ширина: | Высота: | Размер: 1.4 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-32@2x.png
Normal file
После Ширина: | Высота: | Размер: 3.3 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-512.png
Normal file
После Ширина: | Высота: | Размер: 58 KiB |
Двоичные данные
MacControls/MacControls/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-512@2x.png
Normal file
После Ширина: | Высота: | Размер: 174 KiB |
|
@ -0,0 +1,222 @@
|
|||
{
|
||||
"images": [
|
||||
{
|
||||
"size": "29x29",
|
||||
"scale": "1x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"scale": "2x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"scale": "3x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"scale": "2x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"scale": "3x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "57x57",
|
||||
"scale": "1x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "57x57",
|
||||
"scale": "2x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "60x60",
|
||||
"scale": "2x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "60x60",
|
||||
"scale": "3x",
|
||||
"idiom": "iphone"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"scale": "1x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"scale": "2x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"scale": "1x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"scale": "2x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "50x50",
|
||||
"scale": "1x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "50x50",
|
||||
"scale": "2x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "72x72",
|
||||
"scale": "1x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "72x72",
|
||||
"scale": "2x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "76x76",
|
||||
"scale": "1x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "76x76",
|
||||
"scale": "2x",
|
||||
"idiom": "ipad"
|
||||
},
|
||||
{
|
||||
"size": "120x120",
|
||||
"scale": "1x",
|
||||
"idiom": "car"
|
||||
},
|
||||
{
|
||||
"role": "notificationCenter",
|
||||
"size": "24x24",
|
||||
"subtype": "38mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "notificationCenter",
|
||||
"size": "27.5x27.5",
|
||||
"subtype": "42mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "companionSettings",
|
||||
"size": "29x29",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "companionSettings",
|
||||
"size": "29x29",
|
||||
"scale": "3x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "appLauncher",
|
||||
"size": "40x40",
|
||||
"subtype": "38mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "longLook",
|
||||
"size": "44x44",
|
||||
"subtype": "42mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "quickLook",
|
||||
"size": "86x86",
|
||||
"subtype": "38mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"role": "quickLook",
|
||||
"size": "98x98",
|
||||
"subtype": "42mm",
|
||||
"scale": "2x",
|
||||
"idiom": "watch"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-16.png",
|
||||
"size": "16x16",
|
||||
"scale": "1x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-16@2x.png",
|
||||
"size": "16x16",
|
||||
"scale": "2x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-32.png",
|
||||
"size": "32x32",
|
||||
"scale": "1x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-32@2x.png",
|
||||
"size": "32x32",
|
||||
"scale": "2x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-128.png",
|
||||
"size": "128x128",
|
||||
"scale": "1x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-128@2x.png",
|
||||
"size": "128x128",
|
||||
"scale": "2x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-256.png",
|
||||
"size": "256x256",
|
||||
"scale": "1x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-256@2x.png",
|
||||
"size": "256x256",
|
||||
"scale": "2x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-512.png",
|
||||
"size": "512x512",
|
||||
"scale": "1x",
|
||||
"idiom": "mac"
|
||||
},
|
||||
{
|
||||
"filename": "AppIcon-512@2x.png",
|
||||
"size": "512x512",
|
||||
"scale": "2x",
|
||||
"idiom": "mac"
|
||||
}
|
||||
],
|
||||
"info": {
|
||||
"version": 1,
|
||||
"author": "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class RightViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
public RightViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
public void ShowView(SubviewType type) {
|
||||
|
||||
// Take action based on requested type
|
||||
switch (type) {
|
||||
case SubviewType.Buttons:
|
||||
PerformSegue ("ButtonsSegue", this);
|
||||
break;
|
||||
case SubviewType.CheckAndRadioButtons:
|
||||
PerformSegue ("CheckboxSegue", this);
|
||||
break;
|
||||
case SubviewType.MenuControls:
|
||||
PerformSegue ("MenuSegue", this);
|
||||
break;
|
||||
case SubviewType.SelectionControls:
|
||||
PerformSegue ("SelectionSegue", this);
|
||||
break;
|
||||
case SubviewType.IndicatorControls:
|
||||
PerformSegue ("IndicatorSegue", this);
|
||||
break;
|
||||
case SubviewType.TextControls:
|
||||
PerformSegue ("TextSegue", this);
|
||||
break;
|
||||
case SubviewType.ContentViews:
|
||||
PerformSegue ("ContentSegue", this);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -9,21 +9,12 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewContentViews")]
|
||||
partial class SubviewContentViews
|
||||
[Register ("RightViewController")]
|
||||
partial class RightViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSPopover Popover { get; set; }
|
||||
|
||||
[Action ("DisplayPopover:")]
|
||||
partial void DisplayPopover (Foundation.NSObject sender);
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (Popover != null) {
|
||||
Popover.Dispose ();
|
||||
Popover = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,39 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewSelectionControls : AppKit.NSView
|
||||
public partial class SelectionViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewSelectionControls (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewSelectionControls (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public SelectionViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
base.ViewWillAppear ();
|
||||
|
||||
// Wire-up controls
|
||||
TickedSlider.Activated += (sender, e) => {
|
||||
|
@ -63,7 +48,6 @@ namespace MacControls
|
|||
DateTime.Activated += (sender, e) => {
|
||||
FeedbackLabel.StringValue = DateTime.StringValue;
|
||||
};
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewSelectionControls")]
|
||||
partial class SubviewSelectionControls
|
||||
[Register ("SelectionViewController")]
|
||||
partial class SelectionViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSTextField AmountField { get; set; }
|
||||
|
@ -50,9 +50,34 @@ namespace MacControls
|
|||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (TickedSlider != null) {
|
||||
TickedSlider.Dispose ();
|
||||
TickedSlider = null;
|
||||
if (AmountField != null) {
|
||||
AmountField.Dispose ();
|
||||
AmountField = null;
|
||||
}
|
||||
|
||||
if (AmountStepper != null) {
|
||||
AmountStepper.Dispose ();
|
||||
AmountStepper = null;
|
||||
}
|
||||
|
||||
if (CollorWell != null) {
|
||||
CollorWell.Dispose ();
|
||||
CollorWell = null;
|
||||
}
|
||||
|
||||
if (DateTime != null) {
|
||||
DateTime.Dispose ();
|
||||
DateTime = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (ImageWell != null) {
|
||||
ImageWell.Dispose ();
|
||||
ImageWell = null;
|
||||
}
|
||||
|
||||
if (SegmentButtons != null) {
|
||||
|
@ -70,34 +95,9 @@ namespace MacControls
|
|||
SliderValue = null;
|
||||
}
|
||||
|
||||
if (AmountField != null) {
|
||||
AmountField.Dispose ();
|
||||
AmountField = null;
|
||||
}
|
||||
|
||||
if (AmountStepper != null) {
|
||||
AmountStepper.Dispose ();
|
||||
AmountStepper = null;
|
||||
}
|
||||
|
||||
if (CollorWell != null) {
|
||||
CollorWell.Dispose ();
|
||||
CollorWell = null;
|
||||
}
|
||||
|
||||
if (ImageWell != null) {
|
||||
ImageWell.Dispose ();
|
||||
ImageWell = null;
|
||||
}
|
||||
|
||||
if (DateTime != null) {
|
||||
DateTime.Dispose ();
|
||||
DateTime = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
if (TickedSlider != null) {
|
||||
TickedSlider.Dispose ();
|
||||
TickedSlider = null;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
using System;
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SplitViewController : NSSplitViewController
|
||||
{
|
||||
#region Computed Properties
|
||||
public override NSObject RepresentedObject {
|
||||
get {
|
||||
return base.RepresentedObject;
|
||||
}
|
||||
set {
|
||||
base.RepresentedObject = value;
|
||||
// Update the view, if already loaded.
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public SplitViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void ViewDidLoad ()
|
||||
{
|
||||
base.ViewDidLoad ();
|
||||
|
||||
// Grab elements
|
||||
var left = LeftController.ViewController as LeftViewController;
|
||||
var right = RightController.ViewController as RightViewController;
|
||||
|
||||
// Wireup events
|
||||
left.ViewTypeChanged += (viewType) => {
|
||||
right.ShowView(viewType);
|
||||
};
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
// WARNING
|
||||
//
|
||||
// This file has been generated automatically by Xamarin Studio to store outlets and
|
||||
// actions made in the UI designer. If it is removed, they will be lost.
|
||||
// Manual changes to this file may not be handled correctly.
|
||||
//
|
||||
using Foundation;
|
||||
using System.CodeDom.Compiler;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SplitViewController")]
|
||||
partial class SplitViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSSplitViewItem LeftController { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSSplitViewItem RightController { get; set; }
|
||||
|
||||
[Outlet]
|
||||
AppKit.NSSplitView SplitView { get; set; }
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (SplitView != null) {
|
||||
SplitView.Dispose ();
|
||||
SplitView = null;
|
||||
}
|
||||
|
||||
if (LeftController != null) {
|
||||
LeftController.Dispose ();
|
||||
LeftController = null;
|
||||
}
|
||||
|
||||
if (RightController != null) {
|
||||
RightController.Dispose ();
|
||||
RightController = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,989 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSButton</string>
|
||||
<string>NSButtonCell</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewButtonsController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="952891667">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{47, 164}, {350, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="9793851">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Lorem Ipsum</string>
|
||||
<object class="NSFont" key="NSSupport" id="247731314">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="952891667"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="531807342">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="271358258">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="71738035">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{18, 22}, {350, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="895440304">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Label</string>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="71738035"/>
|
||||
<reference key="NSBackgroundColor" ref="531807342"/>
|
||||
<reference key="NSTextColor" ref="271358258"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="604505604">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">-2147483382</int>
|
||||
<string key="NSFrame">{{18, 62}, {379, 92}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1052586357"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="956856483">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">272629760</int>
|
||||
<object class="NSMutableString" key="NSContents">
|
||||
<characters key="NS.bytes">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vestibulum elit sit amet efficitur viverra. Proin non lorem quis felis hendrerit porttitor id ut sapien. Cras at volutpat enim, euismod cursus elit. In vitae ipsum sed purus sollicitudin lobortis eu sed lacus. Nam eleifend quam sit amet ligula pharetra, ac aliquet libero fermentum. Donec suscipit commodo enim et luctus. Quisque scelerisque aliquet ultricies. Nullam eleifend leo orci, at imperdiet orci venenatis ac. Donec tincidunt posuere sem at semper.</characters>
|
||||
</object>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">10</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="604505604"/>
|
||||
<reference key="NSBackgroundColor" ref="531807342"/>
|
||||
<reference key="NSTextColor" ref="271358258"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<bool key="NSControlAutosetMaxLayoutWidth">YES</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSButton" id="496338950">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{205, 304}, {39, 38}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="990202092"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:1988</string>
|
||||
<string key="NSHuggingPriority">{750, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="130644009">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents"/>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">10</double>
|
||||
<int key="NSfFlags">2843</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:1988</string>
|
||||
<reference key="NSControlView" ref="496338950"/>
|
||||
<int key="NSButtonFlags">-2037645312</int>
|
||||
<int key="NSButtonFlags2">135</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSAdvanced</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="1029978124">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{16, 159}, {29, 26}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="604505604"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:2004</string>
|
||||
<string key="NSHuggingPriority">{750, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="70168571">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:2004</string>
|
||||
<reference key="NSControlView" ref="1029978124"/>
|
||||
<int key="NSButtonFlags">918831104</int>
|
||||
<int key="NSButtonFlags2">166</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="1052586357">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">289</int>
|
||||
<string key="NSFrame">{{372, 17}, {25, 25}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:2019</string>
|
||||
<string key="NSHuggingPriority">{750, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="199352234">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:2019</string>
|
||||
<reference key="NSControlView" ref="1052586357"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">161</int>
|
||||
<object class="NSFont" key="NSAlternateImage">
|
||||
<string key="NSName">.HelveticaNeueDeskInterface-Regular</string>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="335032751">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{347, 286}, {48, 48}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="185575136"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="594842866">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="335032751"/>
|
||||
<int key="NSButtonFlags">-2033958912</int>
|
||||
<int key="NSButtonFlags2">134</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSBonjour</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="276038302">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{20, 215}, {122, 19}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1029978124"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="668990362">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Recessed Button</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">12</double>
|
||||
<int key="NSfFlags">2072</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="276038302"/>
|
||||
<int key="NSButtonFlags">-1232846848</int>
|
||||
<int key="NSButtonFlags2">173</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="990202092">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{156, 278}, {116, 23}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="335032751"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:22</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="12739547">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Textured Button</string>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:22</string>
|
||||
<reference key="NSControlView" ref="990202092"/>
|
||||
<int key="NSButtonFlags">-2033434624</int>
|
||||
<int key="NSButtonFlags2">160</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="522574662">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{156, 238}, {116, 25}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="276038302"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:22</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="1008731045">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Round Textured</string>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:22</string>
|
||||
<reference key="NSControlView" ref="522574662"/>
|
||||
<int key="NSButtonFlags">-2038153216</int>
|
||||
<int key="NSButtonFlags2">163</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="185575136">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{20, 241}, {122, 19}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="522574662"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="447219349">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Round Rect Button</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">12</double>
|
||||
<int key="NSfFlags">2586</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="185575136"/>
|
||||
<int key="NSButtonFlags">-2038153216</int>
|
||||
<int key="NSButtonFlags2">164</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="901530353">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{170, 312}, {33, 23}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="179678063"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:22</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="337950369">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:22</string>
|
||||
<reference key="NSControlView" ref="901530353"/>
|
||||
<int key="NSButtonFlags">919355392</int>
|
||||
<int key="NSButtonFlags2">162</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSActionTemplate</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
<int key="NSAuxButtonType">6</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="179678063">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{14, 273}, {136, 32}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="496338950"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="747066986">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Button Action</string>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="179678063"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="163424936">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{14, 306}, {136, 32}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="901530353"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="208113966">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Button Outlet</string>
|
||||
<reference key="NSSupport" ref="247731314"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="163424936"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{415, 354}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="163424936"/>
|
||||
<string key="NSClassName">SubviewButtons</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">ButtonOutlet</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="163424936"/>
|
||||
</object>
|
||||
<int key="connectionID">46</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ButtonAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="179678063"/>
|
||||
</object>
|
||||
<int key="connectionID">47</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">RoundedGradient</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="901530353"/>
|
||||
</object>
|
||||
<int key="connectionID">48</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">RoundAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="496338950"/>
|
||||
</object>
|
||||
<int key="connectionID">49</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">SquareAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="335032751"/>
|
||||
</object>
|
||||
<int key="connectionID">50</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">TexturedAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="990202092"/>
|
||||
</object>
|
||||
<int key="connectionID">51</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">RoundRectAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="185575136"/>
|
||||
</object>
|
||||
<int key="connectionID">52</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">RoundTexturedAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="522574662"/>
|
||||
</object>
|
||||
<int key="connectionID">53</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">RecessedAction:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="276038302"/>
|
||||
</object>
|
||||
<int key="connectionID">54</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">DisclosureButton</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="1029978124"/>
|
||||
</object>
|
||||
<int key="connectionID">55</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">LorumIpsum</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="604505604"/>
|
||||
</object>
|
||||
<int key="connectionID">56</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">FeedbackLabel</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="71738035"/>
|
||||
</object>
|
||||
<int key="connectionID">57</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="163424936"/>
|
||||
<reference ref="179678063"/>
|
||||
<reference ref="901530353"/>
|
||||
<reference ref="185575136"/>
|
||||
<reference ref="522574662"/>
|
||||
<reference ref="990202092"/>
|
||||
<reference ref="276038302"/>
|
||||
<reference ref="335032751"/>
|
||||
<reference ref="1029978124"/>
|
||||
<reference ref="496338950"/>
|
||||
<reference ref="604505604"/>
|
||||
<reference ref="1052586357"/>
|
||||
<reference ref="71738035"/>
|
||||
<reference ref="952891667"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="163424936"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="208113966"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="208113966"/>
|
||||
<reference key="parent" ref="163424936"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="179678063"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="747066986"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="747066986"/>
|
||||
<reference key="parent" ref="179678063"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="901530353"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="337950369"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="337950369"/>
|
||||
<reference key="parent" ref="901530353"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="185575136"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="447219349"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">25</int>
|
||||
<reference key="object" ref="447219349"/>
|
||||
<reference key="parent" ref="185575136"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">26</int>
|
||||
<reference key="object" ref="522574662"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1008731045"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">27</int>
|
||||
<reference key="object" ref="1008731045"/>
|
||||
<reference key="parent" ref="522574662"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">28</int>
|
||||
<reference key="object" ref="990202092"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="12739547"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="12739547"/>
|
||||
<reference key="parent" ref="990202092"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="276038302"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="668990362"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">31</int>
|
||||
<reference key="object" ref="668990362"/>
|
||||
<reference key="parent" ref="276038302"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="335032751"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="594842866"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="594842866"/>
|
||||
<reference key="parent" ref="335032751"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">34</int>
|
||||
<reference key="object" ref="1052586357"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="199352234"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">35</int>
|
||||
<reference key="object" ref="199352234"/>
|
||||
<reference key="parent" ref="1052586357"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">36</int>
|
||||
<reference key="object" ref="1029978124"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="70168571"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">37</int>
|
||||
<reference key="object" ref="70168571"/>
|
||||
<reference key="parent" ref="1029978124"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">38</int>
|
||||
<reference key="object" ref="496338950"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="130644009"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">39</int>
|
||||
<reference key="object" ref="130644009"/>
|
||||
<reference key="parent" ref="496338950"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">40</int>
|
||||
<reference key="object" ref="604505604"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="956856483"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">41</int>
|
||||
<reference key="object" ref="956856483"/>
|
||||
<reference key="parent" ref="604505604"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">42</int>
|
||||
<reference key="object" ref="71738035"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="895440304"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">43</int>
|
||||
<reference key="object" ref="895440304"/>
|
||||
<reference key="parent" ref="71738035"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">44</int>
|
||||
<reference key="object" ref="952891667"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="9793851"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">45</int>
|
||||
<reference key="object" ref="9793851"/>
|
||||
<reference key="parent" ref="952891667"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="35.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="36.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="37.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="39.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPersistedLastKnownCanvasPosition">{304.5, 447}</string>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<boolean value="YES" key="40.IBNSControlSetsMaxLayoutWidthAtFirstLayoutMetadataKey"/>
|
||||
<string key="40.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="45.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">57</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewButtons</string>
|
||||
<string key="superclassName">NSView</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="ButtonAction:">id</string>
|
||||
<string key="RecessedAction:">id</string>
|
||||
<string key="RoundAction:">id</string>
|
||||
<string key="RoundRectAction:">id</string>
|
||||
<string key="RoundTexturedAction:">id</string>
|
||||
<string key="SquareAction:">id</string>
|
||||
<string key="TexturedAction:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="ButtonAction:">
|
||||
<string key="name">ButtonAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RecessedAction:">
|
||||
<string key="name">RecessedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundAction:">
|
||||
<string key="name">RoundAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundRectAction:">
|
||||
<string key="name">RoundRectAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundTexturedAction:">
|
||||
<string key="name">RoundTexturedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="SquareAction:">
|
||||
<string key="name">SquareAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="TexturedAction:">
|
||||
<string key="name">TexturedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="ButtonOutlet">NSButton</string>
|
||||
<string key="DisclosureButton">NSButton</string>
|
||||
<string key="FeedbackLabel">NSTextField</string>
|
||||
<string key="LorumIpsum">NSTextField</string>
|
||||
<string key="RoundedGradient">NSButton</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="ButtonOutlet">
|
||||
<string key="name">ButtonOutlet</string>
|
||||
<string key="candidateClassName">NSButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="DisclosureButton">
|
||||
<string key="name">DisclosureButton</string>
|
||||
<string key="candidateClassName">NSButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="FeedbackLabel">
|
||||
<string key="name">FeedbackLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="LorumIpsum">
|
||||
<string key="name">LorumIpsum</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="RoundedGradient">
|
||||
<string key="name">RoundedGradient</string>
|
||||
<string key="candidateClassName">NSButton</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewButtons.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewButtons</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="ButtonAction:">id</string>
|
||||
<string key="RecessedAction:">id</string>
|
||||
<string key="RoundAction:">id</string>
|
||||
<string key="RoundRectAction:">id</string>
|
||||
<string key="RoundTexturedAction:">id</string>
|
||||
<string key="SquareAction:">id</string>
|
||||
<string key="TexturedAction:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="ButtonAction:">
|
||||
<string key="name">ButtonAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RecessedAction:">
|
||||
<string key="name">RecessedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundAction:">
|
||||
<string key="name">RoundAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundRectAction:">
|
||||
<string key="name">RoundRectAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="RoundTexturedAction:">
|
||||
<string key="name">RoundTexturedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="SquareAction:">
|
||||
<string key="name">SquareAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="TexturedAction:">
|
||||
<string key="name">TexturedAction:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewButtons.m</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewButtonsController</string>
|
||||
<string key="superclassName">NSViewController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewButtonsController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NSActionTemplate">{14, 14}</string>
|
||||
<string key="NSAdvanced">{32, 32}</string>
|
||||
<string key="NSBonjour">{32, 32}</string>
|
||||
</dictionary>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewButtonsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewButtonsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewButtonsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewButtonsController () : base ("SubviewButtons", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewButtons View {
|
||||
get {
|
||||
return (SubviewButtons)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewButtonsController")]
|
||||
public partial class SubviewButtonsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,787 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSButton</string>
|
||||
<string>NSButtonCell</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSMatrix</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewChecksRadioController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSButton" id="385349408">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{344, 250}, {112, 32}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1020736281"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="666987269">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Select Car</string>
|
||||
<object class="NSFont" key="NSSupport" id="726040979">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="385349408"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="1020736281">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 139}, {434, 18}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="557892681"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="92404782">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">268435456</int>
|
||||
<string key="NSContents">Adjust time for traffic</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="1020736281"/>
|
||||
<int key="NSButtonFlags">1211912448</int>
|
||||
<int key="NSButtonFlags2">2</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSSwitch</string>
|
||||
</object>
|
||||
<object class="NSButtonImageSource" key="NSAlternateImage">
|
||||
<string key="NSImageName">NSSwitch</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="806271806">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">290</int>
|
||||
<string key="NSFrame">{{18, 20}, {434, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="184011692">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Label</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="806271806"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="535638166">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="245673434">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="221763274">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{18, 259}, {434, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="385349408"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="744888118">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Transportation Type:</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="221763274"/>
|
||||
<reference key="NSBackgroundColor" ref="535638166"/>
|
||||
<reference key="NSTextColor" ref="245673434"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSMatrix" id="557892681">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{32, 166}, {418, 79}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="806271806"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSNumRows">3</int>
|
||||
<int key="NSNumCols">1</int>
|
||||
<array class="NSMutableArray" key="NSCells">
|
||||
<object class="NSButtonCell" id="273478557">
|
||||
<int key="NSCellFlags">-2080374784</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Walking</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<reference key="NSControlView" ref="557892681"/>
|
||||
<int key="NSTag">1</int>
|
||||
<int key="NSButtonFlags">1211912448</int>
|
||||
<int key="NSButtonFlags2">2</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSRadioButton</string>
|
||||
</object>
|
||||
<object class="NSButtonImageSource" key="NSAlternateImage" id="930131017">
|
||||
<string key="NSImageName">NSRadioButton</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
<int key="NSAuxButtonType">4</int>
|
||||
</object>
|
||||
<object class="NSButtonCell" id="263030431">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Public Transportation (Bus, Train, Taxi)</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<reference key="NSControlView" ref="557892681"/>
|
||||
<int key="NSButtonFlags">1211912448</int>
|
||||
<int key="NSButtonFlags2">0</int>
|
||||
<object class="NSImage" key="NSNormalImage">
|
||||
<int key="NSImageFlags">549453824</int>
|
||||
<string key="NSSize">{18, 18}</string>
|
||||
<array class="NSMutableArray" key="NSReps">
|
||||
<array>
|
||||
<integer value="0"/>
|
||||
<object class="NSBitmapImageRep">
|
||||
<object class="NSData" key="NSTIFFRepresentation">
|
||||
<bytes key="NS.bytes">TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw
|
||||
IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/
|
||||
29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5
|
||||
dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA
|
||||
AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG
|
||||
AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/
|
||||
0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/
|
||||
7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/
|
||||
5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/
|
||||
3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD
|
||||
AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns
|
||||
AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/
|
||||
6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/
|
||||
/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/
|
||||
///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl
|
||||
YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA
|
||||
AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD
|
||||
AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu
|
||||
AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB
|
||||
AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES
|
||||
AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS
|
||||
AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp
|
||||
bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA
|
||||
AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA
|
||||
AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA
|
||||
A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA
|
||||
BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3
|
||||
bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA
|
||||
AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA
|
||||
b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA
|
||||
ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx
|
||||
OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2
|
||||
LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl
|
||||
c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA
|
||||
AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM
|
||||
CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1
|
||||
cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3
|
||||
AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET
|
||||
ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp
|
||||
AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML
|
||||
AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+
|
||||
BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI
|
||||
BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu
|
||||
CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz
|
||||
CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e
|
||||
DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx
|
||||
EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw
|
||||
FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg
|
||||
GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D
|
||||
HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd
|
||||
IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx
|
||||
KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C
|
||||
Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT
|
||||
NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn
|
||||
PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA
|
||||
RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi
|
||||
TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP
|
||||
VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J
|
||||
XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT
|
||||
Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw
|
||||
cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh
|
||||
fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp
|
||||
iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK
|
||||
lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH
|
||||
obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h
|
||||
rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb
|
||||
vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2
|
||||
y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2
|
||||
2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb
|
||||
6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn
|
||||
+3f8B/yY/Sn9uv5L/tz/bf//A</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</array>
|
||||
<object class="NSColor" key="NSColor" id="838550383">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MCAwAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<reference key="NSAlternateImage" ref="930131017"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<object class="NSButtonCell" id="570833119">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Car</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<reference key="NSControlView" ref="557892681"/>
|
||||
<int key="NSButtonFlags">1211912448</int>
|
||||
<int key="NSButtonFlags2">0</int>
|
||||
<object class="NSImage" key="NSNormalImage" id="287942337">
|
||||
<int key="NSImageFlags">549453824</int>
|
||||
<string key="NSSize">{18, 18}</string>
|
||||
<array class="NSMutableArray" key="NSReps">
|
||||
<array>
|
||||
<integer value="0"/>
|
||||
<object class="NSBitmapImageRep">
|
||||
<object class="NSData" key="NSTIFFRepresentation">
|
||||
<bytes key="NS.bytes">TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw
|
||||
IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/
|
||||
29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5
|
||||
dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA
|
||||
AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG
|
||||
AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/
|
||||
0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/
|
||||
7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/
|
||||
5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/
|
||||
3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD
|
||||
AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns
|
||||
AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/
|
||||
6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/
|
||||
/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/
|
||||
///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl
|
||||
YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA
|
||||
AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD
|
||||
AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu
|
||||
AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB
|
||||
AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES
|
||||
AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS
|
||||
AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAxIAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAMSExp
|
||||
bm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAA
|
||||
AAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAA
|
||||
AhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAA
|
||||
A0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAA
|
||||
BDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3
|
||||
bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAA
|
||||
AAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAA
|
||||
b6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAA
|
||||
ABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYx
|
||||
OTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2
|
||||
LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRl
|
||||
c2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAA
|
||||
AAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABM
|
||||
CVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1
|
||||
cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3
|
||||
AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQET
|
||||
ARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHp
|
||||
AfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAML
|
||||
AxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+
|
||||
BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZI
|
||||
BlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghu
|
||||
CIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3Arz
|
||||
CwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3e
|
||||
DfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExEx
|
||||
EU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTw
|
||||
FRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkg
|
||||
GUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3D
|
||||
HeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLd
|
||||
IwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhx
|
||||
KKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6C
|
||||
Lrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUT
|
||||
NU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76Dwn
|
||||
PGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPA
|
||||
RANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkvi
|
||||
TCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSP
|
||||
VNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3J
|
||||
XhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeT
|
||||
Z+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHw
|
||||
cktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzh
|
||||
fUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhp
|
||||
iM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSK
|
||||
lPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFH
|
||||
obaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6h
|
||||
rxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8Ibyb
|
||||
vRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2
|
||||
y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp2
|
||||
2vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb
|
||||
6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn
|
||||
+3f8B/yY/Sn9uv5L/tz/bf//A</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</array>
|
||||
<reference key="NSColor" ref="838550383"/>
|
||||
</object>
|
||||
<reference key="NSAlternateImage" ref="930131017"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSCellSize">{258, 18}</string>
|
||||
<string key="NSIntercellSpacing">{4, 2}</string>
|
||||
<int key="NSMatrixFlags">1151868928</int>
|
||||
<string key="NSCellClass">NSActionCell</string>
|
||||
<object class="NSButtonCell" key="NSProtoCell" id="861745505">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSContents">Radio</string>
|
||||
<reference key="NSSupport" ref="726040979"/>
|
||||
<int key="NSButtonFlags">1211912448</int>
|
||||
<int key="NSButtonFlags2">0</int>
|
||||
<reference key="NSNormalImage" ref="287942337"/>
|
||||
<reference key="NSAlternateImage" ref="930131017"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
</object>
|
||||
<reference key="NSSelectedCell" ref="273478557"/>
|
||||
<reference key="NSBackgroundColor" ref="535638166"/>
|
||||
<object class="NSColor" key="NSCellBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<reference key="NSFont" ref="726040979"/>
|
||||
<bool key="NSAutorecalculatesCellSize">YES</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{470, 296}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="221763274"/>
|
||||
<string key="NSClassName">SubviewChecksRadio</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">TransportationWalking:</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="557892681"/>
|
||||
</object>
|
||||
<int key="connectionID">29</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">TransportationWalking</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="273478557"/>
|
||||
</object>
|
||||
<int key="connectionID">32</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">TransportationPublic</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="263030431"/>
|
||||
</object>
|
||||
<int key="connectionID">33</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">TransportationCar</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="570833119"/>
|
||||
</object>
|
||||
<int key="connectionID">34</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">AdjustTime</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="1020736281"/>
|
||||
</object>
|
||||
<int key="connectionID">35</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">FeedbackLabel</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="806271806"/>
|
||||
</object>
|
||||
<int key="connectionID">36</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">SelectCar:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="385349408"/>
|
||||
</object>
|
||||
<int key="connectionID">39</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">TransportationType</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="861745505"/>
|
||||
</object>
|
||||
<int key="connectionID">40</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">Transportation</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="557892681"/>
|
||||
</object>
|
||||
<int key="connectionID">41</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="221763274"/>
|
||||
<reference ref="557892681"/>
|
||||
<reference ref="806271806"/>
|
||||
<reference ref="385349408"/>
|
||||
<reference ref="1020736281"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="557892681"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="263030431"/>
|
||||
<reference ref="273478557"/>
|
||||
<reference ref="861745505"/>
|
||||
<reference ref="570833119"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="263030431"/>
|
||||
<reference key="parent" ref="557892681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="273478557"/>
|
||||
<reference key="parent" ref="557892681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="861745505"/>
|
||||
<reference key="parent" ref="557892681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="570833119"/>
|
||||
<reference key="parent" ref="557892681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="221763274"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="744888118"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="744888118"/>
|
||||
<reference key="parent" ref="221763274"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">25</int>
|
||||
<reference key="object" ref="806271806"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="184011692"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">26</int>
|
||||
<reference key="object" ref="184011692"/>
|
||||
<reference key="parent" ref="806271806"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">27</int>
|
||||
<reference key="object" ref="1020736281"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="92404782"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">28</int>
|
||||
<reference key="object" ref="92404782"/>
|
||||
<reference key="parent" ref="1020736281"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">37</int>
|
||||
<reference key="object" ref="385349408"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="666987269"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">38</int>
|
||||
<reference key="object" ref="666987269"/>
|
||||
<reference key="parent" ref="385349408"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="37.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">41</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewChecksRadio</string>
|
||||
<string key="superclassName">NSView</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">SelectCar:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">SelectCar:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">SelectCar:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="AdjustTime">NSButton</string>
|
||||
<string key="FeedbackLabel">NSTextField</string>
|
||||
<string key="Transportation">NSMatrix</string>
|
||||
<string key="TransportationCar">NSButtonCell</string>
|
||||
<string key="TransportationPublic">NSButtonCell</string>
|
||||
<string key="TransportationType">NSButtonCell</string>
|
||||
<string key="TransportationWalking">NSButtonCell</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="AdjustTime">
|
||||
<string key="name">AdjustTime</string>
|
||||
<string key="candidateClassName">NSButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="FeedbackLabel">
|
||||
<string key="name">FeedbackLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="Transportation">
|
||||
<string key="name">Transportation</string>
|
||||
<string key="candidateClassName">NSMatrix</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="TransportationCar">
|
||||
<string key="name">TransportationCar</string>
|
||||
<string key="candidateClassName">NSButtonCell</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="TransportationPublic">
|
||||
<string key="name">TransportationPublic</string>
|
||||
<string key="candidateClassName">NSButtonCell</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="TransportationType">
|
||||
<string key="name">TransportationType</string>
|
||||
<string key="candidateClassName">NSButtonCell</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="TransportationWalking">
|
||||
<string key="name">TransportationWalking</string>
|
||||
<string key="candidateClassName">NSButtonCell</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewChecksRadio.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewChecksRadio</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">SelectCar:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">SelectCar:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">SelectCar:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewChecksRadio.m</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewChecksRadioController</string>
|
||||
<string key="superclassName">NSViewController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewChecksRadioController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NSRadioButton">{16, 15}</string>
|
||||
<string key="NSSwitch">{15, 15}</string>
|
||||
</dictionary>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewChecksRadioController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewChecksRadioController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewChecksRadioController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewChecksRadioController () : base ("SubviewChecksRadio", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewChecksRadio View {
|
||||
get {
|
||||
return (SubviewChecksRadio)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewContentViews : AppKit.NSView
|
||||
{
|
||||
#region Private Variables
|
||||
private bool PopoverShown = false;
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
// Called when created from unmanaged code
|
||||
public SubviewContentViews (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewContentViews (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
|
||||
#endregion
|
||||
|
||||
#region Actions
|
||||
partial void DisplayPopover (Foundation.NSObject sender) {
|
||||
|
||||
var button = sender as NSButton;
|
||||
|
||||
if (PopoverShown) {
|
||||
Popover.Close();
|
||||
PopoverShown = false;
|
||||
} else {
|
||||
Popover.Show(button.Bounds, button, NSRectEdge.MaxXEdge);
|
||||
PopoverShown = true;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -1,628 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSButton</string>
|
||||
<string>NSButtonCell</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSPopover</string>
|
||||
<string>NSTabView</string>
|
||||
<string>NSTabViewItem</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
<string>NSView</string>
|
||||
<string>NSViewController</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewContentViewsController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTabView" id="1021315149">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<set class="NSMutableSet" key="NSDragTypes">
|
||||
<string>public.item</string>
|
||||
</set>
|
||||
<string key="NSFrame">{{8, 10}, {449, 231}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="163651564"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<array class="NSMutableArray" key="NSTabViewItems">
|
||||
<object class="NSTabViewItem" id="313505792">
|
||||
<string key="NSIdentifier">1</string>
|
||||
<object class="NSView" key="NSView" id="163651564">
|
||||
<reference key="NSNextResponder" ref="1021315149"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="792121727">
|
||||
<reference key="NSNextResponder" ref="163651564"/>
|
||||
<int key="NSvFlags">314</int>
|
||||
<string key="NSFrame">{{15, 85}, {399, 29}}</string>
|
||||
<reference key="NSSuperview" ref="163651564"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="417624284">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">138413056</int>
|
||||
<string key="NSContents">1st Page</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">24</double>
|
||||
<int key="NSfFlags">2072</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="792121727"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="734500331">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="923377516">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{10, 33}, {429, 185}}</string>
|
||||
<reference key="NSSuperview" ref="1021315149"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="792121727"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:11</string>
|
||||
</object>
|
||||
<string key="NSLabel">One</string>
|
||||
<reference key="NSColor" ref="734500331"/>
|
||||
<reference key="NSTabView" ref="1021315149"/>
|
||||
</object>
|
||||
<object class="NSTabViewItem" id="324415127">
|
||||
<string key="NSIdentifier">2</string>
|
||||
<object class="NSView" key="NSView" id="383664507">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="215765456">
|
||||
<reference key="NSNextResponder" ref="383664507"/>
|
||||
<int key="NSvFlags">314</int>
|
||||
<string key="NSFrame">{{15, 85}, {399, 29}}</string>
|
||||
<reference key="NSSuperview" ref="383664507"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="245523144">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">138413056</int>
|
||||
<string key="NSContents">2nd Page</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">24</double>
|
||||
<int key="NSfFlags">2072</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="215765456"/>
|
||||
<reference key="NSBackgroundColor" ref="734500331"/>
|
||||
<reference key="NSTextColor" ref="923377516"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{10, 33}, {429, 185}}</string>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:28</string>
|
||||
</object>
|
||||
<string key="NSLabel">Two</string>
|
||||
<reference key="NSColor" ref="734500331"/>
|
||||
<reference key="NSTabView" ref="1021315149"/>
|
||||
</object>
|
||||
<object class="NSTabViewItem" id="333097550">
|
||||
<object class="NSView" key="NSView" id="386147301">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="79437833">
|
||||
<reference key="NSNextResponder" ref="386147301"/>
|
||||
<int key="NSvFlags">314</int>
|
||||
<string key="NSFrame">{{15, 79}, {399, 29}}</string>
|
||||
<reference key="NSSuperview" ref="386147301"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="572711598">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">138413056</int>
|
||||
<string key="NSContents">3rd Page</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">24</double>
|
||||
<int key="NSfFlags">2072</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="79437833"/>
|
||||
<reference key="NSBackgroundColor" ref="734500331"/>
|
||||
<reference key="NSTextColor" ref="923377516"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{10, 33}, {429, 185}}</string>
|
||||
<reference key="NSNextKeyView" ref="79437833"/>
|
||||
</object>
|
||||
<string key="NSLabel">Three</string>
|
||||
<reference key="NSColor" ref="734500331"/>
|
||||
<reference key="NSTabView" ref="1021315149"/>
|
||||
</object>
|
||||
</array>
|
||||
<reference key="NSSelectedTabViewItem" ref="313505792"/>
|
||||
<object class="NSFont" key="NSFont" id="266679044">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<int key="NSTvFlags">0</int>
|
||||
<bool key="NSAllowTruncatedLabels">YES</bool>
|
||||
<bool key="NSDrawsBackground">YES</bool>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<reference ref="163651564"/>
|
||||
</array>
|
||||
</object>
|
||||
<object class="NSButton" id="1007048329">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{9, 248}, {103, 32}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1021315149"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="208306516">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">Popover</string>
|
||||
<reference key="NSSupport" ref="266679044"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="1007048329"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{470, 296}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1007048329"/>
|
||||
<string key="NSClassName">SubviewContentViews</string>
|
||||
</object>
|
||||
<object class="NSViewController" id="1044194765">
|
||||
<int key="showSeguePresentationStyle">0</int>
|
||||
</object>
|
||||
<object class="NSPopover" id="585528430">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSAppearance">1</int>
|
||||
<int key="NSBehavior">0</int>
|
||||
<double key="NSContentWidth">0.0</double>
|
||||
<double key="NSContentHeight">0.0</double>
|
||||
<bool key="NSAnimates">YES</bool>
|
||||
</object>
|
||||
<object class="NSCustomView" id="1002529485">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="917926539">
|
||||
<reference key="NSNextResponder" ref="1002529485"/>
|
||||
<int key="NSvFlags">298</int>
|
||||
<string key="NSFrame">{{18, 93}, {140, 17}}</string>
|
||||
<reference key="NSSuperview" ref="1002529485"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="534276285">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">138413056</int>
|
||||
<string key="NSContents">Custom Popover</string>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">16</double>
|
||||
<int key="NSfFlags">2072</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="917926539"/>
|
||||
<reference key="NSBackgroundColor" ref="734500331"/>
|
||||
<reference key="NSTextColor" ref="923377516"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{176, 203}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="917926539"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<nil key="NSClassName"/>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">DisplayPopover:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="1007048329"/>
|
||||
</object>
|
||||
<int key="connectionID">36</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">Popover</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="585528430"/>
|
||||
</object>
|
||||
<int key="connectionID">37</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1044194765"/>
|
||||
<reference key="destination" ref="1002529485"/>
|
||||
</object>
|
||||
<int key="connectionID">35</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">contentViewController</string>
|
||||
<reference key="source" ref="585528430"/>
|
||||
<reference key="destination" ref="1044194765"/>
|
||||
</object>
|
||||
<int key="connectionID">25</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1007048329"/>
|
||||
<reference ref="1021315149"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="1007048329"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="208306516"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="208306516"/>
|
||||
<reference key="parent" ref="1007048329"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="1044194765"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Popover View Controller</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="585528430"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="1002529485"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="917926539"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="917926539"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="534276285"/>
|
||||
</array>
|
||||
<reference key="parent" ref="1002529485"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">34</int>
|
||||
<reference key="object" ref="534276285"/>
|
||||
<reference key="parent" ref="917926539"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">38</int>
|
||||
<reference key="object" ref="1021315149"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="324415127"/>
|
||||
<reference ref="313505792"/>
|
||||
<reference ref="333097550"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">39</int>
|
||||
<reference key="object" ref="324415127"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="383664507"/>
|
||||
</array>
|
||||
<reference key="parent" ref="1021315149"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">40</int>
|
||||
<reference key="object" ref="313505792"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="163651564"/>
|
||||
</array>
|
||||
<reference key="parent" ref="1021315149"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">41</int>
|
||||
<reference key="object" ref="163651564"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="792121727"/>
|
||||
</array>
|
||||
<reference key="parent" ref="313505792"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">42</int>
|
||||
<reference key="object" ref="383664507"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="215765456"/>
|
||||
</array>
|
||||
<reference key="parent" ref="324415127"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">43</int>
|
||||
<reference key="object" ref="333097550"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="386147301"/>
|
||||
</array>
|
||||
<reference key="parent" ref="1021315149"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">44</int>
|
||||
<reference key="object" ref="386147301"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="79437833"/>
|
||||
</array>
|
||||
<reference key="parent" ref="333097550"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">45</int>
|
||||
<reference key="object" ref="79437833"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="572711598"/>
|
||||
</array>
|
||||
<reference key="parent" ref="386147301"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">46</int>
|
||||
<reference key="object" ref="572711598"/>
|
||||
<reference key="parent" ref="79437833"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">49</int>
|
||||
<reference key="object" ref="215765456"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="245523144"/>
|
||||
</array>
|
||||
<reference key="parent" ref="383664507"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">50</int>
|
||||
<reference key="object" ref="245523144"/>
|
||||
<reference key="parent" ref="215765456"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">53</int>
|
||||
<reference key="object" ref="792121727"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="417624284"/>
|
||||
</array>
|
||||
<reference key="parent" ref="163651564"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">54</int>
|
||||
<reference key="object" ref="417624284"/>
|
||||
<reference key="parent" ref="792121727"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPersistedLastKnownCanvasPosition">{155, 141.5}</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="39.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="40.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="45.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="46.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="49.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="50.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="53.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="54.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">54</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewContentViews</string>
|
||||
<string key="superclassName">NSView</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">DisplayPopover:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">DisplayPopover:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">DisplayPopover:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="outlets">
|
||||
<string key="NS.key.0">Popover</string>
|
||||
<string key="NS.object.0">NSPopover</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<string key="NS.key.0">Popover</string>
|
||||
<object class="IBToOneOutletInfo" key="NS.object.0">
|
||||
<string key="name">Popover</string>
|
||||
<string key="candidateClassName">NSPopover</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewContentViews.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewContentViews</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">DisplayPopover:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">DisplayPopover:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">DisplayPopover:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewContentViews.m</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewContentViewsController</string>
|
||||
<string key="superclassName">NSViewController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewContentViewsController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewContentViewsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewContentViewsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewContentViewsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewContentViewsController () : base ("SubviewContentViews", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewContentViews View {
|
||||
get {
|
||||
return (SubviewContentViews)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewContentViewsController")]
|
||||
public partial class SubviewContentViewsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,825 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSButton</string>
|
||||
<string>NSButtonCell</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSLevelIndicator</string>
|
||||
<string>NSLevelIndicatorCell</string>
|
||||
<string>NSProgressIndicator</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewIndicatorControlsController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSLevelIndicator" id="728198510">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{357, 112}, {96, 13}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="824092896"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSLevelIndicatorCell" key="NSCell" id="941262694">
|
||||
<int key="NSCellFlags">270532608</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="728198510"/>
|
||||
<double key="NSValue">2</double>
|
||||
<double key="NSMaxValue">5</double>
|
||||
<double key="NSWarningValue">2</double>
|
||||
<double key="NSCriticalValue">2</double>
|
||||
<int key="NSIndicatorStyle">3</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSLevelIndicator" id="479976394">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{161, 22}, {118, 12}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="745696790"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSLevelIndicatorCell" key="NSCell" id="972042391">
|
||||
<int key="NSCellFlags">270532608</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="479976394"/>
|
||||
<double key="NSValue">50</double>
|
||||
<double key="NSMaxValue">100</double>
|
||||
<double key="NSWarningValue">2</double>
|
||||
<double key="NSCriticalValue">2</double>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="305192158">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{431, 55}, {41, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="535685916"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="130818259">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">100%</string>
|
||||
<object class="NSFont" key="NSSupport" id="527961294">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="305192158"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="373745134">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="166677505">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSLevelIndicator" id="824092896">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{20, 80}, {433, 23}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="508704603"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSLevelIndicatorCell" key="NSCell" id="319419975">
|
||||
<int key="NSCellFlags">270532608</int>
|
||||
<int key="NSCellFlags2">0</int>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="824092896"/>
|
||||
<double key="NSValue">70</double>
|
||||
<double key="NSMaxValue">100</double>
|
||||
<double key="NSWarningValue">60</double>
|
||||
<double key="NSCriticalValue">85</double>
|
||||
<int key="NSNumberOfTickMarks">5</int>
|
||||
<int key="NSNumberOfMajorTickMarks">10</int>
|
||||
<int key="NSIndicatorStyle">1</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSButton" id="555516449">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{382, 216}, {77, 32}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="296783093"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSButtonCell" key="NSCell" id="81247620">
|
||||
<int key="NSCellFlags">67108864</int>
|
||||
<int key="NSCellFlags2">134217728</int>
|
||||
<string key="NSContents">100%</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="555516449"/>
|
||||
<int key="NSButtonFlags">-2038284288</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">200</int>
|
||||
<int key="NSPeriodicInterval">25</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSProgressIndicator" id="163603164">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{234, 147}, {16, 16}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="651138888"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:1431</string>
|
||||
<string key="NSHuggingPriority">{750, 750}</string>
|
||||
<int key="NSpiFlags">20750</int>
|
||||
<double key="NSMaxValue">100</double>
|
||||
</object>
|
||||
<object class="NSTextField" id="508704603">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{12, 55}, {26, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="305192158"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="178421291">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">0%</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="508704603"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="535685916">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">292</int>
|
||||
<string key="NSFrame">{{18, 20}, {137, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="479976394"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="694399496">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Relevance Indicators:</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="535685916"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="745696790">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">290</int>
|
||||
<string key="NSFrame">{{296, 20}, {159, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="621090297">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Feedback</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="745696790"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="651138888">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 111}, {106, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="728198510"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="1056162139">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Level Indicators:</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="651138888"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="507165445">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 149}, {212, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="163603164"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="756579796">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Asynchronous Progress Indicator:</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="507165445"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="281584514">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 200}, {210, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="555516449"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="512095854">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Indeterminate Progress Indicator:</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="281584514"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSProgressIndicator" id="296783093">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{20, 173}, {430, 20}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="507165445"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<string key="NSHuggingPriority">{250, 250}</string>
|
||||
<int key="NSpiFlags">16399</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="829321196">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 251}, {121, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="833790216"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="193694871">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Progress Indicator:</string>
|
||||
<reference key="NSSupport" ref="527961294"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="829321196"/>
|
||||
<reference key="NSBackgroundColor" ref="373745134"/>
|
||||
<reference key="NSTextColor" ref="166677505"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSProgressIndicator" id="833790216">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{20, 224}, {360, 20}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="281584514"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<string key="NSHuggingPriority">{250, 250}</string>
|
||||
<int key="NSpiFlags">16397</int>
|
||||
<double key="NSMaxValue">100</double>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{470, 296}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="829321196"/>
|
||||
<string key="NSClassName">SubviewIndicatorControls</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">ProgressIndicator</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="833790216"/>
|
||||
</object>
|
||||
<int key="connectionID">47</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">HundredPercent:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="555516449"/>
|
||||
</object>
|
||||
<int key="connectionID">48</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">Rating</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="728198510"/>
|
||||
</object>
|
||||
<int key="connectionID">49</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">Relevance</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="479976394"/>
|
||||
</object>
|
||||
<int key="connectionID">50</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">FeedbackLabel</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="745696790"/>
|
||||
</object>
|
||||
<int key="connectionID">51</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">Indeterminate</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="296783093"/>
|
||||
</object>
|
||||
<int key="connectionID">52</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">AsyncProgress</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="163603164"/>
|
||||
</object>
|
||||
<int key="connectionID">53</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">LevelIndicator</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="824092896"/>
|
||||
</object>
|
||||
<int key="connectionID">54</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="833790216"/>
|
||||
<reference ref="829321196"/>
|
||||
<reference ref="296783093"/>
|
||||
<reference ref="281584514"/>
|
||||
<reference ref="555516449"/>
|
||||
<reference ref="824092896"/>
|
||||
<reference ref="508704603"/>
|
||||
<reference ref="305192158"/>
|
||||
<reference ref="651138888"/>
|
||||
<reference ref="507165445"/>
|
||||
<reference ref="163603164"/>
|
||||
<reference ref="535685916"/>
|
||||
<reference ref="479976394"/>
|
||||
<reference ref="728198510"/>
|
||||
<reference ref="745696790"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="833790216"/>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="829321196"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="193694871"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="193694871"/>
|
||||
<reference key="parent" ref="829321196"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="296783093"/>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="281584514"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="512095854"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="512095854"/>
|
||||
<reference key="parent" ref="281584514"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="507165445"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="756579796"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">25</int>
|
||||
<reference key="object" ref="756579796"/>
|
||||
<reference key="parent" ref="507165445"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">26</int>
|
||||
<reference key="object" ref="163603164"/>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">27</int>
|
||||
<reference key="object" ref="555516449"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="81247620"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">28</int>
|
||||
<reference key="object" ref="81247620"/>
|
||||
<reference key="parent" ref="555516449"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="824092896"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="319419975"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="319419975"/>
|
||||
<reference key="parent" ref="824092896"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">31</int>
|
||||
<reference key="object" ref="651138888"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1056162139"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="1056162139"/>
|
||||
<reference key="parent" ref="651138888"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="508704603"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="178421291"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">34</int>
|
||||
<reference key="object" ref="178421291"/>
|
||||
<reference key="parent" ref="508704603"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">37</int>
|
||||
<reference key="object" ref="305192158"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="130818259"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">38</int>
|
||||
<reference key="object" ref="130818259"/>
|
||||
<reference key="parent" ref="305192158"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">39</int>
|
||||
<reference key="object" ref="535685916"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="694399496"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">40</int>
|
||||
<reference key="object" ref="694399496"/>
|
||||
<reference key="parent" ref="535685916"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">41</int>
|
||||
<reference key="object" ref="479976394"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="972042391"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">42</int>
|
||||
<reference key="object" ref="972042391"/>
|
||||
<reference key="parent" ref="479976394"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">43</int>
|
||||
<reference key="object" ref="728198510"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="941262694"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">44</int>
|
||||
<reference key="object" ref="941262694"/>
|
||||
<reference key="parent" ref="728198510"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">45</int>
|
||||
<reference key="object" ref="745696790"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="621090297"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">46</int>
|
||||
<reference key="object" ref="621090297"/>
|
||||
<reference key="parent" ref="745696790"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="37.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="39.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="40.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="45.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="46.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">54</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewIndicatorControls</string>
|
||||
<string key="superclassName">NSView</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">HundredPercent:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">HundredPercent:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">HundredPercent:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="AsyncProgress">NSProgressIndicator</string>
|
||||
<string key="FeedbackLabel">NSTextField</string>
|
||||
<string key="Indeterminate">NSProgressIndicator</string>
|
||||
<string key="LevelIndicator">NSLevelIndicator</string>
|
||||
<string key="ProgressIndicator">NSProgressIndicator</string>
|
||||
<string key="Rating">NSLevelIndicator</string>
|
||||
<string key="Relevance">NSLevelIndicator</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="AsyncProgress">
|
||||
<string key="name">AsyncProgress</string>
|
||||
<string key="candidateClassName">NSProgressIndicator</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="FeedbackLabel">
|
||||
<string key="name">FeedbackLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="Indeterminate">
|
||||
<string key="name">Indeterminate</string>
|
||||
<string key="candidateClassName">NSProgressIndicator</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="LevelIndicator">
|
||||
<string key="name">LevelIndicator</string>
|
||||
<string key="candidateClassName">NSLevelIndicator</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="ProgressIndicator">
|
||||
<string key="name">ProgressIndicator</string>
|
||||
<string key="candidateClassName">NSProgressIndicator</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="Rating">
|
||||
<string key="name">Rating</string>
|
||||
<string key="candidateClassName">NSLevelIndicator</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="Relevance">
|
||||
<string key="name">Relevance</string>
|
||||
<string key="candidateClassName">NSLevelIndicator</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewIndicatorControls.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewIndicatorControls</string>
|
||||
<object class="NSMutableDictionary" key="actions">
|
||||
<string key="NS.key.0">HundredPercent:</string>
|
||||
<string key="NS.object.0">id</string>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
||||
<string key="NS.key.0">HundredPercent:</string>
|
||||
<object class="IBActionInfo" key="NS.object.0">
|
||||
<string key="name">HundredPercent:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewIndicatorControls.m</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewIndicatorControlsController</string>
|
||||
<string key="superclassName">NSViewController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewIndicatorControlsController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewIndicatorControlsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewIndicatorControlsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewIndicatorControlsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewIndicatorControlsController () : base ("SubviewIndicatorControls", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewIndicatorControls View {
|
||||
get {
|
||||
return (SubviewIndicatorControls)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewIndicatorControlsController")]
|
||||
public partial class SubviewIndicatorControlsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,976 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSComboBox</string>
|
||||
<string>NSComboBoxCell</string>
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSMenu</string>
|
||||
<string>NSMenuItem</string>
|
||||
<string>NSPopUpButton</string>
|
||||
<string>NSPopUpButtonCell</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewMenuControlsController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextField" id="858013139">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">290</int>
|
||||
<string key="NSFrame">{{18, 20}, {379, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="4290761">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Label</string>
|
||||
<object class="NSFont" key="NSSupport" id="1072016119">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="858013139"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="300791285">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<object class="NSColor" key="NSColor" id="904932675">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="602439083">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<object class="NSColor" key="NSColor" id="917415558">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSComboBox" id="928731641">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">266</int>
|
||||
<string key="NSFrame">{{20, 137}, {378, 26}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="858013139"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSComboBoxCell" key="NSCell" id="9816876">
|
||||
<int key="NSCellFlags">342884417</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="928731641"/>
|
||||
<bool key="NSDrawsBackground">YES</bool>
|
||||
<object class="NSColor" key="NSBackgroundColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">textBackgroundColor</string>
|
||||
<object class="NSColor" key="NSColor" id="621234582">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="577945420">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlTextColor</string>
|
||||
<reference key="NSColor" ref="917415558"/>
|
||||
</object>
|
||||
<int key="NSVisibleItemCount">5</int>
|
||||
<bool key="NSHasVerticalScroller">YES</bool>
|
||||
<array class="NSMutableArray" key="NSPopUpListData">
|
||||
<string>Item 1</string>
|
||||
<string>Item 2</string>
|
||||
<string>Item 3</string>
|
||||
</array>
|
||||
<reference key="NSDelegate" ref="928731641"/>
|
||||
<object class="NSComboTableView" key="NSTableView" id="782764320">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<string key="NSFrameSize">{13, 63}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:29</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<bool key="NSControlAllowsExpansionToolTips">YES</bool>
|
||||
<string key="NSControlAction">tableViewAction:</string>
|
||||
<reference key="NSControlTarget" ref="9816876"/>
|
||||
<array class="NSMutableArray" key="NSTableColumns">
|
||||
<object class="NSTableColumn">
|
||||
<string key="NSIdentifier">0</string>
|
||||
<double key="NSWidth">10</double>
|
||||
<double key="NSMinWidth">10</double>
|
||||
<double key="NSMaxWidth">3.4028234663852886e+38</double>
|
||||
<object class="NSTableHeaderCell" key="NSHeaderCell">
|
||||
<int key="NSCellFlags">67108928</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<string key="NSContents"/>
|
||||
<object class="NSFont" key="NSSupport">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">11</double>
|
||||
<int key="NSfFlags">3100</int>
|
||||
</object>
|
||||
<object class="NSColor" key="NSBackgroundColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">headerColor</string>
|
||||
<reference key="NSColor" ref="621234582"/>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">headerTextColor</string>
|
||||
<reference key="NSColor" ref="917415558"/>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSTextFieldCell" key="NSDataCell">
|
||||
<int key="NSCellFlags">337641536</int>
|
||||
<int key="NSCellFlags2">268437504</int>
|
||||
<string key="NSContents">Item 3</string>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<reference key="NSControlView" ref="782764320"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="543588666">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlBackgroundColor</string>
|
||||
<reference key="NSColor" ref="904932675"/>
|
||||
</object>
|
||||
<reference key="NSTextColor" ref="577945420"/>
|
||||
</object>
|
||||
<int key="NSResizingMask">3</int>
|
||||
<bool key="NSIsResizeable">YES</bool>
|
||||
<reference key="NSTableView" ref="782764320"/>
|
||||
</object>
|
||||
</array>
|
||||
<double key="NSIntercellSpacingWidth">3</double>
|
||||
<double key="NSIntercellSpacingHeight">2</double>
|
||||
<reference key="NSBackgroundColor" ref="543588666"/>
|
||||
<object class="NSColor" key="NSGridColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">gridColor</string>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<double key="NSRowHeight">19</double>
|
||||
<string key="NSAction">tableViewAction:</string>
|
||||
<int key="NSTvFlags">-765427712</int>
|
||||
<reference key="NSDelegate" ref="9816876"/>
|
||||
<reference key="NSDataSource" ref="9816876"/>
|
||||
<reference key="NSTarget" ref="9816876"/>
|
||||
<int key="NSColumnAutoresizingStyle">1</int>
|
||||
<int key="NSDraggingSourceMaskForLocal">-1</int>
|
||||
<int key="NSDraggingSourceMaskForNonLocal">0</int>
|
||||
<bool key="NSAllowsTypeSelect">YES</bool>
|
||||
<int key="NSTableViewDraggingDestinationStyle">0</int>
|
||||
<int key="NSTableViewGroupRowStyle">1</int>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSPopUpButton" id="30078526">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{348, 282}, {50, 26}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="72222236"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSPopUpButtonCell" key="NSCell" id="1072495720">
|
||||
<int key="NSCellFlags">71303232</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<object class="NSFont" key="NSSupport" id="959603100">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1301</int>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="30078526"/>
|
||||
<int key="NSButtonFlags">109199360</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<object class="NSFont" key="NSAlternateImage" id="194900917">
|
||||
<string key="NSName">.HelveticaNeueDeskInterface-Regular</string>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
<object class="NSMenuItem" key="NSMenuItem" id="510600437">
|
||||
<reference key="NSMenu" ref="216036948"/>
|
||||
<bool key="NSIsHidden">YES</bool>
|
||||
<string key="NSTitle"/>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<int key="NSState">1</int>
|
||||
<object class="NSCustomResource" key="NSImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSActionTemplate</string>
|
||||
</object>
|
||||
<object class="NSCustomResource" key="NSOnImage" id="303554877">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSMenuCheckmark</string>
|
||||
</object>
|
||||
<object class="NSCustomResource" key="NSMixedImage" id="641189539">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">NSMenuMixedState</string>
|
||||
</object>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="1072495720"/>
|
||||
</object>
|
||||
<bool key="NSMenuItemRespectAlignment">YES</bool>
|
||||
<object class="NSMenu" key="NSMenu" id="216036948">
|
||||
<string key="NSTitle"/>
|
||||
<array class="NSMutableArray" key="NSMenuItems">
|
||||
<reference ref="510600437"/>
|
||||
<object class="NSMenuItem" id="821119481">
|
||||
<reference key="NSMenu" ref="216036948"/>
|
||||
<string key="NSTitle">Item 1</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="1072495720"/>
|
||||
</object>
|
||||
<object class="NSMenuItem" id="1007058453">
|
||||
<reference key="NSMenu" ref="216036948"/>
|
||||
<string key="NSTitle">Item 2</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="1072495720"/>
|
||||
</object>
|
||||
<object class="NSMenuItem" id="181752022">
|
||||
<reference key="NSMenu" ref="216036948"/>
|
||||
<string key="NSTitle">Item 3</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="1072495720"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="NSSelectedIndex">3</int>
|
||||
<bool key="NSPullDown">YES</bool>
|
||||
<int key="NSPreferredEdge">1</int>
|
||||
<bool key="NSUsesItemFromMenu">YES</bool>
|
||||
<bool key="NSAltersState">YES</bool>
|
||||
<int key="NSArrowPosition">2</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="72222236">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 248}, {218, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="224604028"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="5536866">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Drop-Down Menu:</string>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="72222236"/>
|
||||
<reference key="NSBackgroundColor" ref="300791285"/>
|
||||
<reference key="NSTextColor" ref="602439083"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSPopUpButton" id="224604028">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{17, 213}, {220, 26}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="275679939"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSPopUpButtonCell" key="NSCell" id="936576820">
|
||||
<int key="NSCellFlags">71303232</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<reference key="NSSupport" ref="959603100"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="224604028"/>
|
||||
<int key="NSButtonFlags">109199360</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<reference key="NSAlternateImage" ref="194900917"/>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
<object class="NSMenuItem" key="NSMenuItem" id="735820901">
|
||||
<reference key="NSMenu" ref="1032557428"/>
|
||||
<bool key="NSIsHidden">YES</bool>
|
||||
<string key="NSTitle">Select an item</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<int key="NSState">1</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="936576820"/>
|
||||
</object>
|
||||
<bool key="NSMenuItemRespectAlignment">YES</bool>
|
||||
<object class="NSMenu" key="NSMenu" id="1032557428">
|
||||
<string key="NSTitle"/>
|
||||
<array class="NSMutableArray" key="NSMenuItems">
|
||||
<reference ref="735820901"/>
|
||||
<object class="NSMenuItem" id="38358159">
|
||||
<reference key="NSMenu" ref="1032557428"/>
|
||||
<string key="NSTitle">Item 1</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="936576820"/>
|
||||
</object>
|
||||
<object class="NSMenuItem" id="102126778">
|
||||
<reference key="NSMenu" ref="1032557428"/>
|
||||
<string key="NSTitle">Item 2</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="936576820"/>
|
||||
</object>
|
||||
<object class="NSMenuItem" id="677548427">
|
||||
<reference key="NSMenu" ref="1032557428"/>
|
||||
<string key="NSTitle">Item 3</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="936576820"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<bool key="NSPullDown">YES</bool>
|
||||
<int key="NSPreferredEdge">1</int>
|
||||
<bool key="NSUsesItemFromMenu">YES</bool>
|
||||
<bool key="NSAltersState">YES</bool>
|
||||
<int key="NSArrowPosition">2</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
<object class="NSTextField" id="322090315">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">265</int>
|
||||
<string key="NSFrame">{{266, 317}, {131, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="464367852"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="211827551">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">71304192</int>
|
||||
<string key="NSContents">Action Menu:</string>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="322090315"/>
|
||||
<reference key="NSBackgroundColor" ref="300791285"/>
|
||||
<reference key="NSTextColor" ref="602439083"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="275679939">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 169}, {218, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="928731641"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="507000272">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Combonation Box:</string>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="275679939"/>
|
||||
<reference key="NSBackgroundColor" ref="300791285"/>
|
||||
<reference key="NSTextColor" ref="602439083"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="931084085">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 317}, {218, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="322090315"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="290966322">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Pop-up Menu:</string>
|
||||
<reference key="NSSupport" ref="1072016119"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="931084085"/>
|
||||
<reference key="NSBackgroundColor" ref="300791285"/>
|
||||
<reference key="NSTextColor" ref="602439083"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSPopUpButton" id="464367852">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 282}, {219, 26}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSNextKeyView" ref="30078526"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSPopUpButtonCell" key="NSCell" id="320364609">
|
||||
<int key="NSCellFlags">71303232</int>
|
||||
<int key="NSCellFlags2">2048</int>
|
||||
<reference key="NSSupport" ref="959603100"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="464367852"/>
|
||||
<int key="NSButtonFlags">109199360</int>
|
||||
<int key="NSButtonFlags2">129</int>
|
||||
<reference key="NSAlternateImage" ref="194900917"/>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
<int key="NSPeriodicDelay">400</int>
|
||||
<int key="NSPeriodicInterval">75</int>
|
||||
<object class="NSMenuItem" key="NSMenuItem" id="786071903">
|
||||
<reference key="NSMenu" ref="248637168"/>
|
||||
<string key="NSTitle">Item 3</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<int key="NSState">1</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="320364609"/>
|
||||
</object>
|
||||
<bool key="NSMenuItemRespectAlignment">YES</bool>
|
||||
<object class="NSMenu" key="NSMenu" id="248637168">
|
||||
<string key="NSTitle"/>
|
||||
<array class="NSMutableArray" key="NSMenuItems">
|
||||
<object class="NSMenuItem" id="92310902">
|
||||
<reference key="NSMenu" ref="248637168"/>
|
||||
<string key="NSTitle">Item 1</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="320364609"/>
|
||||
</object>
|
||||
<object class="NSMenuItem" id="56314845">
|
||||
<reference key="NSMenu" ref="248637168"/>
|
||||
<string key="NSTitle">Item 2</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSKeyEquivModMask">1048576</int>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<reference key="NSOnImage" ref="303554877"/>
|
||||
<reference key="NSMixedImage" ref="641189539"/>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
<reference key="NSTarget" ref="320364609"/>
|
||||
</object>
|
||||
<reference ref="786071903"/>
|
||||
</array>
|
||||
</object>
|
||||
<int key="NSSelectedIndex">2</int>
|
||||
<int key="NSPreferredEdge">1</int>
|
||||
<bool key="NSUsesItemFromMenu">YES</bool>
|
||||
<bool key="NSAltersState">YES</bool>
|
||||
<int key="NSArrowPosition">2</int>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{415, 354}</string>
|
||||
<reference key="NSNextKeyView" ref="931084085"/>
|
||||
<string key="NSClassName">SubviewMenuControls</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemOne:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="92310902"/>
|
||||
</object>
|
||||
<int key="connectionID">68</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemTwo:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="56314845"/>
|
||||
</object>
|
||||
<int key="connectionID">69</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemThree:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="786071903"/>
|
||||
</object>
|
||||
<int key="connectionID">70</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemOne:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="38358159"/>
|
||||
</object>
|
||||
<int key="connectionID">71</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemTwo:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="102126778"/>
|
||||
</object>
|
||||
<int key="connectionID">72</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemThree:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="677548427"/>
|
||||
</object>
|
||||
<int key="connectionID">73</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemOne:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="821119481"/>
|
||||
</object>
|
||||
<int key="connectionID">74</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemTwo:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="1007058453"/>
|
||||
</object>
|
||||
<int key="connectionID">75</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBActionConnection" key="connection">
|
||||
<string key="label">ItemThree:</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="181752022"/>
|
||||
</object>
|
||||
<int key="connectionID">76</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">DropDownSelected</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="735820901"/>
|
||||
</object>
|
||||
<int key="connectionID">77</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">FeedbackLabel</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="858013139"/>
|
||||
</object>
|
||||
<int key="connectionID">78</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="464367852"/>
|
||||
<reference ref="931084085"/>
|
||||
<reference ref="224604028"/>
|
||||
<reference ref="72222236"/>
|
||||
<reference ref="30078526"/>
|
||||
<reference ref="322090315"/>
|
||||
<reference ref="275679939"/>
|
||||
<reference ref="928731641"/>
|
||||
<reference ref="858013139"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="464367852"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="320364609"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="320364609"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="248637168"/>
|
||||
</array>
|
||||
<reference key="parent" ref="464367852"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="248637168"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="786071903"/>
|
||||
<reference ref="56314845"/>
|
||||
<reference ref="92310902"/>
|
||||
</array>
|
||||
<reference key="parent" ref="320364609"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="786071903"/>
|
||||
<reference key="parent" ref="248637168"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="56314845"/>
|
||||
<reference key="parent" ref="248637168"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="92310902"/>
|
||||
<reference key="parent" ref="248637168"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="931084085"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="290966322"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">25</int>
|
||||
<reference key="object" ref="290966322"/>
|
||||
<reference key="parent" ref="931084085"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">26</int>
|
||||
<reference key="object" ref="224604028"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="936576820"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">27</int>
|
||||
<reference key="object" ref="72222236"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="5536866"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">28</int>
|
||||
<reference key="object" ref="5536866"/>
|
||||
<reference key="parent" ref="72222236"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="936576820"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1032557428"/>
|
||||
</array>
|
||||
<reference key="parent" ref="224604028"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="1032557428"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="735820901"/>
|
||||
<reference ref="38358159"/>
|
||||
<reference ref="102126778"/>
|
||||
<reference ref="677548427"/>
|
||||
</array>
|
||||
<reference key="parent" ref="936576820"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">31</int>
|
||||
<reference key="object" ref="735820901"/>
|
||||
<reference key="parent" ref="1032557428"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="38358159"/>
|
||||
<reference key="parent" ref="1032557428"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="102126778"/>
|
||||
<reference key="parent" ref="1032557428"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">44</int>
|
||||
<reference key="object" ref="30078526"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1072495720"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">45</int>
|
||||
<reference key="object" ref="1072495720"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="216036948"/>
|
||||
</array>
|
||||
<reference key="parent" ref="30078526"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">46</int>
|
||||
<reference key="object" ref="216036948"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1007058453"/>
|
||||
<reference ref="821119481"/>
|
||||
<reference ref="510600437"/>
|
||||
<reference ref="181752022"/>
|
||||
</array>
|
||||
<reference key="parent" ref="1072495720"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">47</int>
|
||||
<reference key="object" ref="1007058453"/>
|
||||
<reference key="parent" ref="216036948"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">48</int>
|
||||
<reference key="object" ref="821119481"/>
|
||||
<reference key="parent" ref="216036948"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">49</int>
|
||||
<reference key="object" ref="510600437"/>
|
||||
<reference key="parent" ref="216036948"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">50</int>
|
||||
<reference key="object" ref="322090315"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="211827551"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">51</int>
|
||||
<reference key="object" ref="211827551"/>
|
||||
<reference key="parent" ref="322090315"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">60</int>
|
||||
<reference key="object" ref="275679939"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="507000272"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">61</int>
|
||||
<reference key="object" ref="507000272"/>
|
||||
<reference key="parent" ref="275679939"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">62</int>
|
||||
<reference key="object" ref="928731641"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="9816876"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">63</int>
|
||||
<reference key="object" ref="9816876"/>
|
||||
<reference key="parent" ref="928731641"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">64</int>
|
||||
<reference key="object" ref="858013139"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="4290761"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">65</int>
|
||||
<reference key="object" ref="4290761"/>
|
||||
<reference key="parent" ref="858013139"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">66</int>
|
||||
<reference key="object" ref="677548427"/>
|
||||
<reference key="parent" ref="1032557428"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">67</int>
|
||||
<reference key="object" ref="181752022"/>
|
||||
<reference key="parent" ref="216036948"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPersistedLastKnownCanvasPosition">{304.5, 447}</string>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="45.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="46.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="47.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="48.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="49.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="50.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="51.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="60.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="61.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="62.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="63.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="64.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="65.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="66.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="67.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">78</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NSActionTemplate">{14, 14}</string>
|
||||
<string key="NSMenuCheckmark">{12, 12}</string>
|
||||
<string key="NSMenuMixedState">{10, 2}</string>
|
||||
</dictionary>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewMenuControlsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewMenuControlsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewMenuControlsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewMenuControlsController () : base ("SubviewMenuControls", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewMenuControls View {
|
||||
get {
|
||||
return (SubviewMenuControls)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewMenuControlsController")]
|
||||
public partial class SubviewMenuControlsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewSelectionControlsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewSelectionControlsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewSelectionControlsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewSelectionControlsController () : base ("SubviewSelectionControls", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewSelectionControls View {
|
||||
get {
|
||||
return (SubviewSelectionControls)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewSelectionControlsController")]
|
||||
public partial class SubviewSelectionControlsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,806 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">101000</int>
|
||||
<string key="IBDocument.SystemVersion">14D131</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">7702</string>
|
||||
<string key="IBDocument.AppKitVersion">1347.57</string>
|
||||
<string key="IBDocument.HIToolboxVersion">758.70</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="NS.object.0">7702</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>NSCustomObject</string>
|
||||
<string>NSCustomView</string>
|
||||
<string>NSNumberFormatter</string>
|
||||
<string>NSScrollView</string>
|
||||
<string>NSScroller</string>
|
||||
<string>NSSecureTextField</string>
|
||||
<string>NSSecureTextFieldCell</string>
|
||||
<string>NSTextField</string>
|
||||
<string>NSTextFieldCell</string>
|
||||
<string>NSTextView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</array>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.Metadata"/>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
||||
<object class="NSCustomObject" id="1001">
|
||||
<string key="NSClassName">SubviewTextControlsController</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1003">
|
||||
<string key="NSClassName">FirstResponder</string>
|
||||
</object>
|
||||
<object class="NSCustomObject" id="1004">
|
||||
<string key="NSClassName">NSApplication</string>
|
||||
</object>
|
||||
<object class="NSCustomView" id="159381209">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSScrollView" id="854316681">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">274</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSClipView" id="1061510511">
|
||||
<reference key="NSNextResponder" ref="854316681"/>
|
||||
<int key="NSvFlags">2322</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="NSTextView" id="1046090244">
|
||||
<reference key="NSNextResponder" ref="1061510511"/>
|
||||
<int key="NSvFlags">2322</int>
|
||||
<set class="NSMutableSet" key="NSDragTypes">
|
||||
<string>Apple HTML pasteboard type</string>
|
||||
<string>Apple PDF pasteboard type</string>
|
||||
<string>Apple PICT pasteboard type</string>
|
||||
<string>Apple PNG pasteboard type</string>
|
||||
<string>Apple URL pasteboard type</string>
|
||||
<string>CorePasteboardFlavorType 0x6D6F6F76</string>
|
||||
<string>NSColor pasteboard type</string>
|
||||
<string>NSFilenamesPboardType</string>
|
||||
<string>NSStringPboardType</string>
|
||||
<string>NeXT Encapsulated PostScript v1.2 pasteboard type</string>
|
||||
<string>NeXT RTFD pasteboard type</string>
|
||||
<string>NeXT Rich Text Format v1.0 pasteboard type</string>
|
||||
<string>NeXT TIFF v4.0 pasteboard type</string>
|
||||
<string>NeXT font pasteboard type</string>
|
||||
<string>NeXT ruler pasteboard type</string>
|
||||
<string>WebURLsWithTitlesPboardType</string>
|
||||
<string>public.url</string>
|
||||
</set>
|
||||
<string key="NSFrameSize">{428, 158}</string>
|
||||
<reference key="NSSuperview" ref="1061510511"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="813690836"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:13</string>
|
||||
<object class="NSTextContainer" key="NSTextContainer" id="597338811">
|
||||
<object class="NSLayoutManager" key="NSLayoutManager">
|
||||
<object class="NSTextStorage" key="NSTextStorage">
|
||||
<object class="NSMutableString" key="NSString">
|
||||
<characters key="NS.bytes"/>
|
||||
</object>
|
||||
<nil key="NSDelegate"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="NSTextContainers">
|
||||
<reference ref="597338811"/>
|
||||
</array>
|
||||
<int key="NSLMFlags">166</int>
|
||||
<nil key="NSDelegate"/>
|
||||
</object>
|
||||
<reference key="NSTextView" ref="1046090244"/>
|
||||
<double key="NSWidth">428</double>
|
||||
<int key="NSTCFlags">1</int>
|
||||
</object>
|
||||
<object class="NSTextViewSharedData" key="NSSharedData">
|
||||
<int key="NSFlags">130453479</int>
|
||||
<int key="NSTextCheckingTypes">0</int>
|
||||
<nil key="NSMarkedAttributes"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="535012352">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<dictionary key="NSSelectedAttributes">
|
||||
<object class="NSColor" key="NSBackgroundColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">selectedTextBackgroundColor</string>
|
||||
<object class="NSColor" key="NSColor" id="714809445">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">selectedTextColor</string>
|
||||
<object class="NSColor" key="NSColor" id="1013016888">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="NSColor" key="NSInsertionColor">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlTextColor</string>
|
||||
<reference key="NSColor" ref="1013016888"/>
|
||||
</object>
|
||||
<dictionary key="NSLinkAttributes">
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwIDEAA</bytes>
|
||||
</object>
|
||||
<object class="NSCursor" key="NSCursor">
|
||||
<string key="NSHotSpot">{8, -8}</string>
|
||||
<int key="NSCursorType">13</int>
|
||||
</object>
|
||||
<integer value="1" key="NSUnderline"/>
|
||||
</dictionary>
|
||||
<nil key="NSDefaultParagraphStyle"/>
|
||||
<object class="NSTextFinder" key="NSTextFinder">
|
||||
<reference key="NSTextFinderClient" ref="1046090244"/>
|
||||
<reference key="NSFindBarContainer" ref="854316681"/>
|
||||
<int key="NSTextFinderStyle">2</int>
|
||||
<bool key="NSIncrementalSearchingEnabled">NO</bool>
|
||||
<bool key="NSIncrementalSearchingShouldDimContentView">YES</bool>
|
||||
</object>
|
||||
<int key="NSPreferredTextFinderStyle">2</int>
|
||||
</object>
|
||||
<int key="NSTVFlags">70</int>
|
||||
<string key="NSMaxSize">{463, 10000000}</string>
|
||||
<nil key="NSDelegate"/>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{1, 1}, {428, 158}}</string>
|
||||
<reference key="NSSuperview" ref="854316681"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1046090244"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:11</string>
|
||||
<reference key="NSDocView" ref="1046090244"/>
|
||||
<reference key="NSBGColor" ref="535012352"/>
|
||||
<object class="NSCursor" key="NSCursor">
|
||||
<string key="NSHotSpot">{4, 5}</string>
|
||||
<object class="NSImage" key="NSImage">
|
||||
<int key="NSImageFlags">12582912</int>
|
||||
<array class="NSMutableArray" key="NSReps">
|
||||
<array>
|
||||
<integer value="0"/>
|
||||
<object class="NSBitmapImageRep">
|
||||
<object class="NSData" key="NSTIFFRepresentation">
|
||||
<bytes key="NS.bytes">TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym
|
||||
SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA
|
||||
AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA
|
||||
AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA
|
||||
AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</array>
|
||||
<object class="NSColor" key="NSColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MCAwAA</bytes>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<int key="NScvFlags">4</int>
|
||||
<bool key="NSAutomaticallyAdjustsContentInsets">YES</bool>
|
||||
</object>
|
||||
<object class="NSScroller" id="166071578">
|
||||
<reference key="NSNextResponder" ref="854316681"/>
|
||||
<int key="NSvFlags">256</int>
|
||||
<string key="NSFrame">{{413, 1}, {16, 158}}</string>
|
||||
<reference key="NSSuperview" ref="854316681"/>
|
||||
<reference key="NSWindow"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:85</string>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<string key="NSControlAction">_doScroller:</string>
|
||||
<reference key="NSControlTarget" ref="854316681"/>
|
||||
<reference key="NSTarget" ref="854316681"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
<double key="NSCurValue">1</double>
|
||||
<double key="NSPercent">0.85256409645080566</double>
|
||||
</object>
|
||||
<object class="NSScroller" id="813690836">
|
||||
<reference key="NSNextResponder" ref="854316681"/>
|
||||
<int key="NSvFlags">-2147483392</int>
|
||||
<string key="NSFrame">{{-100, -100}, {87, 18}}</string>
|
||||
<reference key="NSSuperview" ref="854316681"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1061510511"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:33</string>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<string key="NSControlAction">_doScroller:</string>
|
||||
<reference key="NSControlTarget" ref="854316681"/>
|
||||
<int key="NSsFlags">1</int>
|
||||
<reference key="NSTarget" ref="854316681"/>
|
||||
<string key="NSAction">_doScroller:</string>
|
||||
<double key="NSCurValue">1</double>
|
||||
<double key="NSPercent">0.94565218687057495</double>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrame">{{20, 45}, {430, 160}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1061510511"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<int key="NSsFlags">133138</int>
|
||||
<reference key="NSVScroller" ref="166071578"/>
|
||||
<reference key="NSHScroller" ref="813690836"/>
|
||||
<reference key="NSContentView" ref="1061510511"/>
|
||||
<double key="NSMinMagnification">0.25</double>
|
||||
<double key="NSMaxMagnification">4</double>
|
||||
<double key="NSMagnification">1</double>
|
||||
</object>
|
||||
<object class="NSTextField" id="144219646">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{113, 219}, {119, 22}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="253224402"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="349376468">
|
||||
<int key="NSCellFlags">-1804599231</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<object class="NSFont" key="NSSupport" id="724516035">
|
||||
<bool key="IBIsSystemFont">YES</bool>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">1044</int>
|
||||
</object>
|
||||
<object class="NSNumberFormatter" key="NSFormatter" id="771611535">
|
||||
<dictionary class="NSMutableDictionary" key="NS.attributes">
|
||||
<boolean value="YES" key="allowsFloats"/>
|
||||
<integer value="1040" key="formatterBehavior"/>
|
||||
<object class="NSLocale" key="locale">
|
||||
<string key="NS.identifier"/>
|
||||
</object>
|
||||
<string key="negativeInfinitySymbol">-∞</string>
|
||||
<string key="nilSymbol"/>
|
||||
<integer value="1" key="numberStyle"/>
|
||||
<string key="positiveInfinitySymbol">+∞</string>
|
||||
</dictionary>
|
||||
<string key="NS.positiveformat">#,##0.###</string>
|
||||
<string key="NS.negativeformat">#,##0.###</string>
|
||||
<nil key="NS.positiveattrs"/>
|
||||
<nil key="NS.negativeattrs"/>
|
||||
<nil key="NS.zero"/>
|
||||
<object class="NSAttributedString" key="NS.nil">
|
||||
<string key="NSString"/>
|
||||
</object>
|
||||
<object class="NSAttributedString" key="NS.nan">
|
||||
<string key="NSString">NaN</string>
|
||||
<dictionary key="NSAttributes"/>
|
||||
</object>
|
||||
<object class="NSDecimalNumberPlaceholder" key="NS.min" id="197647554">
|
||||
<int key="NS.exponent">0</int>
|
||||
<int key="NS.length">0</int>
|
||||
<bool key="NS.negative">YES</bool>
|
||||
<bool key="NS.compact">NO</bool>
|
||||
<int key="NS.mantissa.bo">1</int>
|
||||
<bytes key="NS.mantissa">AAAAAAAAAAAAAAAAAAAAAA</bytes>
|
||||
</object>
|
||||
<reference key="NS.max" ref="197647554"/>
|
||||
<object class="NSDecimalNumberHandler" key="NS.rounding">
|
||||
<int key="NS.roundingmode">3</int>
|
||||
<bool key="NS.raise.overflow">YES</bool>
|
||||
<bool key="NS.raise.underflow">YES</bool>
|
||||
<bool key="NS.raise.dividebyzero">YES</bool>
|
||||
</object>
|
||||
<string key="NS.decimal">.</string>
|
||||
<string key="NS.thousand">,</string>
|
||||
<bool key="NS.hasthousands">YES</bool>
|
||||
<bool key="NS.localized">NO</bool>
|
||||
<bool key="NS.allowsfloats">YES</bool>
|
||||
</object>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="144219646"/>
|
||||
<bool key="NSDrawsBackground">YES</bool>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="189228389">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">textBackgroundColor</string>
|
||||
<reference key="NSColor" ref="535012352"/>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="605802425">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">textColor</string>
|
||||
<reference key="NSColor" ref="1013016888"/>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSSecureTextField" id="230764834">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{323, 256}, {127, 22}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="206690647"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSSecureTextFieldCell" key="NSCell" id="887544777">
|
||||
<int key="NSCellFlags">342884416</int>
|
||||
<int key="NSCellFlags2">272630848</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="230764834"/>
|
||||
<bool key="NSDrawsBackground">YES</bool>
|
||||
<reference key="NSBackgroundColor" ref="189228389"/>
|
||||
<reference key="NSTextColor" ref="605802425"/>
|
||||
<array key="NSAllowedInputLocales">
|
||||
<string>NSAllRomanInputSourcesLocaleIdentifier</string>
|
||||
</array>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="939887443">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{113, 256}, {119, 22}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="542610502"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="682603705">
|
||||
<int key="NSCellFlags">-1804599231</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents"/>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSPlaceholderString">User ID</string>
|
||||
<string key="NSCellIdentifier">_NS:9</string>
|
||||
<reference key="NSControlView" ref="939887443"/>
|
||||
<bool key="NSDrawsBackground">YES</bool>
|
||||
<reference key="NSBackgroundColor" ref="189228389"/>
|
||||
<reference key="NSTextColor" ref="605802425"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="542610502">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{248, 259}, {69, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="230764834"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="836679492">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Password:</string>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="542610502"/>
|
||||
<object class="NSColor" key="NSBackgroundColor" id="916318900">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">controlColor</string>
|
||||
<reference key="NSColor" ref="714809445"/>
|
||||
</object>
|
||||
<object class="NSColor" key="NSTextColor" id="793843031">
|
||||
<int key="NSColorSpace">6</int>
|
||||
<string key="NSCatalogName">System</string>
|
||||
<string key="NSColorName">labelColor</string>
|
||||
<reference key="NSColor" ref="1013016888"/>
|
||||
</object>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="253224402">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">290</int>
|
||||
<string key="NSFrame">{{18, 20}, {434, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="728082204">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Feedback</string>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="253224402"/>
|
||||
<reference key="NSBackgroundColor" ref="916318900"/>
|
||||
<reference key="NSTextColor" ref="793843031"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="206690647">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 224}, {58, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="144219646"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="947509345">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">Number:</string>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="206690647"/>
|
||||
<reference key="NSBackgroundColor" ref="916318900"/>
|
||||
<reference key="NSTextColor" ref="793843031"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
<object class="NSTextField" id="1002275598">
|
||||
<reference key="NSNextResponder" ref="159381209"/>
|
||||
<int key="NSvFlags">268</int>
|
||||
<string key="NSFrame">{{18, 259}, {81, 17}}</string>
|
||||
<reference key="NSSuperview" ref="159381209"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="939887443"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:526</string>
|
||||
<string key="NSHuggingPriority">{251, 750}</string>
|
||||
<bool key="NSEnabled">YES</bool>
|
||||
<object class="NSTextFieldCell" key="NSCell" id="647162134">
|
||||
<int key="NSCellFlags">68157504</int>
|
||||
<int key="NSCellFlags2">272630784</int>
|
||||
<string key="NSContents">User Name: </string>
|
||||
<reference key="NSSupport" ref="724516035"/>
|
||||
<string key="NSCellIdentifier">_NS:526</string>
|
||||
<reference key="NSControlView" ref="1002275598"/>
|
||||
<reference key="NSBackgroundColor" ref="916318900"/>
|
||||
<reference key="NSTextColor" ref="793843031"/>
|
||||
</object>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSTextFieldAlignmentRectInsetsVersion">1</int>
|
||||
</object>
|
||||
</array>
|
||||
<string key="NSFrameSize">{470, 296}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1002275598"/>
|
||||
<string key="NSClassName">SubviewTextControls</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="1001"/>
|
||||
<reference key="destination" ref="159381209"/>
|
||||
</object>
|
||||
<int key="connectionID">17</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">UserField</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="939887443"/>
|
||||
</object>
|
||||
<int key="connectionID">37</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">PasswordField</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="230764834"/>
|
||||
</object>
|
||||
<int key="connectionID">38</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">NumberField</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="144219646"/>
|
||||
</object>
|
||||
<int key="connectionID">39</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">FeedbackLabel</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="253224402"/>
|
||||
</object>
|
||||
<int key="connectionID">40</int>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBOutletConnection" key="connection">
|
||||
<string key="label">TextEditor</string>
|
||||
<reference key="source" ref="159381209"/>
|
||||
<reference key="destination" ref="1046090244"/>
|
||||
</object>
|
||||
<int key="connectionID">42</int>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">0</int>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="1000"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-2</int>
|
||||
<reference key="object" ref="1001"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-1</int>
|
||||
<reference key="object" ref="1003"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">First Responder</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">-3</int>
|
||||
<reference key="object" ref="1004"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">Application</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">4</int>
|
||||
<reference key="object" ref="159381209"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1002275598"/>
|
||||
<reference ref="939887443"/>
|
||||
<reference ref="542610502"/>
|
||||
<reference ref="206690647"/>
|
||||
<reference ref="144219646"/>
|
||||
<reference ref="230764834"/>
|
||||
<reference ref="253224402"/>
|
||||
<reference ref="854316681"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">18</int>
|
||||
<reference key="object" ref="1002275598"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="647162134"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">19</int>
|
||||
<reference key="object" ref="647162134"/>
|
||||
<reference key="parent" ref="1002275598"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">20</int>
|
||||
<reference key="object" ref="939887443"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="682603705"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">21</int>
|
||||
<reference key="object" ref="682603705"/>
|
||||
<reference key="parent" ref="939887443"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">22</int>
|
||||
<reference key="object" ref="542610502"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="836679492"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">23</int>
|
||||
<reference key="object" ref="836679492"/>
|
||||
<reference key="parent" ref="542610502"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">24</int>
|
||||
<reference key="object" ref="230764834"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="887544777"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">25</int>
|
||||
<reference key="object" ref="887544777"/>
|
||||
<reference key="parent" ref="230764834"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">26</int>
|
||||
<reference key="object" ref="206690647"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="947509345"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">27</int>
|
||||
<reference key="object" ref="947509345"/>
|
||||
<reference key="parent" ref="206690647"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">28</int>
|
||||
<reference key="object" ref="144219646"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="349376468"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">29</int>
|
||||
<reference key="object" ref="349376468"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="771611535"/>
|
||||
</array>
|
||||
<reference key="parent" ref="144219646"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">30</int>
|
||||
<reference key="object" ref="771611535"/>
|
||||
<reference key="parent" ref="349376468"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">31</int>
|
||||
<reference key="object" ref="253224402"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="728082204"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">32</int>
|
||||
<reference key="object" ref="728082204"/>
|
||||
<reference key="parent" ref="253224402"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">33</int>
|
||||
<reference key="object" ref="854316681"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="166071578"/>
|
||||
<reference ref="813690836"/>
|
||||
<reference ref="1046090244"/>
|
||||
</array>
|
||||
<reference key="parent" ref="159381209"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">34</int>
|
||||
<reference key="object" ref="166071578"/>
|
||||
<reference key="parent" ref="854316681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">35</int>
|
||||
<reference key="object" ref="813690836"/>
|
||||
<reference key="parent" ref="854316681"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<int key="objectID">36</int>
|
||||
<reference key="object" ref="1046090244"/>
|
||||
<reference key="parent" ref="854316681"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="21.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="27.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="28.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<integer value="1041" key="30.IBNumberFormatterBehaviorMetadataKey"/>
|
||||
<boolean value="YES" key="30.IBNumberFormatterLocalizesFormatMetadataKey"/>
|
||||
<string key="30.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="35.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<string key="36.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
<reference key="4.IBNSViewMetadataGestureRecognizers" ref="0"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
<int key="maxID">42</int>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewTextControls</string>
|
||||
<string key="superclassName">NSView</string>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="FeedbackLabel">NSTextField</string>
|
||||
<string key="NumberField">NSTextField</string>
|
||||
<string key="PasswordField">NSSecureTextField</string>
|
||||
<string key="TextEditor">NSTextView</string>
|
||||
<string key="UserField">NSTextField</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="FeedbackLabel">
|
||||
<string key="name">FeedbackLabel</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="NumberField">
|
||||
<string key="name">NumberField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="PasswordField">
|
||||
<string key="name">PasswordField</string>
|
||||
<string key="candidateClassName">NSSecureTextField</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="TextEditor">
|
||||
<string key="name">TextEditor</string>
|
||||
<string key="candidateClassName">NSTextView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="UserField">
|
||||
<string key="name">UserField</string>
|
||||
<string key="candidateClassName">NSTextField</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewTextControls.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">SubviewTextControlsController</string>
|
||||
<string key="superclassName">NSViewController</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SubviewTextControlsController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSFormatter</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">NSNumberFormatter</string>
|
||||
<string key="superclassName">NSFormatter</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">Foundation.framework/Headers/NSNumberFormatter.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">NO</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
</data>
|
||||
</archive>
|
|
@ -1,46 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewTextControlsController : AppKit.NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewTextControlsController (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewTextControlsController (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Call to load from the XIB/NIB file
|
||||
public SubviewTextControlsController () : base ("SubviewTextControls", NSBundle.MainBundle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
//strongly typed view accessor
|
||||
public new SubviewTextControls View {
|
||||
get {
|
||||
return (SubviewTextControls)base.View;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
namespace MacControls
|
||||
{
|
||||
|
||||
// Should subclass AppKit.NSViewController
|
||||
[Foundation.Register ("SubviewTextControlsController")]
|
||||
public partial class SubviewTextControlsController
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,38 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
// This file has been autogenerated from a class added in the UI designer.
|
||||
|
||||
using System;
|
||||
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace MacControls
|
||||
{
|
||||
public partial class SubviewTextControls : AppKit.NSView
|
||||
public partial class TextViewController : NSViewController
|
||||
{
|
||||
#region Constructors
|
||||
|
||||
// Called when created from unmanaged code
|
||||
public SubviewTextControls (IntPtr handle) : base (handle)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Called when created directly from a XIB file
|
||||
[Export ("initWithCoder:")]
|
||||
public SubviewTextControls (NSCoder coder) : base (coder)
|
||||
{
|
||||
Initialize ();
|
||||
}
|
||||
|
||||
// Shared initialization code
|
||||
void Initialize ()
|
||||
public TextViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void AwakeFromNib ()
|
||||
public override void ViewWillAppear ()
|
||||
{
|
||||
base.AwakeFromNib ();
|
||||
base.ViewWillAppear ();
|
||||
|
||||
// Wire-up controls
|
||||
UserField.EditingEnded += (sender, e) => {
|
|
@ -9,8 +9,8 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace MacControls
|
||||
{
|
||||
[Register ("SubviewTextControls")]
|
||||
partial class SubviewTextControls
|
||||
[Register ("TextViewController")]
|
||||
partial class TextViewController
|
||||
{
|
||||
[Outlet]
|
||||
AppKit.NSTextField FeedbackLabel { get; set; }
|
||||
|
@ -29,9 +29,9 @@ namespace MacControls
|
|||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (UserField != null) {
|
||||
UserField.Dispose ();
|
||||
UserField = null;
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (NumberField != null) {
|
||||
|
@ -44,15 +44,15 @@ namespace MacControls
|
|||
PasswordField = null;
|
||||
}
|
||||
|
||||
if (FeedbackLabel != null) {
|
||||
FeedbackLabel.Dispose ();
|
||||
FeedbackLabel = null;
|
||||
}
|
||||
|
||||
if (TextEditor != null) {
|
||||
TextEditor.Dispose ();
|
||||
TextEditor = null;
|
||||
}
|
||||
|
||||
if (UserField != null) {
|
||||
UserField.Dispose ();
|
||||
UserField = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|