MacCustomControl
This sample shows how to create a reusable Custom User Interface control in Xamarin.Mac per GitHub defect #1106.
|
@ -0,0 +1,17 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MacCustomControl", "MacCustomControl\MacCustomControl.csproj", "{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -0,0 +1,24 @@
|
|||
using AppKit;
|
||||
using Foundation;
|
||||
|
||||
namespace MacCustomControl
|
||||
{
|
||||
[Register ("AppDelegate")]
|
||||
public class AppDelegate : NSApplicationDelegate
|
||||
{
|
||||
public AppDelegate ()
|
||||
{
|
||||
}
|
||||
|
||||
public override void DidFinishLaunching (NSNotification notification)
|
||||
{
|
||||
// Insert code here to initialize your application
|
||||
}
|
||||
|
||||
public override void WillTerminate (NSNotification notification)
|
||||
{
|
||||
// Insert code here to tear down your application
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,170 @@
|
|||
using Foundation;
|
||||
using System;
|
||||
using System.CodeDom.Compiler;
|
||||
using UIKit;
|
||||
using AppKit;
|
||||
using CustomGraphics;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace MacCustomControl
|
||||
{
|
||||
/// <summary>
|
||||
/// This class implements a custom Flip Switch User Interface Control by inheriting from
|
||||
/// <c>NSControl</c> and custom drawing it's UI state. It demonstraits how to handle mouse
|
||||
/// input using both override methods and gesture recognizers.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// The UI for the control was designed in PainCode for Xamarin.iOS and uses the
|
||||
/// extension methods and shims in the <c>UIKit</c> folder to consume this code unchanged.
|
||||
/// </remarks>
|
||||
[Register("NSFlipSwitch")]
|
||||
public class NSFlipSwitch : NSControl
|
||||
{
|
||||
#region Private Variables
|
||||
private bool _value = false;
|
||||
#endregion
|
||||
|
||||
#region Computed Properties
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this <see cref="MacCustomControl.NSFlipSwitch"/> is
|
||||
/// On or Off.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if value; otherwise, <c>false</c>.</value>
|
||||
public bool Value {
|
||||
get { return _value; }
|
||||
set {
|
||||
// Save value and force a redraw
|
||||
_value = value;
|
||||
NeedsDisplay = true;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="MacCustomControl.NSFlipSwitch"/> class.
|
||||
/// </summary>
|
||||
public NSFlipSwitch ()
|
||||
{
|
||||
// Init
|
||||
Initialize();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="MacCustomControl.NSFlipSwitch"/> class.
|
||||
/// </summary>
|
||||
/// <param name="handle">Handle.</param>
|
||||
public NSFlipSwitch (IntPtr handle) : base (handle)
|
||||
{
|
||||
// Init
|
||||
Initialize();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="MacCustomControl.NSFlipSwitch"/> class.
|
||||
/// </summary>
|
||||
/// <param name="frameRect">Frame rect.</param>
|
||||
[Export ("initWithFrame:")]
|
||||
public NSFlipSwitch (CGRect frameRect) : base(frameRect) {
|
||||
// Init
|
||||
Initialize();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize this instance.
|
||||
/// </summary>
|
||||
private void Initialize() {
|
||||
this.WantsLayer = true;
|
||||
this.LayerContentsRedrawPolicy = NSViewLayerContentsRedrawPolicy.OnSetNeedsDisplay;
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// Handle mouse with Gesture Recognizers.
|
||||
// NOTE: Use either this method or the Override Methods, NOT both!
|
||||
// --------------------------------------------------------------------------------
|
||||
var click = new NSClickGestureRecognizer (() => {
|
||||
FlipSwitchState();
|
||||
});
|
||||
AddGestureRecognizer (click);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Draw Methods
|
||||
/// <summary>
|
||||
/// Draws the User Interface for this custom control
|
||||
/// </summary>
|
||||
/// <param name="dirtyRect">Dirty rect.</param>
|
||||
public override void DrawRect (CGRect dirtyRect)
|
||||
{
|
||||
base.DrawRect (dirtyRect);
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// We are using a custom control UI that was drawn in PaintCode
|
||||
// for iOS. The extensions methods and shims in the UIKit folder
|
||||
// allow us to consume this code unchanged.
|
||||
// --------------------------------------------------------------------------------
|
||||
CustomControlsStyleKit.DrawUISwitch (Enabled, Value);
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Private Methods
|
||||
/// <summary>
|
||||
/// Flips the state of the switch between On and Off
|
||||
/// </summary>
|
||||
private void FlipSwitchState() {
|
||||
// Update state
|
||||
Value = !Value;
|
||||
RaiseValueChanged ();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Mouse Handling Methods
|
||||
// --------------------------------------------------------------------------------
|
||||
// Handle mouse with Override Methods.
|
||||
// NOTE: Use either this method or Gesture Recognizers, NOT both!
|
||||
// --------------------------------------------------------------------------------
|
||||
// public override void MouseDown (NSEvent theEvent)
|
||||
// {
|
||||
// base.MouseDown (theEvent);
|
||||
//
|
||||
// FlipSwitchState ();
|
||||
// }
|
||||
//
|
||||
// public override void MouseDragged (NSEvent theEvent)
|
||||
// {
|
||||
// base.MouseDragged (theEvent);
|
||||
// }
|
||||
//
|
||||
// public override void MouseUp (NSEvent theEvent)
|
||||
// {
|
||||
// base.MouseUp (theEvent);
|
||||
// }
|
||||
//
|
||||
// public override void MouseMoved (NSEvent theEvent)
|
||||
// {
|
||||
// base.MouseMoved (theEvent);
|
||||
// }
|
||||
#endregion
|
||||
|
||||
#region Events
|
||||
/// <summary>
|
||||
/// Occurs when value of the switch is changed.
|
||||
/// </summary>
|
||||
public event EventHandler ValueChanged;
|
||||
|
||||
/// <summary>
|
||||
/// Raises the value changed event.
|
||||
/// </summary>
|
||||
internal void RaiseValueChanged() {
|
||||
if (this.ValueChanged != null)
|
||||
this.ValueChanged (this, EventArgs.Empty);
|
||||
|
||||
// Perform any action bound to the control from Interface Builder
|
||||
// via an Action.
|
||||
if (this.Action !=null)
|
||||
NSApplication.SharedApplication.SendAction (this.Action, this.Target, this);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
//
|
||||
// CustomControlsStyleKit.cs
|
||||
// OnCardGraphics
|
||||
//
|
||||
// Created by Kevin Mullins on 11/20/15.
|
||||
// Copyright (c) 2015 Appracatappra. All rights reserved.
|
||||
//
|
||||
// Generated by PaintCode (www.paintcodeapp.com)
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using UIKit;
|
||||
using CoreGraphics;
|
||||
|
||||
#if __TVOS__
|
||||
using UIColor = global::UIKit.TVColor;
|
||||
using UIFont = global::UIKit.TVFont;
|
||||
#endif
|
||||
|
||||
namespace CustomGraphics
|
||||
{
|
||||
[Register ("CustomControlsStyleKit")]
|
||||
public class CustomControlsStyleKit : NSObject
|
||||
{
|
||||
|
||||
//// Initialization
|
||||
|
||||
static CustomControlsStyleKit()
|
||||
{
|
||||
// Colors Initialization
|
||||
OnColor = UIColor.FromRGBA(0.676f, 0.818f, 0.388f, 1.000f);
|
||||
OnColorUnFocused = UIColor.FromRGBA(0.675f, 0.820f, 0.388f, 0.561f);
|
||||
OffColor = UIColor.FromRGBA(0.712f, 0.712f, 0.712f, 1.000f);
|
||||
OffColorUnFocused = UIColor.FromRGBA(0.714f, 0.714f, 0.714f, 0.561f);
|
||||
BorderColor = UIColor.FromRGBA(0.903f, 0.903f, 0.903f, 1.000f);
|
||||
InFocusThumbColor = UIColor.FromRGBA(1.000f, 1.000f, 1.000f, 1.000f);
|
||||
ShadowColor = UIColor.FromRGBA(0.254f, 0.254f, 0.254f, 1.000f);
|
||||
UnFocusedThumbColor = UIColor.FromRGBA(0.951f, 0.951f, 0.951f, 1.000f);
|
||||
InFocusTextColor = UIColor.FromRGBA(1.000f, 1.000f, 1.000f, 1.000f);
|
||||
UnFocusedTextColor = UIColor.FromRGBA(0.025f, 0.025f, 0.025f, 1.000f);
|
||||
|
||||
}
|
||||
|
||||
//// Colors
|
||||
|
||||
public static UIColor OnColor { get; private set; }
|
||||
public static UIColor OnColorUnFocused { get; private set; }
|
||||
public static UIColor OffColor { get; private set; }
|
||||
public static UIColor OffColorUnFocused { get; private set; }
|
||||
public static UIColor BorderColor { get; private set; }
|
||||
public static UIColor InFocusThumbColor { get; private set; }
|
||||
public static UIColor ShadowColor { get; private set; }
|
||||
public static UIColor UnFocusedThumbColor { get; private set; }
|
||||
public static UIColor InFocusTextColor { get; private set; }
|
||||
public static UIColor UnFocusedTextColor { get; private set; }
|
||||
|
||||
//// Drawing Methods
|
||||
|
||||
public static void DrawUISwitch(bool inFocus, bool switchOn)
|
||||
{
|
||||
//// General Declarations
|
||||
var context = UIGraphics.GetCurrentContext();
|
||||
|
||||
|
||||
//// Shadow Declarations
|
||||
var shadow = new NSShadow();
|
||||
shadow.ShadowColor = CustomControlsStyleKit.ShadowColor;
|
||||
shadow.ShadowOffset = new CGSize(0.1f, 5.1f);
|
||||
shadow.ShadowBlurRadius = 5.0f;
|
||||
|
||||
//// Variable Declarations
|
||||
var thumbHeight = inFocus ? 85.0f : 65.0f;
|
||||
var thumbY = inFocus ? 6.0f : 16.0f;
|
||||
var thumbColor = inFocus ? CustomControlsStyleKit.InFocusThumbColor : CustomControlsStyleKit.UnFocusedThumbColor;
|
||||
var textColor = inFocus ? CustomControlsStyleKit.InFocusTextColor : CustomControlsStyleKit.UnFocusedTextColor;
|
||||
var gutterColor = switchOn ? (inFocus ? CustomControlsStyleKit.OnColor : CustomControlsStyleKit.OnColorUnFocused) : (inFocus ? CustomControlsStyleKit.OffColor : CustomControlsStyleKit.OffColorUnFocused);
|
||||
var thumbX = switchOn ? 147.0f : 11.0f;
|
||||
var switchOff = !switchOn;
|
||||
|
||||
//// Gutter Drawing
|
||||
var gutterPath = UIBezierPath.FromRoundedRect(new CGRect(11.0f, 16.0f, 227.0f, 67.0f), 4.0f);
|
||||
gutterColor.SetFill();
|
||||
gutterPath.Fill();
|
||||
|
||||
////// Gutter Inner Shadow
|
||||
context.SaveState();
|
||||
context.ClipToRect(gutterPath.Bounds);
|
||||
context.SetShadow(new CGSize(0, 0), 0);
|
||||
context.SetAlpha(shadow.ShadowColor.CGColor.Alpha);
|
||||
context.BeginTransparencyLayer();
|
||||
{
|
||||
var opaqueShadow = new CGColor(shadow.ShadowColor.CGColor, 1.0f);
|
||||
context.SetShadow(shadow.ShadowOffset, shadow.ShadowBlurRadius, opaqueShadow);
|
||||
context.SetBlendMode(CGBlendMode.SourceOut);
|
||||
context.BeginTransparencyLayer();
|
||||
|
||||
context.SetFillColor(opaqueShadow);
|
||||
gutterPath.Fill();
|
||||
|
||||
context.EndTransparencyLayer();
|
||||
}
|
||||
context.EndTransparencyLayer();
|
||||
context.RestoreState();
|
||||
|
||||
CustomControlsStyleKit.BorderColor.SetStroke();
|
||||
gutterPath.LineWidth = 2.0f;
|
||||
gutterPath.Stroke();
|
||||
|
||||
|
||||
//// Rectangle Drawing
|
||||
var rectanglePath = UIBezierPath.FromRoundedRect(new CGRect(thumbX, thumbY, 91.0f, thumbHeight), 4.0f);
|
||||
context.SaveState();
|
||||
context.SetShadow(shadow.ShadowOffset, shadow.ShadowBlurRadius, shadow.ShadowColor.CGColor);
|
||||
thumbColor.SetFill();
|
||||
rectanglePath.Fill();
|
||||
context.RestoreState();
|
||||
|
||||
CustomControlsStyleKit.BorderColor.SetStroke();
|
||||
rectanglePath.LineWidth = 2.0f;
|
||||
rectanglePath.Stroke();
|
||||
|
||||
|
||||
if (switchOn)
|
||||
{
|
||||
//// OnText Drawing
|
||||
CGRect onTextRect = new CGRect(26.0f, 27.0f, 99.0f, 49.0f);
|
||||
{
|
||||
var textContent = "ON";
|
||||
textColor.SetFill();
|
||||
var onTextStyle = new NSMutableParagraphStyle ();
|
||||
onTextStyle.Alignment = UITextAlignment.Center;
|
||||
|
||||
var onTextFontAttributes = new UIStringAttributes () {Font = UIFont.BoldSystemFontOfSize(27.0f), ForegroundColor = textColor, ParagraphStyle = onTextStyle};
|
||||
var onTextTextHeight = new NSString(textContent).GetBoundingRect(new CGSize(onTextRect.Width, nfloat.MaxValue), NSStringDrawingOptions.UsesLineFragmentOrigin, onTextFontAttributes, null).Height+10;
|
||||
context.SaveState();
|
||||
context.ClipToRect(onTextRect);
|
||||
new NSString(textContent).DrawString(new CGRect(onTextRect.GetMinX(), onTextRect.GetMinY() + (onTextRect.Height - onTextTextHeight) / 2.0f, onTextRect.Width, onTextTextHeight), UIFont.BoldSystemFontOfSize(27.0f), UILineBreakMode.WordWrap, UITextAlignment.Center);
|
||||
context.RestoreState();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (switchOff)
|
||||
{
|
||||
//// OffText Drawing
|
||||
CGRect offTextRect = new CGRect(123.0f, 27.0f, 99.0f, 49.0f);
|
||||
{
|
||||
var textContent = "OFF";
|
||||
textColor.SetFill();
|
||||
var offTextStyle = new NSMutableParagraphStyle ();
|
||||
offTextStyle.Alignment = UITextAlignment.Center;
|
||||
|
||||
var offTextFontAttributes = new UIStringAttributes () {Font = UIFont.BoldSystemFontOfSize(27.0f), ForegroundColor = textColor, ParagraphStyle = offTextStyle};
|
||||
var offTextTextHeight = new NSString(textContent).GetBoundingRect(new CGSize(offTextRect.Width, nfloat.MaxValue), NSStringDrawingOptions.UsesLineFragmentOrigin, offTextFontAttributes, null).Height+10;
|
||||
context.SaveState();
|
||||
context.ClipToRect(offTextRect);
|
||||
new NSString(textContent).DrawString(new CGRect(offTextRect.GetMinX(), offTextRect.GetMinY() + (offTextRect.Height - offTextTextHeight) / 2.0f, offTextRect.Width, offTextTextHeight), UIFont.BoldSystemFontOfSize(27.0f), UILineBreakMode.WordWrap, UITextAlignment.Center);
|
||||
context.RestoreState();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void DrawUIControlWell(CGRect frame, bool inFocus, string title)
|
||||
{
|
||||
//// General Declarations
|
||||
var context = UIGraphics.GetCurrentContext();
|
||||
|
||||
//// Color Declarations
|
||||
var wellColor = UIColor.FromRGBA(0.029f, 0.029f, 0.029f, 0.189f);
|
||||
|
||||
//// Variable Declarations
|
||||
var textColor = inFocus ? CustomControlsStyleKit.InFocusTextColor : CustomControlsStyleKit.UnFocusedTextColor;
|
||||
|
||||
//// Background Drawing
|
||||
var backgroundPath = UIBezierPath.FromRoundedRect(new CGRect(frame.GetMinX() + 1.0f, frame.GetMinY() + 1.0f, NMath.Floor((frame.Width - 1.0f) * 0.99749f + 0.5f), NMath.Floor((frame.Height - 1.0f) * 0.98990f + 0.5f)), 4.0f);
|
||||
wellColor.SetFill();
|
||||
backgroundPath.Fill();
|
||||
|
||||
|
||||
//// Text Drawing
|
||||
CGRect textRect = new CGRect(frame.GetMinX() + NMath.Floor(frame.Width * 0.03250f + 0.5f), frame.GetMinY() + NMath.Floor(frame.Height * 0.19000f + 0.5f), NMath.Floor(frame.Width * 0.97250f + 0.5f) - NMath.Floor(frame.Width * 0.03250f + 0.5f), NMath.Floor(frame.Height * 0.80000f + 0.5f) - NMath.Floor(frame.Height * 0.19000f + 0.5f));
|
||||
textColor.SetFill();
|
||||
var textStyle = new NSMutableParagraphStyle ();
|
||||
textStyle.Alignment = UITextAlignment.Center;
|
||||
|
||||
var textFontAttributes = new UIStringAttributes () {Font = UIFont.BoldSystemFontOfSize(27.0f), ForegroundColor = textColor, ParagraphStyle = textStyle};
|
||||
var textTextHeight = new NSString(title).GetBoundingRect(new CGSize(textRect.Width, nfloat.MaxValue), NSStringDrawingOptions.UsesLineFragmentOrigin, textFontAttributes, null).Height;
|
||||
context.SaveState();
|
||||
context.ClipToRect(textRect);
|
||||
new NSString(title).DrawString(new CGRect(textRect.GetMinX(), textRect.GetMinY() + (textRect.Height - textTextHeight) / 2.0f, textRect.Width, textTextHeight), UIFont.BoldSystemFontOfSize(27.0f), UILineBreakMode.WordWrap, UITextAlignment.Center);
|
||||
context.RestoreState();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleName</key>
|
||||
<string>MacCustomControl</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.xamarin.maccustomcontrol</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<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>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,103 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<ProjectGuid>{695370E9-EEBA-4FA1-B38C-DE208B0D5AC2}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>MacCustomControl</RootNamespace>
|
||||
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
|
||||
<AssemblyName>MacCustomControl</AssemblyName>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<Profiling>true</Profiling>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<UseSGen>true</UseSGen>
|
||||
<IncludeMonoRuntime>false</IncludeMonoRuntime>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<CodeSigningKey>Mac Developer</CodeSigningKey>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<LinkMode>SdkOnly</LinkMode>
|
||||
<Profiling>false</Profiling>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<UseSGen>true</UseSGen>
|
||||
<IncludeMonoRuntime>true</IncludeMonoRuntime>
|
||||
<CreatePackage>true</CreatePackage>
|
||||
<CodeSigningKey>Developer ID Application</CodeSigningKey>
|
||||
<EnableCodeSigning>true</EnableCodeSigning>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Mac" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<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="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<Compile Include="ViewController.cs" />
|
||||
<Compile Include="ViewController.designer.cs">
|
||||
<DependentUpon>ViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="UIKit\NSMutableParagraphStyle.cs" />
|
||||
<Compile Include="UIKit\NSShadow.cs" />
|
||||
<Compile Include="UIKit\NSTextEffect.cs" />
|
||||
<Compile Include="UIKit\UIBezierPath.cs" />
|
||||
<Compile Include="UIKit\UIColor.cs" />
|
||||
<Compile Include="UIKit\UIFont.cs" />
|
||||
<Compile Include="UIKit\UIGraphics.cs" />
|
||||
<Compile Include="UIKit\UIGraphicsContext.cs" />
|
||||
<Compile Include="UIKit\UIImage.cs" />
|
||||
<Compile Include="UIKit\UILineBreakMode.cs" />
|
||||
<Compile Include="UIKit\UIStringAttributes.cs" />
|
||||
<Compile Include="UIKit\UIStringDrawing.cs" />
|
||||
<Compile Include="UIKit\UITextAlignment.cs" />
|
||||
<Compile Include="CustomGraphics\CustomControlsStyleKit.cs" />
|
||||
<Compile Include="Classes\NSFlipSwitch.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InterfaceDefinition Include="Main.storyboard" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<Folder Include="UIKit\" />
|
||||
<Folder Include="CustomGraphics\" />
|
||||
<Folder Include="Classes\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,13 @@
|
|||
using AppKit;
|
||||
|
||||
namespace MacCustomControl
|
||||
{
|
||||
static class MainClass
|
||||
{
|
||||
static void Main (string[] args)
|
||||
{
|
||||
NSApplication.Init ();
|
||||
NSApplication.Main (args);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,716 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
|
||||
<dependencies>
|
||||
<deployment identifier="macosx"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="9531"/>
|
||||
</dependencies>
|
||||
<scenes>
|
||||
<!--Application-->
|
||||
<scene sceneID="JPo-4y-FX3">
|
||||
<objects>
|
||||
<application id="hnw-xV-0zn" sceneMemberID="viewController">
|
||||
<menu key="mainMenu" title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
|
||||
<items>
|
||||
<menuItem title="MacCustomControl" id="1Xt-HY-uBw">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<menu key="submenu" title="MacCustomControl" systemMenu="apple" id="uQy-DD-JDr">
|
||||
<items>
|
||||
<menuItem title="About MacCustomControl" id="5kV-Vb-QxS">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="orderFrontStandardAboutPanel:" target="Ady-hI-5gd" 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 MacCustomControl" keyEquivalent="h" id="Olw-nP-bQN">
|
||||
<connections>
|
||||
<action selector="hide:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="VT4-aY-XCT"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Show All" id="Kd2-mp-pUS">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="unhideAllApplications:" target="Ady-hI-5gd" id="Dhg-Le-xox"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="kCx-OE-vgT"/>
|
||||
<menuItem title="Quit MacCustomControl" keyEquivalent="q" id="4sb-4s-VLi">
|
||||
<connections>
|
||||
<action selector="terminate:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="4Si-XN-c54"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Open…" keyEquivalent="o" id="IAo-SY-fd9">
|
||||
<connections>
|
||||
<action selector="openDocument:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" id="HmO-Ls-i7Q"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save…" keyEquivalent="s" id="pxx-59-PXV">
|
||||
<connections>
|
||||
<action selector="saveDocument:" target="Ady-hI-5gd" id="teZ-XB-qJY"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save As…" keyEquivalent="S" id="Bw7-FT-i3A">
|
||||
<connections>
|
||||
<action selector="saveDocumentAs:" target="Ady-hI-5gd" id="mDf-zr-I0C"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Revert to Saved" id="KaW-ft-85H">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="revertDocumentToSaved:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="Din-rz-gC5"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Print…" keyEquivalent="p" id="aTl-1u-JFS">
|
||||
<connections>
|
||||
<action selector="print:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="M6e-cu-g7V"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Redo" keyEquivalent="Z" id="6dh-zS-Vam">
|
||||
<connections>
|
||||
<action selector="redo:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="YJe-68-I9s"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Copy" keyEquivalent="c" id="x3v-GG-iWU">
|
||||
<connections>
|
||||
<action selector="copy:" target="Ady-hI-5gd" id="G1f-GL-Joy"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste" keyEquivalent="v" id="gVA-U4-sdL">
|
||||
<connections>
|
||||
<action selector="paste:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="cEh-KX-wJQ"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Delete" id="pa3-QI-u2k">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="delete:" target="Ady-hI-5gd" id="0Mk-Ml-PaM"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Select All" keyEquivalent="a" id="Ruw-6m-B2m">
|
||||
<connections>
|
||||
<action selector="selectAll:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" id="WD3-Gg-5AJ"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="q09-fT-Sye">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="NDo-RZ-v9R"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="OwM-mh-QMV">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="U76-nv-p5D"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="S0p-oC-mLd">
|
||||
<connections>
|
||||
<action selector="centerSelectionInVisibleArea:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="vFj-Ks-hy3"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="hz2-CU-CR7">
|
||||
<connections>
|
||||
<action selector="checkSpelling:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="7w6-Qz-0kB"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Grammar With Spelling" id="mK6-2p-4JG">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleGrammarChecking:" target="Ady-hI-5gd" id="muD-Qn-j4w"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Correct Spelling Automatically" id="78Y-hA-62v">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticSpellingCorrection:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" id="3IJ-Se-DZD"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Quotes" id="hQb-2v-fYv">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="Ady-hI-5gd" id="ptq-xd-QOA"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Dashes" id="rgM-f4-ycn">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDashSubstitution:" target="Ady-hI-5gd" id="oCt-pO-9gS"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Links" id="cwL-P1-jid">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticLinkDetection:" target="Ady-hI-5gd" id="Gip-E3-Fov"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Data Detectors" id="tRr-pd-1PS">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDataDetection:" target="Ady-hI-5gd" id="R1I-Nq-Kbl"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Text Replacement" id="HFQ-gK-NFA">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="toggleAutomaticTextReplacement:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="sPh-Tk-edu"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Make Lower Case" id="d9M-CD-aMd">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="lowercaseWord:" target="Ady-hI-5gd" id="iUZ-b5-hil"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Capitalize" id="UEZ-Bs-lqG">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="capitalizeWord:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="654-Ng-kyl"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Stop Speaking" id="Oyz-dy-DGm">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="stopSpeaking:" target="Ady-hI-5gd" 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"/>
|
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="GB9-OM-e27"/>
|
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="Vjx-xi-njq"/>
|
||||
<menuItem title="Underline" keyEquivalent="u" id="WRG-CD-K1S">
|
||||
<connections>
|
||||
<action selector="underline:" target="Ady-hI-5gd" id="FYS-2b-JAY"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="5gT-KC-WSO"/>
|
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="Ptp-SP-VEL"/>
|
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="i1d-Er-qST"/>
|
||||
<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="Ady-hI-5gd" id="6dk-9l-Ckg"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="cDB-IK-hbR">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="turnOffKerning:" target="Ady-hI-5gd" id="U8a-gz-Maa"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Tighten" id="46P-cB-AYj">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="tightenKerning:" target="Ady-hI-5gd" id="hr7-Nz-8ro"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Loosen" id="ogc-rX-tC1">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="loosenKerning:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="7uR-wd-Dx6"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="J7y-lM-qPV">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="turnOffLigatures:" target="Ady-hI-5gd" id="iX2-gA-Ilz"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use All" id="xQD-1f-W4t">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="useAllLigatures:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="0vZ-95-Ywn"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Superscript" id="Rqc-34-cIF">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="superscript:" target="Ady-hI-5gd" id="3qV-fo-wpU"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Subscript" id="I0S-gh-46l">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="subscript:" target="Ady-hI-5gd" id="Q6W-4W-IGz"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Raise" id="2h7-ER-AoG">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="raiseBaseline:" target="Ady-hI-5gd" id="4sk-31-7Q9"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Lower" id="1tx-W0-xDw">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="lowerBaseline:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" id="zUv-R1-uAa"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Center" keyEquivalent="|" id="VIY-Ag-zcb">
|
||||
<connections>
|
||||
<action selector="alignCenter:" target="Ady-hI-5gd" id="spX-mk-kcS"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Justify" id="J5U-5w-g23">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="alignJustified:" target="Ady-hI-5gd" id="ljL-7U-jND"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Align Right" keyEquivalent="}" id="wb2-vD-lq4">
|
||||
<connections>
|
||||
<action selector="alignRight:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" 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="Ady-hI-5gd" id="BXY-wc-z0C"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Customize Toolbar…" id="1UK-8n-QPP">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="runToolbarCustomizationPalette:" target="Ady-hI-5gd" 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="Ady-hI-5gd" id="VwT-WD-YPe"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Zoom" id="R4o-n2-Eq4">
|
||||
<modifierMask key="keyEquivalentModifierMask"/>
|
||||
<connections>
|
||||
<action selector="performZoom:" target="Ady-hI-5gd" 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="Ady-hI-5gd" 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="MacCustomControl Help" keyEquivalent="?" id="FKE-Sm-Kum">
|
||||
<connections>
|
||||
<action selector="showHelp:" target="Ady-hI-5gd" id="y7X-2Q-9no"/>
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
<connections>
|
||||
<outlet property="delegate" destination="Voe-Tx-rLC" id="PrD-fu-P6m"/>
|
||||
</connections>
|
||||
</application>
|
||||
<customObject id="Voe-Tx-rLC" customClass="AppDelegate"/>
|
||||
<customObject id="Ady-hI-5gd" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="0.0"/>
|
||||
</scene>
|
||||
<!--Window Controller-->
|
||||
<scene sceneID="R2V-B0-nI4">
|
||||
<objects>
|
||||
<windowController id="B8D-0N-5wS" sceneMemberID="viewController">
|
||||
<window key="window" title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="default" id="IQv-IB-iLA">
|
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
|
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
|
||||
<rect key="contentRect" x="196" y="240" width="480" height="270"/>
|
||||
<rect key="screenRect" x="0.0" y="0.0" width="1680" height="1027"/>
|
||||
</window>
|
||||
<connections>
|
||||
<segue destination="XfG-lQ-9wD" kind="relationship" relationship="window.shadowedContentViewController" id="cq2-FE-JQM"/>
|
||||
</connections>
|
||||
</windowController>
|
||||
<customObject id="Oky-zY-oP4" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="250"/>
|
||||
</scene>
|
||||
<!--View Controller-->
|
||||
<scene sceneID="hIz-AP-VOD">
|
||||
<objects>
|
||||
<viewController id="XfG-lQ-9wD" customClass="ViewController" sceneMemberID="viewController">
|
||||
<view key="view" id="m2S-Jp-Qdl">
|
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="354"/>
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<subviews>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vzy-uV-aNe">
|
||||
<rect key="frame" x="18" y="317" width="121" height="17"/>
|
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Option 1:" id="gS5-Ds-BN3">
|
||||
<font key="font" metaFont="system"/>
|
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
|
||||
</textFieldCell>
|
||||
</textField>
|
||||
<customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eCI-Zu-its" customClass="NSFlipSwitch">
|
||||
<rect key="frame" x="20" y="209" width="250" height="100"/>
|
||||
<connections>
|
||||
<action selector="OptionOneFlipped:" target="XfG-lQ-9wD" id="YYb-pN-1kg"/>
|
||||
</connections>
|
||||
</customView>
|
||||
<customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="XoR-Vg-B7o" customClass="NSFlipSwitch">
|
||||
<rect key="frame" x="20" y="42" width="250" height="100"/>
|
||||
<connections>
|
||||
<action selector="OptionTwoFlipped:" target="XfG-lQ-9wD" id="KCh-7N-grh"/>
|
||||
</connections>
|
||||
</customView>
|
||||
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="HLv-Qz-Q7e">
|
||||
<rect key="frame" x="18" y="169" width="121" height="17"/>
|
||||
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Option 2:" id="P8W-6V-9Ia">
|
||||
<font key="font" metaFont="system"/>
|
||||
<color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
|
||||
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
|
||||
</textFieldCell>
|
||||
</textField>
|
||||
</subviews>
|
||||
</view>
|
||||
<connections>
|
||||
<outlet property="OptionOne" destination="eCI-Zu-its" id="O1e-6B-BIE"/>
|
||||
<outlet property="OptionTwo" destination="XoR-Vg-B7o" id="dyx-EL-JZd"/>
|
||||
</connections>
|
||||
</viewController>
|
||||
<customObject id="rPt-NT-nkU" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder"/>
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="697"/>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-128.png
Normal file
После Ширина: | Высота: | Размер: 7.9 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-128@2x.png
Normal file
После Ширина: | Высота: | Размер: 20 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-16.png
Normal file
После Ширина: | Высота: | Размер: 711 B |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-16@2x.png
Normal file
После Ширина: | Высота: | Размер: 1.4 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-256.png
Normal file
После Ширина: | Высота: | Размер: 20 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-256@2x.png
Normal file
После Ширина: | Высота: | Размер: 58 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-32.png
Normal file
После Ширина: | Высота: | Размер: 1.4 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-32@2x.png
Normal file
После Ширина: | Высота: | Размер: 3.3 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/Resources/Images.xcassets/AppIcons.appiconset/AppIcon-512.png
Normal file
После Ширина: | Высота: | Размер: 58 KiB |
Двоичные данные
MacCustomControl/MacCustomControl/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,125 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class NSMutableParagraphStyle : NSObject
|
||||
{
|
||||
#region Computed Variables
|
||||
public AppKit.NSMutableParagraphStyle ParagraphStyle { get; set; }
|
||||
|
||||
public UITextAlignment Alignment {
|
||||
get {
|
||||
switch (ParagraphStyle.Alignment) {
|
||||
case NSTextAlignment.Center:
|
||||
return UITextAlignment.Center;
|
||||
case NSTextAlignment.Justified:
|
||||
return UITextAlignment.Justified;
|
||||
case NSTextAlignment.Left:
|
||||
return UITextAlignment.Left;
|
||||
case NSTextAlignment.Natural:
|
||||
return UITextAlignment.Natural;
|
||||
case NSTextAlignment.Right:
|
||||
return UITextAlignment.Right;
|
||||
default:
|
||||
return UITextAlignment.Left;
|
||||
}
|
||||
}
|
||||
set {
|
||||
switch (value) {
|
||||
case UITextAlignment.Center:
|
||||
ParagraphStyle.Alignment = NSTextAlignment.Center;
|
||||
break;
|
||||
case UITextAlignment.Justified:
|
||||
ParagraphStyle.Alignment = NSTextAlignment.Justified;
|
||||
break;
|
||||
case UITextAlignment.Left:
|
||||
ParagraphStyle.Alignment = NSTextAlignment.Left;
|
||||
break;
|
||||
case UITextAlignment.Natural:
|
||||
ParagraphStyle.Alignment = NSTextAlignment.Natural;
|
||||
break;
|
||||
case UITextAlignment.Right:
|
||||
ParagraphStyle.Alignment = NSTextAlignment.Right;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public UILineBreakMode LineBreakMode {
|
||||
get {
|
||||
switch (ParagraphStyle.LineBreakMode) {
|
||||
case NSLineBreakMode.CharWrapping:
|
||||
return UILineBreakMode.CharacterWrap;
|
||||
case NSLineBreakMode.Clipping:
|
||||
return UILineBreakMode.Clip;
|
||||
case NSLineBreakMode.TruncatingHead:
|
||||
return UILineBreakMode.HeadTruncation;
|
||||
case NSLineBreakMode.TruncatingMiddle:
|
||||
return UILineBreakMode.MiddleTruncation;
|
||||
case NSLineBreakMode.TruncatingTail:
|
||||
return UILineBreakMode.TailTruncation;
|
||||
case NSLineBreakMode.ByWordWrapping:
|
||||
return UILineBreakMode.WordWrap;
|
||||
default:
|
||||
return UILineBreakMode.CharacterWrap;
|
||||
}
|
||||
}
|
||||
set {
|
||||
switch (value) {
|
||||
case UILineBreakMode.CharacterWrap:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.CharWrapping;
|
||||
break;
|
||||
case UILineBreakMode.Clip:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.Clipping;
|
||||
break;
|
||||
case UILineBreakMode.HeadTruncation:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.TruncatingHead;
|
||||
break;
|
||||
case UILineBreakMode.MiddleTruncation:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.TruncatingMiddle;
|
||||
break;
|
||||
case UILineBreakMode.TailTruncation:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.TruncatingTail;
|
||||
break;
|
||||
case UILineBreakMode.WordWrap:
|
||||
ParagraphStyle.LineBreakMode = NSLineBreakMode.ByWordWrapping;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Type Conversion
|
||||
public static implicit operator AppKit.NSMutableParagraphStyle(NSMutableParagraphStyle style) {
|
||||
return style.ParagraphStyle;
|
||||
}
|
||||
|
||||
public static implicit operator NSMutableParagraphStyle(AppKit.NSMutableParagraphStyle style) {
|
||||
return new NSMutableParagraphStyle(style);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public NSMutableParagraphStyle() {
|
||||
// Initialize
|
||||
this.ParagraphStyle = new AppKit.NSMutableParagraphStyle();
|
||||
}
|
||||
|
||||
public NSMutableParagraphStyle(AppKit.NSMutableParagraphStyle style) : base() {
|
||||
// Initialize
|
||||
this.ParagraphStyle = style;
|
||||
}
|
||||
|
||||
public NSMutableParagraphStyle (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public NSMutableParagraphStyle (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class NSShadow : NSObject
|
||||
{
|
||||
#region Computed Variables
|
||||
public AppKit.NSShadow Shadow { get; set; }
|
||||
|
||||
public UIColor ShadowColor {
|
||||
get { return Shadow.ShadowColor; }
|
||||
set { Shadow.ShadowColor = value; }
|
||||
}
|
||||
|
||||
public CGSize ShadowOffset {
|
||||
get { return Shadow.ShadowOffset; }
|
||||
set { Shadow.ShadowOffset = value; }
|
||||
}
|
||||
|
||||
public nfloat ShadowBlurRadius {
|
||||
get { return Shadow.ShadowBlurRadius; }
|
||||
set { Shadow.ShadowBlurRadius = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Type Conversion
|
||||
public static implicit operator AppKit.NSShadow(NSShadow shadow) {
|
||||
return shadow.Shadow;
|
||||
}
|
||||
|
||||
public static implicit operator NSShadow(AppKit.NSShadow shadow) {
|
||||
return new NSShadow(shadow);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public NSShadow() {
|
||||
// Initialize
|
||||
this.Shadow = new AppKit.NSShadow();
|
||||
}
|
||||
|
||||
public NSShadow(AppKit.NSShadow shadow) : base() {
|
||||
// Initialize
|
||||
this.Shadow = shadow;
|
||||
}
|
||||
|
||||
public NSShadow (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public NSShadow (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public enum NSTextEffect
|
||||
{
|
||||
None,
|
||||
LetterPressStyle,
|
||||
UnknownUseWeakEffect
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class UIBezierPath : NSObject
|
||||
{
|
||||
#region Private Variables
|
||||
private NSBezierPath path;
|
||||
#endregion
|
||||
|
||||
#region Computed Properties
|
||||
public bool UsesEvenOddFillRule {
|
||||
get {
|
||||
return (path.WindingRule == NSWindingRule.EvenOdd);
|
||||
}
|
||||
set {
|
||||
if (value) {
|
||||
path.WindingRule = NSWindingRule.EvenOdd;
|
||||
} else {
|
||||
path.WindingRule = NSWindingRule.NonZero;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public CGPath CGPath {
|
||||
get {
|
||||
var cgpath = new CGPath ();
|
||||
cgpath.AddRect (path.Bounds);
|
||||
return cgpath;
|
||||
}
|
||||
}
|
||||
|
||||
public CGRect Bounds {
|
||||
get { return path.Bounds; }
|
||||
}
|
||||
|
||||
public nfloat LineWidth {
|
||||
get { return path.LineWidth; }
|
||||
set { path.LineWidth = value; }
|
||||
}
|
||||
|
||||
public nfloat MiterLimit {
|
||||
get { return path.MiterLimit; }
|
||||
set { path.MiterLimit = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIBezierPath () : base()
|
||||
{
|
||||
// Initialize
|
||||
this.path = new NSBezierPath();
|
||||
}
|
||||
|
||||
public UIBezierPath (NSBezierPath path) : base()
|
||||
{
|
||||
// Initialize
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public UIBezierPath (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public UIBezierPath (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Static Methods
|
||||
public static UIBezierPath FromOval(CGRect rect) {
|
||||
return new UIBezierPath(NSBezierPath.FromOvalInRect (rect));
|
||||
}
|
||||
|
||||
public static UIBezierPath FromRect(CGRect rect) {
|
||||
return new UIBezierPath(NSBezierPath.FromRect (rect));
|
||||
}
|
||||
|
||||
public static UIBezierPath FromRoundedRect(CGRect rect, nfloat radius) {
|
||||
return new UIBezierPath (NSBezierPath.FromRoundedRect (rect, radius, radius));
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
public virtual void AddLineTo (CGPoint point) {
|
||||
path.LineTo (point);
|
||||
}
|
||||
|
||||
public virtual void AddCurveToPoint (CGPoint endPoint, CGPoint controlPoint1, CGPoint controlPoint2){
|
||||
path.CurveTo (endPoint, controlPoint1, controlPoint2);
|
||||
}
|
||||
|
||||
public virtual void MoveTo (CGPoint point) {
|
||||
path.MoveTo (point);
|
||||
}
|
||||
|
||||
public virtual void AddClip() {
|
||||
path.AddClip ();
|
||||
}
|
||||
|
||||
public virtual void Stroke() {
|
||||
path.Stroke ();
|
||||
}
|
||||
|
||||
public virtual void ClosePath() {
|
||||
path.ClosePath ();
|
||||
}
|
||||
|
||||
public virtual void Fill() {
|
||||
path.Fill ();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
[Register("UIColor")]
|
||||
public class UIColor : NSObject
|
||||
{
|
||||
#region Computed Properties
|
||||
public NSColor NSColor { get; set; }
|
||||
|
||||
public CGColor CGColor {
|
||||
get { return this.NSColor.CGColor; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Type Conversion
|
||||
public static implicit operator NSColor(UIColor color) {
|
||||
return color.NSColor;
|
||||
}
|
||||
|
||||
public static implicit operator UIColor(NSColor color) {
|
||||
return new UIColor(color);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIColor(NSColor color) : base() {
|
||||
// Initialize
|
||||
this.NSColor = color;
|
||||
}
|
||||
|
||||
public UIColor(nfloat red, nfloat green, nfloat blue, nfloat alpha) : base() {
|
||||
// Initialize
|
||||
this.NSColor = NSColor.FromRgba (red, green, blue, alpha);
|
||||
}
|
||||
|
||||
public UIColor (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public UIColor (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Static Methods
|
||||
public static UIColor FromRGBA(nfloat red, nfloat green, nfloat blue, nfloat alpha) {
|
||||
|
||||
return new UIColor (NSColor.FromRgba (red, green, blue, alpha));
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
public void SetStroke() {
|
||||
this.NSColor.SetStroke ();
|
||||
}
|
||||
|
||||
public void SetFill() {
|
||||
// Send color change to the String drawing routines
|
||||
UIStringDrawing.FillColor = this.NSColor;
|
||||
|
||||
this.NSColor.SetFill ();
|
||||
}
|
||||
|
||||
public void GetRGBA (out nfloat red, out nfloat green, out nfloat blue, out nfloat alpha){
|
||||
this.NSColor.GetRgba (out red, out green, out blue, out alpha);
|
||||
}
|
||||
|
||||
public UIColor ColorWithAlpha(nfloat alpha) {
|
||||
return new UIColor (this.NSColor.ColorWithAlphaComponent (alpha));
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
[Register("UIFont")]
|
||||
public class UIFont : NSObject
|
||||
{
|
||||
#region Computed Properties
|
||||
public NSFont NSFont { get; set; }
|
||||
|
||||
public static nfloat LabelFontSize {
|
||||
get { return NSFont.LabelFontSize; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Type Conversion
|
||||
public static implicit operator NSFont(UIFont font) {
|
||||
return font.NSFont;
|
||||
}
|
||||
|
||||
public static implicit operator UIFont(NSFont font) {
|
||||
return new UIFont(font);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIFont (NSFont font)
|
||||
{
|
||||
// Initialize
|
||||
this.NSFont = font;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Static Methods
|
||||
public static UIFont BoldSystemFontOfSize(nfloat size) {
|
||||
return new UIFont (NSFont.BoldSystemFontOfSize (size));
|
||||
}
|
||||
|
||||
public static UIFont SystemFontOfSize(nfloat size) {
|
||||
return new UIFont (NSFont.SystemFontOfSize (size));
|
||||
}
|
||||
|
||||
public static UIFont FromName(string name, nfloat size) {
|
||||
return new UIFont (NSFont.FromFontName(name,size));
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class UIGraphics : NSObject
|
||||
{
|
||||
#region Private Variables
|
||||
private static CGBitmapContext Context = null;
|
||||
private static NSGraphicsContext PreviousContext = null;
|
||||
private static CGColorSpace ColorSpace = null;
|
||||
private static CGSize ImageSize = CGSize.Empty;
|
||||
#endregion
|
||||
|
||||
#region Static Methods
|
||||
public static UIGraphicsContext GetCurrentContext() {
|
||||
return new UIGraphicsContext (NSGraphicsContext.CurrentContext);
|
||||
}
|
||||
|
||||
public static void BeginImageContextWithOptions (CGSize size, bool opaque, nfloat scale) {
|
||||
|
||||
// Create new image context
|
||||
ColorSpace = CGColorSpace.CreateDeviceRGB ();
|
||||
Context = new CGBitmapContext (null, (int)size.Width, (int)size.Height, 8, 0, ColorSpace, CGImageAlphaInfo.PremultipliedLast);
|
||||
|
||||
// Flip context vertically
|
||||
var flipVertical = new CGAffineTransform(1,0,0,-1,0,size.Height);
|
||||
Context.ConcatCTM (flipVertical);
|
||||
|
||||
// Save previous context
|
||||
ImageSize = size;
|
||||
PreviousContext = NSGraphicsContext.CurrentContext;
|
||||
NSGraphicsContext.CurrentContext = NSGraphicsContext.FromCGContext (Context, true);
|
||||
}
|
||||
|
||||
public static UIImage GetImageFromCurrentImageContext() {
|
||||
return new UIImage (new NSImage(Context.ToImage(), ImageSize));
|
||||
}
|
||||
|
||||
public static void EndImageContext() {
|
||||
|
||||
// Return to previous context
|
||||
if (PreviousContext != null) {
|
||||
NSGraphicsContext.CurrentContext = PreviousContext;
|
||||
}
|
||||
|
||||
// Release memory
|
||||
Context = null;
|
||||
PreviousContext = null;
|
||||
ColorSpace = null;
|
||||
ImageSize = CGSize.Empty;
|
||||
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class UIGraphicsContext : NSGraphicsContext
|
||||
{
|
||||
#region Private Variables
|
||||
private NSGraphicsContext context;
|
||||
private UIColor shadowColor = NSColor.Black;
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIGraphicsContext (NSGraphicsContext context) : base () {
|
||||
// Initialize
|
||||
this.context = context;
|
||||
}
|
||||
|
||||
public UIGraphicsContext (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public UIGraphicsContext (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Public Methods
|
||||
public void SaveState() {
|
||||
context.SaveGraphicsState ();
|
||||
}
|
||||
|
||||
public void RestoreState() {
|
||||
context.RestoreGraphicsState ();
|
||||
}
|
||||
|
||||
public void DrawLinearGradient (CGGradient gradient, CGPoint startPoint, CGPoint endPoint, CGGradientDrawingOptions options){
|
||||
|
||||
context.CGContext.DrawLinearGradient (gradient, startPoint, endPoint, options);
|
||||
|
||||
}
|
||||
|
||||
public void DrawRadialGradient (CGGradient gradient, CGPoint startCenter, nfloat startRadius, CGPoint endCenter, nfloat endRadius, CGGradientDrawingOptions options){
|
||||
|
||||
context.CGContext.DrawRadialGradient (gradient, startCenter, startRadius, endCenter, endRadius, options);
|
||||
|
||||
}
|
||||
|
||||
public void BeginTransparencyLayer() {
|
||||
context.CGContext.BeginTransparencyLayer ();
|
||||
}
|
||||
|
||||
public void EndTransparencyLayer() {
|
||||
context.CGContext.EndTransparencyLayer ();
|
||||
}
|
||||
|
||||
public void SetShadow(CGSize ShadowOffset, nfloat ShadowBlurRadius, CGColor ShadowColor) {
|
||||
context.CGContext.SetShadow (ShadowOffset, ShadowBlurRadius, ShadowColor);
|
||||
}
|
||||
|
||||
public void SetShadow(CGSize ShadowOffset, nfloat ShadowBlurRadius) {
|
||||
context.CGContext.SetShadow (ShadowOffset, ShadowBlurRadius, shadowColor.CGColor);
|
||||
}
|
||||
|
||||
public void TranslateCTM(nfloat tx, nfloat ty) {
|
||||
context.CGContext.TranslateCTM (tx, ty);
|
||||
}
|
||||
|
||||
public void RotateCTM(nfloat angle) {
|
||||
context.CGContext.RotateCTM (angle);
|
||||
}
|
||||
|
||||
public void SetAlpha(nfloat alpha) {
|
||||
context.CGContext.SetAlpha (alpha);
|
||||
}
|
||||
|
||||
public void SetBlendMode (CGBlendMode mode) {
|
||||
context.CGContext.SetBlendMode (mode);
|
||||
}
|
||||
|
||||
public void SetFillColor(CGColor color) {
|
||||
context.CGContext.SetFillColor (color);
|
||||
}
|
||||
|
||||
public void ClipToRect(CGRect rect) {
|
||||
context.CGContext.ClipToRect (rect);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
[Register("UIImage")]
|
||||
public class UIImage : NSObject
|
||||
{
|
||||
#region Computed Properties
|
||||
public NSImage NSImage { get; set; }
|
||||
#endregion
|
||||
|
||||
#region Type Conversion
|
||||
public static implicit operator NSImage(UIImage image) {
|
||||
return image.NSImage;
|
||||
}
|
||||
|
||||
public static implicit operator UIImage(NSImage image) {
|
||||
return new UIImage(image);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIImage(NSImage image) : base() {
|
||||
// Initialize
|
||||
this.NSImage = image;
|
||||
}
|
||||
|
||||
public UIImage (NSObjectFlag x) : base(x) {
|
||||
}
|
||||
|
||||
public UIImage (IntPtr handle) : base(handle) {
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
using ObjCRuntime;
|
||||
using System;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public enum UILineBreakMode : long
|
||||
{
|
||||
WordWrap,
|
||||
CharacterWrap,
|
||||
Clip,
|
||||
HeadTruncation,
|
||||
TailTruncation,
|
||||
MiddleTruncation
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
using System;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public class UIStringAttributes : NSObject
|
||||
{
|
||||
#region Computed Properties
|
||||
public UIColor BackgroundColor { get; set;}
|
||||
|
||||
public float? BaselineOffset { get; set;}
|
||||
|
||||
public float? Expansion { get; set;}
|
||||
|
||||
public UIFont Font { get; set;}
|
||||
|
||||
public UIColor ForegroundColor { get; set;}
|
||||
|
||||
public float? KerningAdjustment { get; set;}
|
||||
|
||||
public NSLigatureType? Ligature { get; set;}
|
||||
|
||||
public NSUrl Link { get; set;}
|
||||
|
||||
public float? Obliqueness { get; set;}
|
||||
|
||||
public NSParagraphStyle ParagraphStyle { get; set;}
|
||||
|
||||
public NSShadow Shadow { get; set;}
|
||||
|
||||
public UIColor StrikethroughColor { get; set;}
|
||||
|
||||
public NSUnderlineStyle? StrikethroughStyle { get; set;}
|
||||
|
||||
public UIColor StrokeColor { get; set;}
|
||||
|
||||
public float? StrokeWidth { get; set;}
|
||||
|
||||
public NSTextAttachment TextAttachment { get; set;}
|
||||
|
||||
public NSTextEffect TextEffect { get; set;}
|
||||
|
||||
public UIColor UnderlineColor { get; set;}
|
||||
|
||||
public NSUnderlineStyle? UnderlineStyle { get; set;}
|
||||
|
||||
public NSString WeakTextEffect { get; set;}
|
||||
|
||||
public NSNumber[] WritingDirectionInt { get; set;}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
public UIStringAttributes (){
|
||||
|
||||
}
|
||||
|
||||
public UIStringAttributes (NSDictionary dictionary){
|
||||
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using Foundation;
|
||||
using AppKit;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public static class UIStringDrawing
|
||||
{
|
||||
public static NSColor FillColor { get; set; } = NSColor.Black;
|
||||
|
||||
public static CGSize DrawString (this NSString item, CGRect rect, UIFont font, UILineBreakMode mode, UITextAlignment alignment) {
|
||||
|
||||
// Get paragraph style
|
||||
var labelStyle = new NSMutableParagraphStyle(NSParagraphStyle.DefaultParagraphStyle.MutableCopy() as AppKit.NSMutableParagraphStyle);
|
||||
|
||||
// Adjust alignment
|
||||
labelStyle.Alignment = alignment;
|
||||
|
||||
// Adjust line break mode
|
||||
labelStyle.LineBreakMode = mode;
|
||||
|
||||
// Define attributes
|
||||
var attributes = new NSStringAttributes () {
|
||||
Font = font.NSFont,
|
||||
ForegroundColor = UIStringDrawing.FillColor,
|
||||
ParagraphStyle = labelStyle
|
||||
};
|
||||
|
||||
// Preform drawing
|
||||
item.DrawInRect(rect, attributes);
|
||||
|
||||
// Return new bounding size
|
||||
return new CGSize (rect.Width, rect.Height);
|
||||
}
|
||||
|
||||
public static CGRect GetBoundingRect (this NSString This, CGSize size, NSStringDrawingOptions options, UIStringAttributes attributes)
|
||||
{
|
||||
// Define attributes
|
||||
var attr = new NSMutableDictionary ();
|
||||
attr.Add (NSFont.NameAttribute, attributes.Font.NSFont);
|
||||
|
||||
var rect = This.BoundingRectWithSize (size, options, attr);
|
||||
|
||||
// HACK: Cheating on the height
|
||||
return new CGRect(rect.Left, rect.Top , rect.Width, rect.Height * 1.5f);
|
||||
}
|
||||
|
||||
public static CGRect GetBoundingRect (this NSString This, CGSize size, NSStringDrawingOptions options, UIStringAttributes attributes, NSStringDrawingContext context)
|
||||
{
|
||||
// Define attributes
|
||||
var attr = new NSMutableDictionary ();
|
||||
attr.Add (NSFont.NameAttribute, attributes.Font.NSFont);
|
||||
|
||||
var rect = This.BoundingRectWithSize (size, options, attr);
|
||||
|
||||
// HACK: Cheating on the height
|
||||
return new CGRect(rect.Left, rect.Top , rect.Width, rect.Height * 1.5f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
using ObjCRuntime;
|
||||
using System;
|
||||
|
||||
namespace UIKit
|
||||
{
|
||||
public enum UITextAlignment : long
|
||||
{
|
||||
Left,
|
||||
Center,
|
||||
Right,
|
||||
Justified,
|
||||
Natural
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
using System;
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
|
||||
namespace MacCustomControl
|
||||
{
|
||||
public partial class ViewController : NSViewController
|
||||
{
|
||||
#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 ViewController (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Override Methods
|
||||
public override void ViewDidLoad ()
|
||||
{
|
||||
base.ViewDidLoad ();
|
||||
|
||||
// Do any additional setup after loading the view.
|
||||
OptionTwo.ValueChanged += (sender, e) => {
|
||||
// Display the state of the option switch
|
||||
Console.WriteLine("Option Two: {0}", OptionTwo.Value);
|
||||
};
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Actions
|
||||
partial void OptionOneFlipped (Foundation.NSObject sender) {
|
||||
// Display the state of the option switch
|
||||
Console.WriteLine("Option One: {0}", OptionOne.Value);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
// 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 MacCustomControl
|
||||
{
|
||||
[Register ("ViewController")]
|
||||
partial class ViewController
|
||||
{
|
||||
[Outlet]
|
||||
MacCustomControl.NSFlipSwitch OptionOne { get; set; }
|
||||
|
||||
[Outlet]
|
||||
MacCustomControl.NSFlipSwitch OptionTwo { get; set; }
|
||||
|
||||
[Action ("OptionOneFlipped:")]
|
||||
partial void OptionOneFlipped (Foundation.NSObject sender);
|
||||
|
||||
[Action ("OptionTwoFlipped:")]
|
||||
partial void OptionTwoFlipped (Foundation.NSObject sender);
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
if (OptionOne != null) {
|
||||
OptionOne.Dispose ();
|
||||
OptionOne = null;
|
||||
}
|
||||
|
||||
if (OptionTwo != null) {
|
||||
OptionTwo.Dispose ();
|
||||
OptionTwo = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<SampleMetadata>
|
||||
<ID>b7bf0d6f-d0bc-479f-af9b-b1a8127f326d</ID>
|
||||
<IsFullApplication>true</IsFullApplication>
|
||||
<Level>Beginning</Level>
|
||||
<Tags>Getting Started, User Interface</Tags>
|
||||
<Gallery>true</Gallery>
|
||||
<Brief>Demonstrates how to create a custom UI element in a Xamarin.Mac application.</Brief>
|
||||
</SampleMetadata>
|
|
@ -0,0 +1,4 @@
|
|||
MacCustomControl
|
||||
===========
|
||||
|
||||
This sample shows how to create a reusable, Custom User Interface Control in a Xamarin.Mac app and add it to a storyboard in Xcode's Interface Builder.
|
После Ширина: | Высота: | Размер: 18 KiB |