This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace NoiseAnimation | |
| #nowarn "64" | |
| open System | |
| open UIKit | |
| open Foundation | |
| open CoreGraphics | |
| [<AutoOpen>] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Praeclarum.AutoLayout | |
| open System | |
| #if __IOS__ | |
| open Foundation | |
| open UIKit | |
| type NativeView = UIView | |
| #else | |
| open Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module EasyLayout | |
| open System | |
| open System.Drawing | |
| open Microsoft.FSharp.Quotations | |
| open Microsoft.FSharp.Quotations.Patterns | |
| open Microsoft.FSharp.Quotations.DerivedPatterns | |
| open MonoTouch.Foundation | |
| open MonoTouch.UIKit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using MonoTouch.AVFoundation; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| namespace Praeclarum | |
| { | |
| /// <summary> | |
| /// Easy way to asynchronously speak some text. | |
| /// <code> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| using System.Runtime.InteropServices; | |
| using System.Threading.Tasks; | |
| using MonoTouch; | |
| using MonoTouch.AudioToolbox; | |
| using MonoTouch.AudioUnit; | |
| using MonoTouch.CoreFoundation; | |
| using MonoTouch.CoreMidi; | |
| using MonoTouch.Foundation; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Net; | |
| using System.IO; | |
| using Gdk; | |
| namespace TileSticher | |
| { | |
| class App | |
| { | |
| public static int Main (string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Specialized; | |
| using System.Diagnostics; | |
| using MonoTouch.Foundation; | |
| using MonoTouch.UIKit; | |
| namespace Praeclarum.UI | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Collections.Concurrent; | |
| namespace Praeclarum | |
| { | |
| /// <summary> | |
| /// Wraps a value and only allows access to it using a single thread | |
| /// of execution (see SingleThreadQueue). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ContentView.ConstrainLayout (() => | |
| border.Frame.Top == ContentView.Frame.Top && | |
| border.Frame.Height == 0.5f && | |
| border.Frame.Left == ContentView.Frame.Left && | |
| border.Frame.Right == ContentView.Frame.Right && | |
| nameLabel.Frame.Left == ContentView.Frame.Left + hpad && | |
| nameLabel.Frame.Right == ContentView.Frame.GetMidX () - 5.5f && | |
| nameLabel.Frame.Top >= ContentView.Frame.Top + vpad && |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (NSTimeInterval)remainingUbiquitousBackupTime | |
| { | |
| return 3 * 60; | |
| } |