├── .gitignore ├── .travis.yml ├── Alpha.podspec ├── Alpha ├── Alpha-Info.plist ├── Alpha.h ├── AlphaService-Info.plist ├── AlphaService.h ├── Asset │ ├── ALPHAAsset.h │ ├── ALPHAAsset.m │ ├── ALPHAAssetManager.h │ ├── ALPHAAssetManager.m │ ├── ALPHACoreAssets.h │ ├── ALPHACoreAssets.m │ ├── Cache │ │ ├── ALPHACache.h │ │ ├── ALPHACache.m │ │ ├── ALPHADiskCache.h │ │ ├── ALPHADiskCache.m │ │ ├── ALPHAMemoryCache.h │ │ ├── ALPHAMemoryCache.m │ │ └── Nullability.h │ ├── UIImage+Creation.h │ └── UIImage+Creation.m ├── Bonjour │ ├── ALPHABonjour.h │ ├── ALPHABonjourDataChunk.h │ ├── ALPHABonjourDataChunk.m │ ├── ALPHABonjourDataConnection.h │ ├── ALPHABonjourDataConnection.m │ ├── ALPHABonjourServer.h │ ├── ALPHABonjourServer.m │ ├── NSScanner+Bonjour.h │ └── NSScanner+Bonjour.m ├── Integration │ ├── UIApplication+Delegate.h │ └── UIApplication+Delegate.m ├── Manager │ ├── ALPHAManager.h │ ├── ALPHAManager.m │ ├── ALPHAWindow.h │ ├── ALPHAWindow.m │ ├── Controller │ │ ├── ALPHANavigationController.h │ │ └── ALPHANavigationController.m │ └── Notification │ │ ├── ALPHAStatusBarNotification.h │ │ └── ALPHAStatusBarNotification.m ├── Model │ ├── Action │ │ ├── ALPHAActionItem.h │ │ ├── ALPHAActionItem.m │ │ ├── ALPHAActions.h │ │ ├── ALPHABlockActionItem.h │ │ ├── ALPHABlockActionItem.m │ │ ├── ALPHAGlobalActionIdentifiers.h │ │ ├── ALPHAGlobalActionIdentifiers.m │ │ ├── ALPHAScreenActionItem.h │ │ ├── ALPHAScreenActionItem.m │ │ ├── ALPHASelectorActionItem.h │ │ └── ALPHASelectorActionItem.m │ ├── Conversion │ │ ├── ALPHAConversion.h │ │ ├── ALPHAConverterManager.h │ │ ├── ALPHAConverterManager.m │ │ └── ALPHADataConverterSource.h │ ├── Core │ │ ├── ALPHADataRenderer.h │ │ ├── ALPHADataSource.h │ │ ├── ALPHAGenericModel.h │ │ ├── ALPHAGenericModel.m │ │ ├── ALPHAIdentifiableItem.h │ │ ├── ALPHAModel.h │ │ ├── ALPHAModel.m │ │ ├── ALPHAPlugin.h │ │ └── ALPHAPlugin.m │ ├── Network │ │ ├── ALPHANetworkObject.h │ │ ├── ALPHANetworkObject.m │ │ ├── ALPHARequest.h │ │ └── ALPHARequest.m │ ├── Object │ │ ├── ALPHAObjectActionItem.h │ │ ├── ALPHAObjectActionItem.m │ │ ├── ALPHAObjectArgument.h │ │ ├── ALPHAObjectArgument.m │ │ ├── ALPHAObjectContent.h │ │ ├── ALPHAObjectContent.m │ │ ├── ALPHAObjectElement.h │ │ ├── ALPHAObjectElement.m │ │ ├── ALPHAObjectIvar.h │ │ ├── ALPHAObjectIvar.m │ │ ├── ALPHAObjectMethod.h │ │ ├── ALPHAObjectMethod.m │ │ ├── ALPHAObjectModel.h │ │ ├── ALPHAObjectModel.m │ │ ├── ALPHAObjectPrintable.h │ │ ├── ALPHAObjectProperty.h │ │ ├── ALPHAObjectProperty.m │ │ ├── ALPHAObjectType.h │ │ └── ALPHAObjectType.m │ ├── Screen │ │ ├── ALPHAScreenItem.h │ │ ├── ALPHAScreenItem.m │ │ ├── ALPHAScreenModel.h │ │ ├── ALPHAScreenModel.m │ │ ├── ALPHAScreenRenderableItem.h │ │ ├── ALPHAScreenSection.h │ │ ├── ALPHAScreenSection.m │ │ ├── ALPHATableScreenModel.h │ │ └── ALPHATableScreenModel.m │ ├── Serialization │ │ ├── ALPHASerializableItem.h │ │ ├── ALPHASerialization.h │ │ ├── ALPHASerialization.m │ │ └── ALPHASerializer.h │ └── Source │ │ ├── ALPHABaseDataSource.h │ │ ├── ALPHABaseDataSource.m │ │ ├── ALPHALocalFileSource.h │ │ ├── ALPHALocalFileSource.m │ │ ├── ALPHALocalSource.h │ │ └── ALPHALocalSource.m ├── Palettes │ ├── ALPHAAlizarinColorPalette.h │ ├── ALPHAAlizarinColorPalette.m │ ├── ALPHAAmethystColorPalette.h │ ├── ALPHAAmethystColorPalette.m │ ├── ALPHAFormenteraColorPalette.h │ ├── ALPHAFormenteraColorPalette.m │ ├── ALPHAGreenSeaColorPalette.h │ ├── ALPHAGreenSeaColorPalette.m │ ├── ALPHANotioColorPalette.h │ └── ALPHANotioColorPalette.m ├── Plugins │ ├── Application │ │ ├── ALPHAApplicationPlugin.h │ │ ├── ALPHAApplicationPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAApplicationIcon.h │ │ │ └── ALPHAApplicationIcon.m │ │ ├── Headers │ │ │ ├── LSApplicationProxy.h │ │ │ ├── LSApplicationWorkspace.h │ │ │ └── UIImage+UIApplicationIconPrivate.h │ │ └── Sources │ │ │ ├── ALPHAApplicationSource.h │ │ │ └── ALPHAApplicationSource.m │ ├── Bootstrap │ │ ├── ALPHABootstrapPlugin.h │ │ ├── ALPHABootstrapPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAEnvironmentIcon.h │ │ │ └── ALPHAEnvironmentIcon.m │ │ ├── Library │ │ │ ├── ALPHABootstrap.h │ │ │ └── ALPHABootstrap.m │ │ └── Sources │ │ │ ├── ALPHAEnvironmentSource.h │ │ │ └── ALPHAEnvironmentSource.m │ ├── Console │ │ ├── ALPHAConsolePlugin.h │ │ ├── ALPHAConsolePlugin.m │ │ ├── Assets │ │ │ ├── ALPHAConsoleIcon.h │ │ │ └── ALPHAConsoleIcon.m │ │ ├── Converters │ │ │ ├── ALPHAConsoleConverter.h │ │ │ └── ALPHAConsoleConverter.m │ │ ├── Model │ │ │ ├── ALPHAConsoleLog.h │ │ │ ├── ALPHAConsoleLog.m │ │ │ ├── ALPHAConsoleModel.h │ │ │ └── ALPHAConsoleModel.m │ │ └── Sources │ │ │ ├── ALPHAConsoleSource.h │ │ │ └── ALPHAConsoleSource.m │ ├── Event │ │ ├── ALPHAEventPlugin.h │ │ ├── ALPHAEventPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAEventIcon.h │ │ │ └── ALPHAEventIcon.m │ │ ├── Converters │ │ │ ├── ALPHAEventConverter.h │ │ │ └── ALPHAEventConverter.m │ │ ├── Library │ │ │ ├── UIViewController+ALPHAEventLog.h │ │ │ └── UIViewController+ALPHAEventLog.m │ │ ├── Model │ │ │ ├── ALPHAApplicationEvent.h │ │ │ ├── ALPHAApplicationEvent.m │ │ │ ├── ALPHAEventModel.h │ │ │ └── ALPHAEventModel.m │ │ └── Sources │ │ │ ├── ALPHAEventSource.h │ │ │ └── ALPHAEventSource.m │ ├── File │ │ ├── ALPHAFilePlugin.h │ │ ├── ALPHAFilePlugin.m │ │ ├── Assets │ │ │ ├── ALPHAFileIcon.h │ │ │ └── ALPHAFileIcon.m │ │ ├── Converters │ │ │ ├── ALPHAFileConverter.h │ │ │ └── ALPHAFileConverter.m │ │ ├── Model │ │ │ ├── ALPHAFileModel.h │ │ │ ├── ALPHAFileModel.m │ │ │ ├── ALPHAFileObject.h │ │ │ └── ALPHAFileObject.m │ │ └── Sources │ │ │ ├── ALPHAFileSource.h │ │ │ └── ALPHAFileSource.m │ ├── Global │ │ ├── ALPHAGlobalPlugin.h │ │ ├── ALPHAGlobalPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAGlobalIcon.h │ │ │ └── ALPHAGlobalIcon.m │ │ └── Sources │ │ │ ├── ALPHAClassSource.h │ │ │ ├── ALPHAClassSource.m │ │ │ ├── ALPHAGlobalSource.h │ │ │ ├── ALPHAGlobalSource.m │ │ │ ├── ALPHALibrarySource.h │ │ │ └── ALPHALibrarySource.m │ ├── Heap │ │ ├── ALPHAHeapPlugin.h │ │ ├── ALPHAHeapPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAHeapIcon.h │ │ │ └── ALPHAHeapIcon.m │ │ └── Sources │ │ │ ├── ALPHAHeapSource.h │ │ │ └── ALPHAHeapSource.m │ ├── Interface │ │ ├── ALPHAInterfacePlugin.h │ │ ├── ALPHAInterfacePlugin.m │ │ ├── Controllers │ │ │ ├── ALPHAMainViewController.h │ │ │ └── ALPHAMainViewController.m │ │ ├── Menu │ │ │ ├── ALPHACircleMenuView.h │ │ │ ├── ALPHACircleMenuView.m │ │ │ ├── ALPHAExplorerMenu.h │ │ │ ├── ALPHAExplorerMenu.m │ │ │ ├── ALPHAMenuCenterView.h │ │ │ ├── ALPHAMenuCenterView.m │ │ │ └── CGVectorAdditions.h │ │ └── Sources │ │ │ ├── ALPHAMenuSource.h │ │ │ └── ALPHAMenuSource.m │ ├── Keychain │ │ ├── ALPHAKeychainPlugin.h │ │ ├── ALPHAKeychainPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAKeychainIcon.h │ │ │ └── ALPHAKeychainIcon.m │ │ ├── Library │ │ │ ├── ALPHAKeychain.h │ │ │ └── ALPHAKeychain.m │ │ ├── Model │ │ │ ├── ALPHAKeychainItem.h │ │ │ └── ALPHAKeychainItem.m │ │ └── Sources │ │ │ ├── ALPHAKeychainSource.h │ │ │ └── ALPHAKeychainSource.m │ ├── Network │ │ ├── ALPHANetworkPlugin.h │ │ ├── ALPHANetworkPlugin.m │ │ ├── Assets │ │ │ ├── ALPHANetworkIcon.h │ │ │ └── ALPHANetworkIcon.m │ │ ├── Converters │ │ │ ├── ALPHANetworkConverter.h │ │ │ └── ALPHANetworkConverter.m │ │ ├── Library │ │ │ ├── ALPHARequestState.h │ │ │ └── ALPHARequestState.m │ │ ├── Model │ │ │ ├── ALPHANetworkConnection.h │ │ │ ├── ALPHANetworkConnection.m │ │ │ ├── ALPHANetworkConnectionTiming.h │ │ │ ├── ALPHANetworkConnectionTiming.m │ │ │ ├── ALPHANetworkError.h │ │ │ ├── ALPHANetworkError.m │ │ │ ├── ALPHANetworkInitiator.h │ │ │ ├── ALPHANetworkInitiator.m │ │ │ ├── ALPHANetworkModel.h │ │ │ ├── ALPHANetworkModel.m │ │ │ ├── ALPHANetworkRequest.h │ │ │ ├── ALPHANetworkRequest.m │ │ │ ├── ALPHANetworkResponse.h │ │ │ └── ALPHANetworkResponse.m │ │ └── Sources │ │ │ ├── ALPHANetworkSource.h │ │ │ └── ALPHANetworkSource.m │ ├── Notification │ │ ├── ALPHANotificationPlugin.h │ │ ├── ALPHANotificationPlugin.m │ │ ├── Assets │ │ │ ├── ALPHANotificationIcon.h │ │ │ └── ALPHANotificationIcon.m │ │ ├── Converters │ │ │ ├── ALPHANotificationConverter.h │ │ │ └── ALPHANotificationConverter.m │ │ ├── Model │ │ │ ├── ALPHANotification.h │ │ │ ├── ALPHANotification.m │ │ │ ├── ALPHANotificationModel.h │ │ │ └── ALPHANotificationModel.m │ │ └── Sources │ │ │ ├── ALPHANotificationSource.h │ │ │ └── ALPHANotificationSource.m │ ├── Object │ │ ├── ALPHAObjectPlugin.h │ │ ├── ALPHAObjectPlugin.m │ │ ├── Converters │ │ │ ├── ALPHAObjectConverter.h │ │ │ └── ALPHAObjectConverter.m │ │ └── Sources │ │ │ ├── ALPHAInstanceSource.h │ │ │ ├── ALPHAInstanceSource.m │ │ │ ├── ALPHAObjectSource.h │ │ │ └── ALPHAObjectSource.m │ ├── Permission │ │ ├── ALPHAPermissionPlugin.h │ │ ├── ALPHAPermissionPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAPermissionIcon.h │ │ │ └── ALPHAPermissionIcon.m │ │ ├── Library │ │ │ ├── ALPHATCC.h │ │ │ ├── ALPHATCC.m │ │ │ ├── ALPHATCCAccessManager.h │ │ │ └── ALPHATCCAccessManager.m │ │ ├── Model │ │ │ ├── ALPHAAssetPermission.h │ │ │ ├── ALPHAAssetPermission.m │ │ │ ├── ALPHAAudioPermission.h │ │ │ ├── ALPHAAudioPermission.m │ │ │ ├── ALPHABluetoothPermission.h │ │ │ ├── ALPHABluetoothPermission.m │ │ │ ├── ALPHAContactPermission.h │ │ │ ├── ALPHAContactPermission.m │ │ │ ├── ALPHAEventPermission.h │ │ │ ├── ALPHAEventPermission.m │ │ │ ├── ALPHAHealthPermission.h │ │ │ ├── ALPHAHealthPermission.m │ │ │ ├── ALPHAHomePermission.h │ │ │ ├── ALPHAHomePermission.m │ │ │ ├── ALPHALocationPermission.h │ │ │ ├── ALPHALocationPermission.m │ │ │ ├── ALPHAMobileDataPermission.h │ │ │ ├── ALPHAMobileDataPermission.m │ │ │ ├── ALPHAMotionPermission.h │ │ │ ├── ALPHAMotionPermission.m │ │ │ ├── ALPHANotificationPermission.h │ │ │ ├── ALPHANotificationPermission.m │ │ │ ├── ALPHAPermission.h │ │ │ ├── ALPHAPermission.m │ │ │ ├── ALPHAPermissions.h │ │ │ ├── ALPHASocialPermission.h │ │ │ ├── ALPHASocialPermission.m │ │ │ ├── ALPHATCCPermission.h │ │ │ ├── ALPHATCCPermission.m │ │ │ ├── ALPHAVideoPermission.h │ │ │ └── ALPHAVideoPermission.m │ │ └── Sources │ │ │ ├── ALPHAPermissionSource.h │ │ │ └── ALPHAPermissionSource.m │ ├── Remote │ │ ├── ALPHARemotePlugin.h │ │ ├── ALPHARemotePlugin.m │ │ ├── Model │ │ │ ├── ALPHABonjourConnection.h │ │ │ └── ALPHABonjourConnection.m │ │ └── Sources │ │ │ ├── ALPHABonjourServerSource.h │ │ │ ├── ALPHABonjourServerSource.m │ │ │ ├── ALPHABonjourSource.h │ │ │ └── ALPHABonjourSource.m │ ├── Screenshot │ │ ├── ALPHAScreenshotPlugin.h │ │ ├── ALPHAScreenshotPlugin.m │ │ ├── Assets │ │ │ ├── ALPHAScreenshotIcon.h │ │ │ └── ALPHAScreenshotIcon.m │ │ └── Sources │ │ │ ├── ALPHAScreenshotSource.h │ │ │ └── ALPHAScreenshotSource.m │ ├── Server │ │ ├── ALPHAServerPlugin.h │ │ ├── ALPHAServerPlugin.m │ │ └── Model │ │ │ ├── ALPHABonjourConfig.h │ │ │ ├── ALPHABonjourConfig.m │ │ │ ├── ALPHAServerNode.h │ │ │ └── ALPHAServerNode.m │ ├── State │ │ ├── ALPHAStatePlugin.h │ │ ├── ALPHAStatePlugin.m │ │ ├── Assets │ │ │ ├── ALPHAStatusIcon.h │ │ │ └── ALPHAStatusIcon.m │ │ ├── Library │ │ │ ├── UIDevice+ALPHAStatus.h │ │ │ └── UIDevice+ALPHAStatus.m │ │ └── Sources │ │ │ ├── ALPHADeviceStatusSource.h │ │ │ └── ALPHADeviceStatusSource.m │ ├── Touch │ │ ├── ALPHATouchPlugin.h │ │ ├── ALPHATouchPlugin.m │ │ ├── Assets │ │ │ ├── ALPHATouchIcon.h │ │ │ └── ALPHATouchIcon.m │ │ └── Library │ │ │ ├── ALPHATouchFingerView.h │ │ │ ├── ALPHATouchFingerView.m │ │ │ ├── ALPHATouchViewController.h │ │ │ ├── ALPHATouchViewController.m │ │ │ ├── ALPHATouchWindow.h │ │ │ └── ALPHATouchWindow.m │ └── View │ │ ├── ALPHAViewHierarchyPlugin.h │ │ ├── ALPHAViewHierarchyPlugin.m │ │ ├── Assets │ │ ├── ALPHAMoveIcon.h │ │ ├── ALPHAMoveIcon.m │ │ ├── ALPHASelectIcon.h │ │ ├── ALPHASelectIcon.m │ │ ├── ALPHAViewIcon.h │ │ └── ALPHAViewIcon.m │ │ ├── Controllers │ │ ├── ALPHAHierarchyTableViewController.h │ │ ├── ALPHAHierarchyTableViewController.m │ │ ├── ALPHAViewHierarchyViewController.h │ │ └── ALPHAViewHierarchyViewController.m │ │ ├── Converters │ │ ├── ALPHAViewHierarchyConverter.h │ │ └── ALPHAViewHierarchyConverter.m │ │ ├── Model │ │ ├── ALPHASerializableView.h │ │ ├── ALPHASerializableView.m │ │ ├── ALPHAViewHierarchyModel.h │ │ └── ALPHAViewHierarchyModel.m │ │ ├── Sources │ │ ├── ALPHAViewHierarchySource.h │ │ └── ALPHAViewHierarchySource.m │ │ ├── Toolbar │ │ ├── ALPHAExplorerToolbar.h │ │ ├── ALPHAExplorerToolbar.m │ │ ├── ALPHAToolbarItem.h │ │ └── ALPHAToolbarItem.m │ │ └── Views │ │ ├── ALPHADepthIndicatorView.h │ │ ├── ALPHADepthIndicatorView.m │ │ ├── ALPHAHierarchyTableViewCell.h │ │ └── ALPHAHierarchyTableViewCell.m ├── Private │ ├── UIApplication+Private.h │ └── UIApplication+Private.m ├── Renderers │ ├── ALPHADefaultsRendererViewController.h │ ├── ALPHADefaultsRendererViewController.m │ ├── ALPHAFieldRendererViewController.h │ ├── ALPHAFieldRendererViewController.m │ ├── ALPHAImageRendererViewController.h │ ├── ALPHAImageRendererViewController.m │ ├── ALPHAIvarRendererViewController.h │ ├── ALPHAIvarRendererViewController.m │ ├── ALPHAMethodRendererViewController.h │ ├── ALPHAMethodRendererViewController.m │ ├── ALPHAPropertyRendererViewController.h │ ├── ALPHAPropertyRendererViewController.m │ ├── ALPHATableRendererViewController.h │ ├── ALPHATableRendererViewController.m │ ├── ALPHAWebRendererViewController.h │ ├── ALPHAWebRendererViewController.m │ ├── Converter │ │ ├── ALPHAGenericConverter.h │ │ └── ALPHAGenericConverter.m │ └── Manager │ │ ├── ALPHAScreenManager.h │ │ └── ALPHAScreenManager.m ├── Themes │ ├── ALPHAColorPalette.h │ ├── ALPHAColorPalette.m │ ├── ALPHATheme.h │ ├── ALPHATheme.m │ ├── UIColor+Tools.h │ ├── UIColor+Tools.m │ ├── UIFont+Convenience.h │ └── UIFont+Convenience.m ├── Triggers │ ├── ALPHAShakeTrigger.h │ ├── ALPHAShakeTrigger.m │ ├── ALPHATapTrigger.h │ ├── ALPHATapTrigger.m │ ├── ALPHATrigger+Private.h │ ├── ALPHATrigger+Private.m │ ├── ALPHATrigger.h │ └── ALPHATrigger.m ├── Utility │ ├── ALPHAApplicationDelegate.h │ ├── ALPHAApplicationDelegate.m │ ├── ALPHACore.h │ ├── Categories │ │ ├── Foundation │ │ │ ├── NSArray+Class.h │ │ │ ├── NSArray+Class.m │ │ │ ├── NSInvocation+Argument.h │ │ │ ├── NSInvocation+Argument.m │ │ │ ├── NSObject+Property.h │ │ │ ├── NSObject+Property.m │ │ │ ├── NSObject+Runtime.h │ │ │ ├── NSObject+Runtime.m │ │ │ ├── NSObject+Swizzle.h │ │ │ ├── NSObject+Swizzle.m │ │ │ ├── NSString+Data.h │ │ │ ├── NSString+Data.m │ │ │ ├── NSString+Entities.h │ │ │ ├── NSString+Entities.m │ │ │ ├── NSString+Identifier.h │ │ │ ├── NSString+Identifier.m │ │ │ ├── NSString+Random.h │ │ │ └── NSString+Random.m │ │ └── UIKit │ │ │ ├── UIApplication+Event.h │ │ │ ├── UIApplication+Event.m │ │ │ ├── UIApplication+Information.h │ │ │ ├── UIApplication+Information.m │ │ │ ├── UIApplication+Screenshot.h │ │ │ ├── UIApplication+Screenshot.m │ │ │ ├── UIApplication+Version.h │ │ │ ├── UIApplication+Version.m │ │ │ ├── UIColor+Utility.h │ │ │ ├── UIColor+Utility.m │ │ │ ├── UIDevice+DeviceInfo.h │ │ │ ├── UIDevice+DeviceInfo.m │ │ │ ├── UIDevice+Hardware.h │ │ │ ├── UIDevice+Hardware.m │ │ │ ├── UIDevice+Network.h │ │ │ ├── UIDevice+Network.m │ │ │ ├── UIDevice+Software.h │ │ │ ├── UIDevice+Software.m │ │ │ ├── UIView+Snapshot.h │ │ │ └── UIView+Snapshot.m │ ├── General │ │ ├── ALPHAFileManager.h │ │ ├── ALPHAFileManager.m │ │ ├── ALPHAHeapUtility.h │ │ ├── ALPHAHeapUtility.m │ │ ├── ALPHAMath.h │ │ ├── ALPHAMath.m │ │ ├── ALPHAMockObject.h │ │ ├── ALPHAMockObject.m │ │ ├── ALPHARuntimeUtility.h │ │ ├── ALPHARuntimeUtility.m │ │ ├── ALPHAUtility.h │ │ └── ALPHAUtility.m │ └── View │ │ ├── ALPHACanvasView.h │ │ ├── ALPHACanvasView.m │ │ ├── ALPHAViewController.h │ │ └── ALPHAViewController.m └── View │ ├── ALPHAFieldEditorView.h │ ├── ALPHAFieldEditorView.m │ ├── ALPHAMultilineTableViewCell.h │ ├── ALPHAMultilineTableViewCell.m │ ├── ALPHASearchScopeView.h │ ├── ALPHASearchScopeView.m │ └── ArgumentInputViews │ ├── ALPHAArgumentInputColorView.h │ ├── ALPHAArgumentInputColorView.m │ ├── ALPHAArgumentInputDateView.h │ ├── ALPHAArgumentInputDateView.m │ ├── ALPHAArgumentInputFontView.h │ ├── ALPHAArgumentInputFontView.m │ ├── ALPHAArgumentInputFontsPickerView.h │ ├── ALPHAArgumentInputFontsPickerView.m │ ├── ALPHAArgumentInputJSONObjectView.h │ ├── ALPHAArgumentInputJSONObjectView.m │ ├── ALPHAArgumentInputNotSupportedView.h │ ├── ALPHAArgumentInputNotSupportedView.m │ ├── ALPHAArgumentInputNumberView.h │ ├── ALPHAArgumentInputNumberView.m │ ├── ALPHAArgumentInputStringView.h │ ├── ALPHAArgumentInputStringView.m │ ├── ALPHAArgumentInputStructView.h │ ├── ALPHAArgumentInputStructView.m │ ├── ALPHAArgumentInputSwitchView.h │ ├── ALPHAArgumentInputSwitchView.m │ ├── ALPHAArgumentInputTextView.h │ ├── ALPHAArgumentInputTextView.m │ ├── ALPHAArgumentInputView.h │ ├── ALPHAArgumentInputView.m │ ├── ALPHAArgumentInputViewFactory.h │ └── ALPHAArgumentInputViewFactory.m ├── AlphaTests ├── AlphaNetworkObjectTests.m ├── AlphaSerializationTests.m ├── AlphaTests.m ├── Info.plist └── Tools │ ├── ALPHAFailureRecorder.h │ ├── ALPHAFailureRecorder.m │ ├── ALPHATestCase.h │ └── ALPHATestCase.m ├── AlphaTool ├── ALPHAToolDelegate.h ├── ALPHAToolDelegate.m ├── AlphaTool-Info.plist ├── Launch.storyboard ├── Main.storyboard └── main.m ├── Demo ├── Alpha.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Alpha.xcscheme │ │ ├── AlphaService.xcscheme │ │ ├── AlphaTool.xcscheme │ │ ├── UICatalog.xcscheme │ │ └── UIKitCatalog.xcscheme ├── Alpha.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings ├── Podfile ├── Podfile.lock ├── Pods │ ├── FXKeychain │ │ ├── FXKeychain │ │ │ ├── FXKeychain.h │ │ │ └── FXKeychain.m │ │ ├── LICENCE.md │ │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── FXKeychain │ │ ├── FXKeychain-dummy.m │ │ ├── FXKeychain-prefix.pch │ │ ├── FXKeychain-umbrella.h │ │ ├── FXKeychain.modulemap │ │ ├── FXKeychain.xcconfig │ │ └── Info.plist │ │ └── Pods-UICatalog │ │ ├── Info.plist │ │ ├── Pods-UICatalog-acknowledgements.markdown │ │ ├── Pods-UICatalog-acknowledgements.plist │ │ ├── Pods-UICatalog-dummy.m │ │ ├── Pods-UICatalog-frameworks.sh │ │ ├── Pods-UICatalog-resources.sh │ │ ├── Pods-UICatalog-umbrella.h │ │ ├── Pods-UICatalog.debug.xcconfig │ │ ├── Pods-UICatalog.modulemap │ │ └── Pods-UICatalog.release.xcconfig ├── UICatalog │ ├── AAPLActionSheetViewController.h │ ├── AAPLActionSheetViewController.m │ ├── AAPLActivityIndicatorViewController.h │ ├── AAPLActivityIndicatorViewController.m │ ├── AAPLAlertViewController.h │ ├── AAPLAlertViewController.m │ ├── AAPLAppDelegate.h │ ├── AAPLAppDelegate.m │ ├── AAPLButtonViewController.h │ ├── AAPLButtonViewController.m │ ├── AAPLCustomSearchBarViewController.h │ ├── AAPLCustomSearchBarViewController.m │ ├── AAPLCustomToolbarViewController.h │ ├── AAPLCustomToolbarViewController.m │ ├── AAPLDatePickerController.h │ ├── AAPLDatePickerController.m │ ├── AAPLDefaultSearchBarViewController.h │ ├── AAPLDefaultSearchBarViewController.m │ ├── AAPLDefaultToolbarViewController.h │ ├── AAPLDefaultToolbarViewController.m │ ├── AAPLImageViewController.h │ ├── AAPLImageViewController.m │ ├── AAPLMasterViewController.h │ ├── AAPLMasterViewController.m │ ├── AAPLNetworkViewController.h │ ├── AAPLNetworkViewController.m │ ├── AAPLPageControlViewController.h │ ├── AAPLPageControlViewController.m │ ├── AAPLPickerViewController.h │ ├── AAPLPickerViewController.m │ ├── AAPLProgressViewController.h │ ├── AAPLProgressViewController.m │ ├── AAPLSegmentedControlViewController.h │ ├── AAPLSegmentedControlViewController.m │ ├── AAPLSliderViewController.h │ ├── AAPLSliderViewController.m │ ├── AAPLSplitViewControllerDelegate.h │ ├── AAPLSplitViewControllerDelegate.m │ ├── AAPLStepperViewController.h │ ├── AAPLStepperViewController.m │ ├── AAPLSwitchViewController.h │ ├── AAPLSwitchViewController.m │ ├── AAPLTextFieldViewController.h │ ├── AAPLTextFieldViewController.m │ ├── AAPLTextViewController.h │ ├── AAPLTextViewController.m │ ├── AAPLTintedToolbarViewController.h │ ├── AAPLTintedToolbarViewController.m │ ├── AAPLWebViewController.h │ ├── AAPLWebViewController.m │ ├── Application │ │ ├── AAPLAppDelegate.h │ │ ├── AAPLAppDelegate.m │ │ ├── Base.lproj │ │ │ ├── Main_iPad.storyboard │ │ │ └── Main_iPhone.storyboard │ │ ├── Launch.xib │ │ ├── UIColor+AAPLApplicationSpecific.h │ │ ├── UIColor+AAPLApplicationSpecific.m │ │ └── main.m │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x-1.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-1.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ └── Icon-Small@2x.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── bookmark_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark_icon_1x.png │ │ │ └── bookmark_icon_2x.png │ │ ├── bookmark_icon_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark_icon_highlighted_1x.png │ │ │ └── bookmark_icon_highlighted_2x.png │ │ ├── checkmark_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── checkmark_icon_1x.png │ │ │ └── checkmark_icon_2x.png │ │ ├── image_animal_1.imageset │ │ │ ├── Contents.json │ │ │ └── image_animal_5.png │ │ ├── image_animal_2.imageset │ │ │ ├── Contents.json │ │ │ └── image_animal_2.png │ │ ├── image_animal_3.imageset │ │ │ ├── Contents.json │ │ │ └── image_animal_3.png │ │ ├── image_animal_4.imageset │ │ │ ├── Contents.json │ │ │ └── image_animal_4.png │ │ ├── image_animal_5.imageset │ │ │ ├── Contents.json │ │ │ └── image_animal_1.png │ │ ├── search_bar_background.imageset │ │ │ ├── Contents.json │ │ │ ├── search_bar_bg_1x.png │ │ │ └── search_bar_bg_2x.png │ │ ├── search_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── search_icon_1x.png │ │ │ └── search_icon_2x.png │ │ ├── slider_blue_track.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_blue_track_1x.png │ │ │ └── slider_blue_track_2x.png │ │ ├── slider_green_track.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_green_track_1x.png │ │ │ └── slider_green_track_2x.png │ │ ├── slider_thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── slider_thumb_1x.png │ │ │ └── slider_thumb_2x.png │ │ ├── stepper_and_segment_background.imageset │ │ │ ├── Contents.json │ │ │ ├── stepper_and_segment_background_1x.png │ │ │ └── stepper_and_segment_background_2x.png │ │ ├── stepper_and_segment_background_disabled.imageset │ │ │ ├── Contents.json │ │ │ ├── stepper_and_segment_background_disabled_1x.png │ │ │ └── stepper_and_segment_background_disabled_2x.png │ │ ├── stepper_and_segment_background_highlighted.imageset │ │ │ ├── Contents.json │ │ │ ├── stepper_and_segment_background_highlighted_1x.png │ │ │ └── stepper_and_segment_background_highlighted_2x.png │ │ ├── stepper_and_segment_segment_divider.imageset │ │ │ ├── Contents.json │ │ │ ├── stepper_and_segment_segment_divider_1x.png │ │ │ └── stepper_and_segment_segment_divider_2x.png │ │ ├── stepper_decrement.imageset │ │ │ ├── Contents.json │ │ │ ├── decrement_1x.png │ │ │ └── decrement_2x.png │ │ ├── stepper_increment.imageset │ │ │ ├── Contents.json │ │ │ ├── stepper_increment_1x.png │ │ │ └── stepper_increment_2x.png │ │ ├── text_field_background.imageset │ │ │ ├── Contents.json │ │ │ ├── text_field_background_1x.png │ │ │ └── text_field_background_2x.png │ │ ├── text_field_purple_right_view.imageset │ │ │ ├── Contents.json │ │ │ ├── text_field_purple_right_view_1x.png │ │ │ └── text_field_purple_right_view_2x.png │ │ ├── text_view_attachment.imageset │ │ │ ├── Contents.json │ │ │ ├── text_view_attachment_1x.png │ │ │ └── text_view_attachment_2x.png │ │ ├── toolbar_background.imageset │ │ │ ├── Contents.json │ │ │ ├── toolbar_background_1x.png │ │ │ └── toolbar_background_2x.png │ │ ├── tools_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── tools_icon_1x.png │ │ │ └── tools_icon_2x.png │ │ └── x_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── x_icon_1x.png │ │ │ └── x_icon_2x.png │ ├── Integration │ │ ├── AAPLCatalogTableTableViewController.h │ │ └── AAPLCatalogTableTableViewController.m │ ├── Launch.xib │ ├── Supporting Files │ │ ├── UICatalog-Info.plist │ │ ├── UICatalog-Prefix.pch │ │ └── en.lproj │ │ │ └── Localizable.strings │ ├── UICatalog-Info.plist │ ├── UICatalog-Prefix.pch │ ├── UIColor+AAPLApplicationSpecific.h │ ├── UIColor+AAPLApplicationSpecific.m │ ├── View Controllers │ │ ├── AAPLActionSheetViewController.h │ │ ├── AAPLActionSheetViewController.m │ │ ├── AAPLActivityIndicatorViewController.h │ │ ├── AAPLActivityIndicatorViewController.m │ │ ├── AAPLAlertViewController.h │ │ ├── AAPLAlertViewController.m │ │ ├── AAPLButtonViewController.h │ │ ├── AAPLButtonViewController.m │ │ ├── AAPLCustomSearchBarViewController.h │ │ ├── AAPLCustomSearchBarViewController.m │ │ ├── AAPLCustomToolbarViewController.h │ │ ├── AAPLCustomToolbarViewController.m │ │ ├── AAPLDatePickerController.h │ │ ├── AAPLDatePickerController.m │ │ ├── AAPLDefaultSearchBarViewController.h │ │ ├── AAPLDefaultSearchBarViewController.m │ │ ├── AAPLDefaultToolbarViewController.h │ │ ├── AAPLDefaultToolbarViewController.m │ │ ├── AAPLImageViewController.h │ │ ├── AAPLImageViewController.m │ │ ├── AAPLNetworkViewController.h │ │ ├── AAPLNetworkViewController.m │ │ ├── AAPLPageControlViewController.h │ │ ├── AAPLPageControlViewController.m │ │ ├── AAPLPickerViewController.h │ │ ├── AAPLPickerViewController.m │ │ ├── AAPLProgressViewController.h │ │ ├── AAPLProgressViewController.m │ │ ├── AAPLSegmentedControlViewController.h │ │ ├── AAPLSegmentedControlViewController.m │ │ ├── AAPLSliderViewController.h │ │ ├── AAPLSliderViewController.m │ │ ├── AAPLStepperViewController.h │ │ ├── AAPLStepperViewController.m │ │ ├── AAPLSwitchViewController.h │ │ ├── AAPLSwitchViewController.m │ │ ├── AAPLTextFieldViewController.h │ │ ├── AAPLTextFieldViewController.m │ │ ├── AAPLTextViewController.h │ │ ├── AAPLTextViewController.m │ │ ├── AAPLTintedToolbarViewController.h │ │ ├── AAPLTintedToolbarViewController.m │ │ ├── AAPLWebViewController.h │ │ ├── AAPLWebViewController.m │ │ └── SplitView │ │ │ ├── AAPLMasterViewController.h │ │ │ ├── AAPLMasterViewController.m │ │ │ ├── AAPLSplitViewControllerDelegate.h │ │ │ └── AAPLSplitViewControllerDelegate.m │ ├── en.lproj │ │ └── Localizable.strings │ └── main.m └── UIKitCatalog │ ├── AlertFormViewController.swift │ ├── AlertsViewController.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IconBack.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── IconFront.png │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IconBack.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── IconFront.png │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ ├── Contents.json │ │ │ └── TopShelf.png │ ├── Brand Assets.brandassets │ │ └── Contents.json │ ├── Contents.json │ ├── Image.imageset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── Scenery 1.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 1 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 1 top.png │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 1 middle.png │ │ │ └── Contents.json │ ├── Scenery 2.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 2 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 2 top.png │ │ │ └── Contents.json │ │ ├── Middle 1.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 2 middle 1.png │ │ │ └── Contents.json │ │ └── Middle 2.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 2 middle 2.png │ │ │ └── Contents.json │ ├── Scenery 3.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 3 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 3 top.png │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 3 middle.png │ │ │ └── Contents.json │ ├── Scenery 4.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 4 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 4 top.png │ │ │ └── Contents.json │ │ ├── Middle 1.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 4 middle 1.png │ │ │ └── Contents.json │ │ └── Middle 2.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 4 middle 2.png │ │ │ └── Contents.json │ ├── Scenery 5.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 5 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 5 top.png │ │ │ └── Contents.json │ │ ├── Middle 1.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 5 middle 1.png │ │ │ └── Contents.json │ │ └── Middle 2.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 5 middle 2.png │ │ │ └── Contents.json │ ├── Scenery 6.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 6 back.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scenery 6 top.png │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── Scenery 6 middle.png │ │ │ └── Contents.json │ ├── checkmark_icon.imageset │ │ ├── Contents.json │ │ └── checkmark_icon.png │ ├── search_icon.imageset │ │ ├── Contents.json │ │ └── search_icon.png │ ├── star_icon.imageset │ │ ├── Contents.json │ │ └── star_icon.png │ ├── stepper_and_segment_background.imageset │ │ ├── Contents.json │ │ └── stepper_and_segment_background.png │ ├── stepper_and_segment_background_disabled.imageset │ │ ├── Contents.json │ │ └── stepper_and_segment_background_disabled.png │ ├── stepper_and_segment_background_highlighted.imageset │ │ ├── Contents.json │ │ └── stepper_and_segment_background_highlighted.png │ └── stepper_and_segment_segment_divider.imageset │ │ ├── Contents.json │ │ └── stepper_and_segment_segment_divider.png │ ├── ButtonsViewController.swift │ ├── CollectionViewContainerCell.swift │ ├── CollectionViewContainerViewController.swift │ ├── CollectionViewController.swift │ ├── ControlsMenuViewController.swift │ ├── CustomInputAccessoryView.swift │ ├── DataItem+ImageName.swift │ ├── DataItem+SampleData.swift │ ├── DataItem.swift │ ├── DataItemCellComposer.swift │ ├── DataItemCollectionViewCell.swift │ ├── DataItemViewController.swift │ ├── FocusGuidesViewController.swift │ ├── GradientMaskView.swift │ ├── Info.plist │ ├── MenuSplitViewController.swift │ ├── MenuTableViewController.swift │ ├── PageViewController.swift │ ├── ProgressViewController.swift │ ├── Resources │ ├── Baby 1.jpg │ ├── Baby 2.jpg │ ├── Baby 3.jpg │ ├── Baby 4.jpg │ ├── Baby 5.jpg │ ├── Baby 6.jpg │ ├── Baby 7.jpg │ ├── Baby 8.jpg │ ├── Iceland 1.jpg │ ├── Iceland 2.jpg │ ├── Iceland 3.jpg │ ├── Iceland 4.jpg │ ├── Iceland 5.jpg │ ├── Iceland 6.jpg │ ├── Iceland 7.jpg │ ├── Iceland 8.jpg │ ├── Italy 1.jpg │ ├── Italy 2.jpg │ ├── Italy 3.jpg │ ├── Italy 4.jpg │ ├── Italy 5.jpg │ ├── Italy 6.jpg │ ├── Italy 7.jpg │ ├── Italy 8.jpg │ ├── Lola 1 Large.jpg │ ├── Lola 1.jpg │ ├── Lola 2 Large.jpg │ ├── Lola 2.jpg │ ├── Lola 3 Large.jpg │ ├── Lola 3.jpg │ ├── Lola 4 Large.jpg │ └── Lola 4.jpg │ ├── SearchResultsViewController.swift │ ├── SegmentedControlsViewController.swift │ ├── Storyboards │ ├── ControlSamples.storyboard │ ├── FocusSamples.storyboard │ ├── Main.storyboard │ ├── TextEntry.storyboard │ └── ViewControllerSamples.storyboard │ ├── TextEntryMenuViewController.swift │ ├── TextFieldsViewController.swift │ ├── VideoPlayerViewController.swift │ └── ViewControllersMenuViewController.swift ├── LICENSE ├── README.md └── Resources ├── Alizarin_Theme.png ├── Amethyst_Theme.png ├── Default_Theme.png ├── Formentera_Theme.png ├── GreenSea_Theme.png ├── Intro.gif ├── Logo.png ├── Notio_Theme.png └── Plugin-Touch.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/.travis.yml -------------------------------------------------------------------------------- /Alpha.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha.podspec -------------------------------------------------------------------------------- /Alpha/Alpha-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Alpha-Info.plist -------------------------------------------------------------------------------- /Alpha/Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Alpha.h -------------------------------------------------------------------------------- /Alpha/AlphaService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/AlphaService-Info.plist -------------------------------------------------------------------------------- /Alpha/AlphaService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/AlphaService.h -------------------------------------------------------------------------------- /Alpha/Asset/ALPHAAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHAAsset.h -------------------------------------------------------------------------------- /Alpha/Asset/ALPHAAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHAAsset.m -------------------------------------------------------------------------------- /Alpha/Asset/ALPHAAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHAAssetManager.h -------------------------------------------------------------------------------- /Alpha/Asset/ALPHAAssetManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHAAssetManager.m -------------------------------------------------------------------------------- /Alpha/Asset/ALPHACoreAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHACoreAssets.h -------------------------------------------------------------------------------- /Alpha/Asset/ALPHACoreAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/ALPHACoreAssets.m -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHACache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHACache.h -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHACache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHACache.m -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHADiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHADiskCache.h -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHADiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHADiskCache.m -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHAMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHAMemoryCache.h -------------------------------------------------------------------------------- /Alpha/Asset/Cache/ALPHAMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/ALPHAMemoryCache.m -------------------------------------------------------------------------------- /Alpha/Asset/Cache/Nullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/Cache/Nullability.h -------------------------------------------------------------------------------- /Alpha/Asset/UIImage+Creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/UIImage+Creation.h -------------------------------------------------------------------------------- /Alpha/Asset/UIImage+Creation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Asset/UIImage+Creation.m -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjour.h -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourDataChunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourDataChunk.h -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourDataChunk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourDataChunk.m -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourDataConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourDataConnection.h -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourDataConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourDataConnection.m -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourServer.h -------------------------------------------------------------------------------- /Alpha/Bonjour/ALPHABonjourServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/ALPHABonjourServer.m -------------------------------------------------------------------------------- /Alpha/Bonjour/NSScanner+Bonjour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/NSScanner+Bonjour.h -------------------------------------------------------------------------------- /Alpha/Bonjour/NSScanner+Bonjour.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Bonjour/NSScanner+Bonjour.m -------------------------------------------------------------------------------- /Alpha/Integration/UIApplication+Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Integration/UIApplication+Delegate.h -------------------------------------------------------------------------------- /Alpha/Integration/UIApplication+Delegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Integration/UIApplication+Delegate.m -------------------------------------------------------------------------------- /Alpha/Manager/ALPHAManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/ALPHAManager.h -------------------------------------------------------------------------------- /Alpha/Manager/ALPHAManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/ALPHAManager.m -------------------------------------------------------------------------------- /Alpha/Manager/ALPHAWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/ALPHAWindow.h -------------------------------------------------------------------------------- /Alpha/Manager/ALPHAWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/ALPHAWindow.m -------------------------------------------------------------------------------- /Alpha/Manager/Controller/ALPHANavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/Controller/ALPHANavigationController.h -------------------------------------------------------------------------------- /Alpha/Manager/Controller/ALPHANavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/Controller/ALPHANavigationController.m -------------------------------------------------------------------------------- /Alpha/Manager/Notification/ALPHAStatusBarNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/Notification/ALPHAStatusBarNotification.h -------------------------------------------------------------------------------- /Alpha/Manager/Notification/ALPHAStatusBarNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Manager/Notification/ALPHAStatusBarNotification.m -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAActionItem.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAActionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAActionItem.m -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAActions.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHABlockActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHABlockActionItem.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHABlockActionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHABlockActionItem.m -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAGlobalActionIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAGlobalActionIdentifiers.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAGlobalActionIdentifiers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAGlobalActionIdentifiers.m -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAScreenActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAScreenActionItem.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHAScreenActionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHAScreenActionItem.m -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHASelectorActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHASelectorActionItem.h -------------------------------------------------------------------------------- /Alpha/Model/Action/ALPHASelectorActionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Action/ALPHASelectorActionItem.m -------------------------------------------------------------------------------- /Alpha/Model/Conversion/ALPHAConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Conversion/ALPHAConversion.h -------------------------------------------------------------------------------- /Alpha/Model/Conversion/ALPHAConverterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Conversion/ALPHAConverterManager.h -------------------------------------------------------------------------------- /Alpha/Model/Conversion/ALPHAConverterManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Conversion/ALPHAConverterManager.m -------------------------------------------------------------------------------- /Alpha/Model/Conversion/ALPHADataConverterSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Conversion/ALPHADataConverterSource.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHADataRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHADataRenderer.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHADataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHADataSource.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAGenericModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAGenericModel.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAGenericModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAGenericModel.m -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAIdentifiableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAIdentifiableItem.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAModel.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAModel.m -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAPlugin.h -------------------------------------------------------------------------------- /Alpha/Model/Core/ALPHAPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Core/ALPHAPlugin.m -------------------------------------------------------------------------------- /Alpha/Model/Network/ALPHANetworkObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Network/ALPHANetworkObject.h -------------------------------------------------------------------------------- /Alpha/Model/Network/ALPHANetworkObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Network/ALPHANetworkObject.m -------------------------------------------------------------------------------- /Alpha/Model/Network/ALPHARequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Network/ALPHARequest.h -------------------------------------------------------------------------------- /Alpha/Model/Network/ALPHARequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Network/ALPHARequest.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectActionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectActionItem.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectActionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectActionItem.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectArgument.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectArgument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectArgument.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectContent.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectContent.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectElement.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectElement.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectIvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectIvar.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectIvar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectIvar.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectMethod.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectMethod.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectModel.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectModel.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectPrintable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectPrintable.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectProperty.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectProperty.m -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectType.h -------------------------------------------------------------------------------- /Alpha/Model/Object/ALPHAObjectType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Object/ALPHAObjectType.m -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenItem.h -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenItem.m -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenModel.h -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenModel.m -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenRenderableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenRenderableItem.h -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenSection.h -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHAScreenSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHAScreenSection.m -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHATableScreenModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHATableScreenModel.h -------------------------------------------------------------------------------- /Alpha/Model/Screen/ALPHATableScreenModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Screen/ALPHATableScreenModel.m -------------------------------------------------------------------------------- /Alpha/Model/Serialization/ALPHASerializableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Serialization/ALPHASerializableItem.h -------------------------------------------------------------------------------- /Alpha/Model/Serialization/ALPHASerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Serialization/ALPHASerialization.h -------------------------------------------------------------------------------- /Alpha/Model/Serialization/ALPHASerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Serialization/ALPHASerialization.m -------------------------------------------------------------------------------- /Alpha/Model/Serialization/ALPHASerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Serialization/ALPHASerializer.h -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHABaseDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHABaseDataSource.h -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHABaseDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHABaseDataSource.m -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHALocalFileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHALocalFileSource.h -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHALocalFileSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHALocalFileSource.m -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHALocalSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHALocalSource.h -------------------------------------------------------------------------------- /Alpha/Model/Source/ALPHALocalSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Model/Source/ALPHALocalSource.m -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAAlizarinColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAAlizarinColorPalette.h -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAAlizarinColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAAlizarinColorPalette.m -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAAmethystColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAAmethystColorPalette.h -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAAmethystColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAAmethystColorPalette.m -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAFormenteraColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAFormenteraColorPalette.h -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAFormenteraColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAFormenteraColorPalette.m -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAGreenSeaColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAGreenSeaColorPalette.h -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHAGreenSeaColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHAGreenSeaColorPalette.m -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHANotioColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHANotioColorPalette.h -------------------------------------------------------------------------------- /Alpha/Palettes/ALPHANotioColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Palettes/ALPHANotioColorPalette.m -------------------------------------------------------------------------------- /Alpha/Plugins/Application/ALPHAApplicationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/ALPHAApplicationPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/ALPHAApplicationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/ALPHAApplicationPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Assets/ALPHAApplicationIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Assets/ALPHAApplicationIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Assets/ALPHAApplicationIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Assets/ALPHAApplicationIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Headers/LSApplicationProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Headers/LSApplicationProxy.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Headers/LSApplicationWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Headers/LSApplicationWorkspace.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Headers/UIImage+UIApplicationIconPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Headers/UIImage+UIApplicationIconPrivate.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Sources/ALPHAApplicationSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Sources/ALPHAApplicationSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Application/Sources/ALPHAApplicationSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Application/Sources/ALPHAApplicationSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/ALPHABootstrapPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/ALPHABootstrapPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/ALPHABootstrapPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/ALPHABootstrapPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Assets/ALPHAEnvironmentIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Assets/ALPHAEnvironmentIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Assets/ALPHAEnvironmentIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Assets/ALPHAEnvironmentIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Library/ALPHABootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Library/ALPHABootstrap.h -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Library/ALPHABootstrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Library/ALPHABootstrap.m -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Sources/ALPHAEnvironmentSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Sources/ALPHAEnvironmentSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Bootstrap/Sources/ALPHAEnvironmentSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Bootstrap/Sources/ALPHAEnvironmentSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/ALPHAConsolePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/ALPHAConsolePlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/ALPHAConsolePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/ALPHAConsolePlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Assets/ALPHAConsoleIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Assets/ALPHAConsoleIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Assets/ALPHAConsoleIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Assets/ALPHAConsoleIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Converters/ALPHAConsoleConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Converters/ALPHAConsoleConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Converters/ALPHAConsoleConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Converters/ALPHAConsoleConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Model/ALPHAConsoleLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Model/ALPHAConsoleLog.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Model/ALPHAConsoleLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Model/ALPHAConsoleLog.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Model/ALPHAConsoleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Model/ALPHAConsoleModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Model/ALPHAConsoleModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Model/ALPHAConsoleModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Sources/ALPHAConsoleSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Sources/ALPHAConsoleSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Console/Sources/ALPHAConsoleSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Console/Sources/ALPHAConsoleSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/ALPHAEventPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/ALPHAEventPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/ALPHAEventPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/ALPHAEventPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Assets/ALPHAEventIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Assets/ALPHAEventIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Assets/ALPHAEventIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Assets/ALPHAEventIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Converters/ALPHAEventConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Converters/ALPHAEventConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Converters/ALPHAEventConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Converters/ALPHAEventConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Library/UIViewController+ALPHAEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Library/UIViewController+ALPHAEventLog.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Library/UIViewController+ALPHAEventLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Library/UIViewController+ALPHAEventLog.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Model/ALPHAApplicationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Model/ALPHAApplicationEvent.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Model/ALPHAApplicationEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Model/ALPHAApplicationEvent.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Model/ALPHAEventModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Model/ALPHAEventModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Model/ALPHAEventModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Model/ALPHAEventModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Sources/ALPHAEventSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Sources/ALPHAEventSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Event/Sources/ALPHAEventSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Event/Sources/ALPHAEventSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/ALPHAFilePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/ALPHAFilePlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/ALPHAFilePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/ALPHAFilePlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/Assets/ALPHAFileIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Assets/ALPHAFileIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/Assets/ALPHAFileIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Assets/ALPHAFileIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/Converters/ALPHAFileConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Converters/ALPHAFileConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/Converters/ALPHAFileConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Converters/ALPHAFileConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/Model/ALPHAFileModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Model/ALPHAFileModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/Model/ALPHAFileModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Model/ALPHAFileModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/Model/ALPHAFileObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Model/ALPHAFileObject.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/Model/ALPHAFileObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Model/ALPHAFileObject.m -------------------------------------------------------------------------------- /Alpha/Plugins/File/Sources/ALPHAFileSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Sources/ALPHAFileSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/File/Sources/ALPHAFileSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/File/Sources/ALPHAFileSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Global/ALPHAGlobalPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/ALPHAGlobalPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Global/ALPHAGlobalPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/ALPHAGlobalPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Assets/ALPHAGlobalIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Assets/ALPHAGlobalIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Assets/ALPHAGlobalIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Assets/ALPHAGlobalIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHAClassSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHAClassSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHAClassSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHAClassSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHAGlobalSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHAGlobalSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHAGlobalSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHAGlobalSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHALibrarySource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHALibrarySource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Global/Sources/ALPHALibrarySource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Global/Sources/ALPHALibrarySource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/ALPHAHeapPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/ALPHAHeapPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/ALPHAHeapPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/ALPHAHeapPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/Assets/ALPHAHeapIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/Assets/ALPHAHeapIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/Assets/ALPHAHeapIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/Assets/ALPHAHeapIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/Sources/ALPHAHeapSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/Sources/ALPHAHeapSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Heap/Sources/ALPHAHeapSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Heap/Sources/ALPHAHeapSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/ALPHAInterfacePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/ALPHAInterfacePlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/ALPHAInterfacePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/ALPHAInterfacePlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Controllers/ALPHAMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Controllers/ALPHAMainViewController.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Controllers/ALPHAMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Controllers/ALPHAMainViewController.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHACircleMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHACircleMenuView.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHACircleMenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHACircleMenuView.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHAExplorerMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHAExplorerMenu.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHAExplorerMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHAExplorerMenu.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHAMenuCenterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHAMenuCenterView.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/ALPHAMenuCenterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/ALPHAMenuCenterView.m -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Menu/CGVectorAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Menu/CGVectorAdditions.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Sources/ALPHAMenuSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Sources/ALPHAMenuSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Interface/Sources/ALPHAMenuSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Interface/Sources/ALPHAMenuSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/ALPHAKeychainPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/ALPHAKeychainPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/ALPHAKeychainPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/ALPHAKeychainPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Assets/ALPHAKeychainIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Assets/ALPHAKeychainIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Assets/ALPHAKeychainIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Assets/ALPHAKeychainIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Library/ALPHAKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Library/ALPHAKeychain.h -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Library/ALPHAKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Library/ALPHAKeychain.m -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Model/ALPHAKeychainItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Model/ALPHAKeychainItem.h -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Model/ALPHAKeychainItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Model/ALPHAKeychainItem.m -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Sources/ALPHAKeychainSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Sources/ALPHAKeychainSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Keychain/Sources/ALPHAKeychainSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Keychain/Sources/ALPHAKeychainSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/ALPHANetworkPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/ALPHANetworkPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/ALPHANetworkPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/ALPHANetworkPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Assets/ALPHANetworkIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Assets/ALPHANetworkIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Assets/ALPHANetworkIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Assets/ALPHANetworkIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Converters/ALPHANetworkConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Converters/ALPHANetworkConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Converters/ALPHANetworkConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Converters/ALPHANetworkConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Library/ALPHARequestState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Library/ALPHARequestState.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Library/ALPHARequestState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Library/ALPHARequestState.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkConnection.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkConnection.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkConnectionTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkConnectionTiming.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkConnectionTiming.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkConnectionTiming.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkError.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkError.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkInitiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkInitiator.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkInitiator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkInitiator.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkRequest.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkRequest.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkResponse.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Model/ALPHANetworkResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Model/ALPHANetworkResponse.m -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Sources/ALPHANetworkSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Sources/ALPHANetworkSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Network/Sources/ALPHANetworkSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Network/Sources/ALPHANetworkSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/ALPHANotificationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/ALPHANotificationPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/ALPHANotificationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/ALPHANotificationPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Assets/ALPHANotificationIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Assets/ALPHANotificationIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Assets/ALPHANotificationIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Assets/ALPHANotificationIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Converters/ALPHANotificationConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Converters/ALPHANotificationConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Converters/ALPHANotificationConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Converters/ALPHANotificationConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Model/ALPHANotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Model/ALPHANotification.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Model/ALPHANotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Model/ALPHANotification.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Model/ALPHANotificationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Model/ALPHANotificationModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Model/ALPHANotificationModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Model/ALPHANotificationModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Sources/ALPHANotificationSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Sources/ALPHANotificationSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Notification/Sources/ALPHANotificationSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Notification/Sources/ALPHANotificationSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Object/ALPHAObjectPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/ALPHAObjectPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Object/ALPHAObjectPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/ALPHAObjectPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Converters/ALPHAObjectConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Converters/ALPHAObjectConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Converters/ALPHAObjectConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Converters/ALPHAObjectConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Sources/ALPHAInstanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Sources/ALPHAInstanceSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Sources/ALPHAInstanceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Sources/ALPHAInstanceSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Sources/ALPHAObjectSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Sources/ALPHAObjectSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Object/Sources/ALPHAObjectSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Object/Sources/ALPHAObjectSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/ALPHAPermissionPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/ALPHAPermissionPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/ALPHAPermissionPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/ALPHAPermissionPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Assets/ALPHAPermissionIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Assets/ALPHAPermissionIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Assets/ALPHAPermissionIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Assets/ALPHAPermissionIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Library/ALPHATCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Library/ALPHATCC.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Library/ALPHATCC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Library/ALPHATCC.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Library/ALPHATCCAccessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Library/ALPHATCCAccessManager.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Library/ALPHATCCAccessManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Library/ALPHATCCAccessManager.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAAssetPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAAssetPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAAssetPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAAssetPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAAudioPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAAudioPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAAudioPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAAudioPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHABluetoothPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHABluetoothPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHABluetoothPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHABluetoothPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAContactPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAContactPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAContactPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAContactPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAEventPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAEventPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAEventPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAEventPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAHealthPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAHealthPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAHealthPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAHealthPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAHomePermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAHomePermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAHomePermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAHomePermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHALocationPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHALocationPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHALocationPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHALocationPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAMobileDataPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAMobileDataPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAMobileDataPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAMobileDataPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAMotionPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAMotionPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAMotionPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAMotionPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHANotificationPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHANotificationPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHANotificationPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHANotificationPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAPermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAPermissions.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHASocialPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHASocialPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHASocialPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHASocialPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHATCCPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHATCCPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHATCCPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHATCCPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAVideoPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAVideoPermission.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Model/ALPHAVideoPermission.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Model/ALPHAVideoPermission.m -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Sources/ALPHAPermissionSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Sources/ALPHAPermissionSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Permission/Sources/ALPHAPermissionSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Permission/Sources/ALPHAPermissionSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/ALPHARemotePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/ALPHARemotePlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/ALPHARemotePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/ALPHARemotePlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Model/ALPHABonjourConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Model/ALPHABonjourConnection.h -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Model/ALPHABonjourConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Model/ALPHABonjourConnection.m -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Sources/ALPHABonjourServerSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Sources/ALPHABonjourServerSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Sources/ALPHABonjourServerSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Sources/ALPHABonjourServerSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Sources/ALPHABonjourSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Sources/ALPHABonjourSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Remote/Sources/ALPHABonjourSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Remote/Sources/ALPHABonjourSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/ALPHAScreenshotPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/ALPHAScreenshotPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/ALPHAScreenshotPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/ALPHAScreenshotPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/Assets/ALPHAScreenshotIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/Assets/ALPHAScreenshotIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/Assets/ALPHAScreenshotIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/Assets/ALPHAScreenshotIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/Sources/ALPHAScreenshotSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/Sources/ALPHAScreenshotSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/Screenshot/Sources/ALPHAScreenshotSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Screenshot/Sources/ALPHAScreenshotSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Server/ALPHAServerPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/ALPHAServerPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Server/ALPHAServerPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/ALPHAServerPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Server/Model/ALPHABonjourConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/Model/ALPHABonjourConfig.h -------------------------------------------------------------------------------- /Alpha/Plugins/Server/Model/ALPHABonjourConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/Model/ALPHABonjourConfig.m -------------------------------------------------------------------------------- /Alpha/Plugins/Server/Model/ALPHAServerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/Model/ALPHAServerNode.h -------------------------------------------------------------------------------- /Alpha/Plugins/Server/Model/ALPHAServerNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Server/Model/ALPHAServerNode.m -------------------------------------------------------------------------------- /Alpha/Plugins/State/ALPHAStatePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/ALPHAStatePlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/State/ALPHAStatePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/ALPHAStatePlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/State/Assets/ALPHAStatusIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Assets/ALPHAStatusIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/State/Assets/ALPHAStatusIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Assets/ALPHAStatusIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/State/Library/UIDevice+ALPHAStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Library/UIDevice+ALPHAStatus.h -------------------------------------------------------------------------------- /Alpha/Plugins/State/Library/UIDevice+ALPHAStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Library/UIDevice+ALPHAStatus.m -------------------------------------------------------------------------------- /Alpha/Plugins/State/Sources/ALPHADeviceStatusSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Sources/ALPHADeviceStatusSource.h -------------------------------------------------------------------------------- /Alpha/Plugins/State/Sources/ALPHADeviceStatusSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/State/Sources/ALPHADeviceStatusSource.m -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/ALPHATouchPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/ALPHATouchPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/ALPHATouchPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/ALPHATouchPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Assets/ALPHATouchIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Assets/ALPHATouchIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Assets/ALPHATouchIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Assets/ALPHATouchIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchFingerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchFingerView.h -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchFingerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchFingerView.m -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchViewController.h -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchViewController.m -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchWindow.h -------------------------------------------------------------------------------- /Alpha/Plugins/Touch/Library/ALPHATouchWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/Touch/Library/ALPHATouchWindow.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/ALPHAViewHierarchyPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/ALPHAViewHierarchyPlugin.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/ALPHAViewHierarchyPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/ALPHAViewHierarchyPlugin.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHAMoveIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHAMoveIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHAMoveIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHAMoveIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHASelectIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHASelectIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHASelectIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHASelectIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHAViewIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHAViewIcon.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Assets/ALPHAViewIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Assets/ALPHAViewIcon.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Controllers/ALPHAHierarchyTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Controllers/ALPHAHierarchyTableViewController.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Controllers/ALPHAHierarchyTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Controllers/ALPHAHierarchyTableViewController.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Controllers/ALPHAViewHierarchyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Controllers/ALPHAViewHierarchyViewController.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Controllers/ALPHAViewHierarchyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Controllers/ALPHAViewHierarchyViewController.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Converters/ALPHAViewHierarchyConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Converters/ALPHAViewHierarchyConverter.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Converters/ALPHAViewHierarchyConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Converters/ALPHAViewHierarchyConverter.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Model/ALPHASerializableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Model/ALPHASerializableView.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Model/ALPHASerializableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Model/ALPHASerializableView.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Model/ALPHAViewHierarchyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Model/ALPHAViewHierarchyModel.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Model/ALPHAViewHierarchyModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Model/ALPHAViewHierarchyModel.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Sources/ALPHAViewHierarchySource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Sources/ALPHAViewHierarchySource.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Sources/ALPHAViewHierarchySource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Sources/ALPHAViewHierarchySource.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Toolbar/ALPHAExplorerToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Toolbar/ALPHAExplorerToolbar.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Toolbar/ALPHAExplorerToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Toolbar/ALPHAExplorerToolbar.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Toolbar/ALPHAToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Toolbar/ALPHAToolbarItem.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Toolbar/ALPHAToolbarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Toolbar/ALPHAToolbarItem.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Views/ALPHADepthIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Views/ALPHADepthIndicatorView.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Views/ALPHADepthIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Views/ALPHADepthIndicatorView.m -------------------------------------------------------------------------------- /Alpha/Plugins/View/Views/ALPHAHierarchyTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Views/ALPHAHierarchyTableViewCell.h -------------------------------------------------------------------------------- /Alpha/Plugins/View/Views/ALPHAHierarchyTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Plugins/View/Views/ALPHAHierarchyTableViewCell.m -------------------------------------------------------------------------------- /Alpha/Private/UIApplication+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Private/UIApplication+Private.h -------------------------------------------------------------------------------- /Alpha/Private/UIApplication+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Private/UIApplication+Private.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHADefaultsRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHADefaultsRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHADefaultsRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHADefaultsRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAFieldRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAFieldRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAFieldRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAFieldRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAImageRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAImageRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAImageRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAImageRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAIvarRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAIvarRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAIvarRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAIvarRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAMethodRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAMethodRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAMethodRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAMethodRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAPropertyRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAPropertyRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAPropertyRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAPropertyRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHATableRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHATableRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHATableRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHATableRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAWebRendererViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAWebRendererViewController.h -------------------------------------------------------------------------------- /Alpha/Renderers/ALPHAWebRendererViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/ALPHAWebRendererViewController.m -------------------------------------------------------------------------------- /Alpha/Renderers/Converter/ALPHAGenericConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/Converter/ALPHAGenericConverter.h -------------------------------------------------------------------------------- /Alpha/Renderers/Converter/ALPHAGenericConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/Converter/ALPHAGenericConverter.m -------------------------------------------------------------------------------- /Alpha/Renderers/Manager/ALPHAScreenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/Manager/ALPHAScreenManager.h -------------------------------------------------------------------------------- /Alpha/Renderers/Manager/ALPHAScreenManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Renderers/Manager/ALPHAScreenManager.m -------------------------------------------------------------------------------- /Alpha/Themes/ALPHAColorPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/ALPHAColorPalette.h -------------------------------------------------------------------------------- /Alpha/Themes/ALPHAColorPalette.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/ALPHAColorPalette.m -------------------------------------------------------------------------------- /Alpha/Themes/ALPHATheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/ALPHATheme.h -------------------------------------------------------------------------------- /Alpha/Themes/ALPHATheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/ALPHATheme.m -------------------------------------------------------------------------------- /Alpha/Themes/UIColor+Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/UIColor+Tools.h -------------------------------------------------------------------------------- /Alpha/Themes/UIColor+Tools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/UIColor+Tools.m -------------------------------------------------------------------------------- /Alpha/Themes/UIFont+Convenience.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/UIFont+Convenience.h -------------------------------------------------------------------------------- /Alpha/Themes/UIFont+Convenience.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Themes/UIFont+Convenience.m -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHAShakeTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHAShakeTrigger.h -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHAShakeTrigger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHAShakeTrigger.m -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATapTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATapTrigger.h -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATapTrigger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATapTrigger.m -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATrigger+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATrigger+Private.h -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATrigger+Private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATrigger+Private.m -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATrigger.h -------------------------------------------------------------------------------- /Alpha/Triggers/ALPHATrigger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Triggers/ALPHATrigger.m -------------------------------------------------------------------------------- /Alpha/Utility/ALPHAApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/ALPHAApplicationDelegate.h -------------------------------------------------------------------------------- /Alpha/Utility/ALPHAApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/ALPHAApplicationDelegate.m -------------------------------------------------------------------------------- /Alpha/Utility/ALPHACore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/ALPHACore.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSArray+Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSArray+Class.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSArray+Class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSArray+Class.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSInvocation+Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSInvocation+Argument.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSInvocation+Argument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSInvocation+Argument.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Property.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Property.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Runtime.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Runtime.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Swizzle.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSObject+Swizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSObject+Swizzle.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Data.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Data.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Entities.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Entities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Entities.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Identifier.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Identifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Identifier.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Random.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/Foundation/NSString+Random.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/Foundation/NSString+Random.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Event.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Event.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Event.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Information.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Information.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Information.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Screenshot.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Screenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Screenshot.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Version.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIApplication+Version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIApplication+Version.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIColor+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIColor+Utility.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIColor+Utility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIColor+Utility.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+DeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+DeviceInfo.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+DeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+DeviceInfo.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Hardware.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Hardware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Hardware.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Network.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Network.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Network.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Software.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Software.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIDevice+Software.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIDevice+Software.m -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIView+Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIView+Snapshot.h -------------------------------------------------------------------------------- /Alpha/Utility/Categories/UIKit/UIView+Snapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/Categories/UIKit/UIView+Snapshot.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAFileManager.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAFileManager.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAHeapUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAHeapUtility.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAHeapUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAHeapUtility.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAMath.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAMath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAMath.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAMockObject.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAMockObject.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHARuntimeUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHARuntimeUtility.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHARuntimeUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHARuntimeUtility.m -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAUtility.h -------------------------------------------------------------------------------- /Alpha/Utility/General/ALPHAUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/General/ALPHAUtility.m -------------------------------------------------------------------------------- /Alpha/Utility/View/ALPHACanvasView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/View/ALPHACanvasView.h -------------------------------------------------------------------------------- /Alpha/Utility/View/ALPHACanvasView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/View/ALPHACanvasView.m -------------------------------------------------------------------------------- /Alpha/Utility/View/ALPHAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/View/ALPHAViewController.h -------------------------------------------------------------------------------- /Alpha/Utility/View/ALPHAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/Utility/View/ALPHAViewController.m -------------------------------------------------------------------------------- /Alpha/View/ALPHAFieldEditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHAFieldEditorView.h -------------------------------------------------------------------------------- /Alpha/View/ALPHAFieldEditorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHAFieldEditorView.m -------------------------------------------------------------------------------- /Alpha/View/ALPHAMultilineTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHAMultilineTableViewCell.h -------------------------------------------------------------------------------- /Alpha/View/ALPHAMultilineTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHAMultilineTableViewCell.m -------------------------------------------------------------------------------- /Alpha/View/ALPHASearchScopeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHASearchScopeView.h -------------------------------------------------------------------------------- /Alpha/View/ALPHASearchScopeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ALPHASearchScopeView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputColorView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputColorView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputDateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputDateView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputDateView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputDateView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontsPickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontsPickerView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontsPickerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputFontsPickerView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputJSONObjectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputJSONObjectView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputJSONObjectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputJSONObjectView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputNotSupportedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputNotSupportedView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputNotSupportedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputNotSupportedView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputNumberView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputNumberView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputNumberView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputNumberView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputStringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputStringView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputStringView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputStringView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputStructView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputStructView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputStructView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputStructView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputSwitchView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputSwitchView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputTextView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputTextView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputView.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputView.m -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputViewFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputViewFactory.h -------------------------------------------------------------------------------- /Alpha/View/ArgumentInputViews/ALPHAArgumentInputViewFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Alpha/View/ArgumentInputViews/ALPHAArgumentInputViewFactory.m -------------------------------------------------------------------------------- /AlphaTests/AlphaNetworkObjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/AlphaNetworkObjectTests.m -------------------------------------------------------------------------------- /AlphaTests/AlphaSerializationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/AlphaSerializationTests.m -------------------------------------------------------------------------------- /AlphaTests/AlphaTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/AlphaTests.m -------------------------------------------------------------------------------- /AlphaTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/Info.plist -------------------------------------------------------------------------------- /AlphaTests/Tools/ALPHAFailureRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/Tools/ALPHAFailureRecorder.h -------------------------------------------------------------------------------- /AlphaTests/Tools/ALPHAFailureRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/Tools/ALPHAFailureRecorder.m -------------------------------------------------------------------------------- /AlphaTests/Tools/ALPHATestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/Tools/ALPHATestCase.h -------------------------------------------------------------------------------- /AlphaTests/Tools/ALPHATestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTests/Tools/ALPHATestCase.m -------------------------------------------------------------------------------- /AlphaTool/ALPHAToolDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/ALPHAToolDelegate.h -------------------------------------------------------------------------------- /AlphaTool/ALPHAToolDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/ALPHAToolDelegate.m -------------------------------------------------------------------------------- /AlphaTool/AlphaTool-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/AlphaTool-Info.plist -------------------------------------------------------------------------------- /AlphaTool/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/Launch.storyboard -------------------------------------------------------------------------------- /AlphaTool/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/Main.storyboard -------------------------------------------------------------------------------- /AlphaTool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/AlphaTool/main.m -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/xcshareddata/xcschemes/Alpha.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/xcshareddata/xcschemes/Alpha.xcscheme -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/xcshareddata/xcschemes/AlphaService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/xcshareddata/xcschemes/AlphaService.xcscheme -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/xcshareddata/xcschemes/AlphaTool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/xcshareddata/xcschemes/AlphaTool.xcscheme -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/xcshareddata/xcschemes/UICatalog.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/xcshareddata/xcschemes/UICatalog.xcscheme -------------------------------------------------------------------------------- /Demo/Alpha.xcodeproj/xcshareddata/xcschemes/UIKitCatalog.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcodeproj/xcshareddata/xcschemes/UIKitCatalog.xcscheme -------------------------------------------------------------------------------- /Demo/Alpha.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Alpha.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Alpha.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Demo/Pods/FXKeychain/FXKeychain/FXKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/FXKeychain/FXKeychain/FXKeychain.h -------------------------------------------------------------------------------- /Demo/Pods/FXKeychain/FXKeychain/FXKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/FXKeychain/FXKeychain/FXKeychain.m -------------------------------------------------------------------------------- /Demo/Pods/FXKeychain/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/FXKeychain/LICENCE.md -------------------------------------------------------------------------------- /Demo/Pods/FXKeychain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/FXKeychain/README.md -------------------------------------------------------------------------------- /Demo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Manifest.lock -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/FXKeychain-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/FXKeychain-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/FXKeychain-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/FXKeychain-prefix.pch -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/FXKeychain-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/FXKeychain-umbrella.h -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/FXKeychain.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/FXKeychain.modulemap -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/FXKeychain.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/FXKeychain.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/FXKeychain/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/FXKeychain/Info.plist -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Info.plist -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-frameworks.sh -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-resources.sh -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog-umbrella.h -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/Pods/Target Support Files/Pods-UICatalog/Pods-UICatalog.modulemap -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLActionSheetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLActionSheetViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLActionSheetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLActionSheetViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLActivityIndicatorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLActivityIndicatorViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLActivityIndicatorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLActivityIndicatorViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLAlertViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLAlertViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLAppDelegate.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLAppDelegate.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLButtonViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLButtonViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLButtonViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLCustomSearchBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLCustomSearchBarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLCustomSearchBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLCustomSearchBarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLCustomToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLCustomToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLCustomToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLCustomToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDatePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDatePickerController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDatePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDatePickerController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDefaultSearchBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDefaultSearchBarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDefaultSearchBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDefaultSearchBarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDefaultToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDefaultToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLDefaultToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLDefaultToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLImageViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLImageViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLMasterViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLMasterViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLNetworkViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLNetworkViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLNetworkViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLNetworkViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLPageControlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLPageControlViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLPageControlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLPageControlViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLPickerViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLPickerViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLProgressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLProgressViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLProgressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLProgressViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSegmentedControlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSegmentedControlViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSegmentedControlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSegmentedControlViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSliderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSliderViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSliderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSliderViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSplitViewControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSplitViewControllerDelegate.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSplitViewControllerDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSplitViewControllerDelegate.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLStepperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLStepperViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLStepperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLStepperViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSwitchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSwitchViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLSwitchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLSwitchViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTextFieldViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTextFieldViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTextFieldViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTextFieldViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTextViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTextViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTintedToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTintedToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLTintedToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLTintedToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLWebViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/AAPLWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/AAPLWebViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/Application/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/AAPLAppDelegate.h -------------------------------------------------------------------------------- /Demo/UICatalog/Application/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/AAPLAppDelegate.m -------------------------------------------------------------------------------- /Demo/UICatalog/Application/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Demo/UICatalog/Application/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Demo/UICatalog/Application/Launch.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/Launch.xib -------------------------------------------------------------------------------- /Demo/UICatalog/Application/UIColor+AAPLApplicationSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/UIColor+AAPLApplicationSpecific.h -------------------------------------------------------------------------------- /Demo/UICatalog/Application/UIColor+AAPLApplicationSpecific.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/UIColor+AAPLApplicationSpecific.m -------------------------------------------------------------------------------- /Demo/UICatalog/Application/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Application/main.m -------------------------------------------------------------------------------- /Demo/UICatalog/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Demo/UICatalog/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small-1.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/bookmark_icon_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/bookmark_icon_1x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/bookmark_icon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/bookmark_icon.imageset/bookmark_icon_2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/checkmark_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/checkmark_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_1.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_1.imageset/image_animal_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_1.imageset/image_animal_5.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_2.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_2.imageset/image_animal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_2.imageset/image_animal_2.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_3.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_3.imageset/image_animal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_3.imageset/image_animal_3.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_4.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_4.imageset/image_animal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_4.imageset/image_animal_4.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_5.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/image_animal_5.imageset/image_animal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/image_animal_5.imageset/image_animal_1.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/search_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/search_icon.imageset/search_icon_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/search_icon.imageset/search_icon_1x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/search_icon.imageset/search_icon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/search_icon.imageset/search_icon_2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/slider_blue_track.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/slider_blue_track.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/slider_green_track.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/slider_green_track.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/slider_thumb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/slider_thumb.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/stepper_decrement.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/stepper_decrement.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/stepper_increment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/stepper_increment.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/tools_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/tools_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/tools_icon.imageset/tools_icon_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/tools_icon.imageset/tools_icon_1x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/tools_icon.imageset/tools_icon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/tools_icon.imageset/tools_icon_2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/x_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/x_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/x_icon.imageset/x_icon_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/x_icon.imageset/x_icon_1x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Images.xcassets/x_icon.imageset/x_icon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Images.xcassets/x_icon.imageset/x_icon_2x.png -------------------------------------------------------------------------------- /Demo/UICatalog/Integration/AAPLCatalogTableTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Integration/AAPLCatalogTableTableViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/Integration/AAPLCatalogTableTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Integration/AAPLCatalogTableTableViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/Launch.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Launch.xib -------------------------------------------------------------------------------- /Demo/UICatalog/Supporting Files/UICatalog-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Supporting Files/UICatalog-Info.plist -------------------------------------------------------------------------------- /Demo/UICatalog/Supporting Files/UICatalog-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Supporting Files/UICatalog-Prefix.pch -------------------------------------------------------------------------------- /Demo/UICatalog/Supporting Files/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/Supporting Files/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/UICatalog/UICatalog-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/UICatalog-Info.plist -------------------------------------------------------------------------------- /Demo/UICatalog/UICatalog-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/UICatalog-Prefix.pch -------------------------------------------------------------------------------- /Demo/UICatalog/UIColor+AAPLApplicationSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/UIColor+AAPLApplicationSpecific.h -------------------------------------------------------------------------------- /Demo/UICatalog/UIColor+AAPLApplicationSpecific.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/UIColor+AAPLApplicationSpecific.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLActionSheetViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLActionSheetViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLActionSheetViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLActionSheetViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLActivityIndicatorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLActivityIndicatorViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLActivityIndicatorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLActivityIndicatorViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLAlertViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLAlertViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLAlertViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLButtonViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLButtonViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLButtonViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLButtonViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLCustomSearchBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLCustomSearchBarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLCustomSearchBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLCustomSearchBarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLCustomToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLCustomToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLCustomToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLCustomToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDatePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDatePickerController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDatePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDatePickerController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDefaultSearchBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDefaultSearchBarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDefaultSearchBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDefaultSearchBarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDefaultToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDefaultToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLDefaultToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLDefaultToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLImageViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLImageViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLNetworkViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLNetworkViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLNetworkViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLNetworkViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLPageControlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLPageControlViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLPageControlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLPageControlViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLPickerViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLPickerViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLProgressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLProgressViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLProgressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLProgressViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSegmentedControlViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSegmentedControlViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSegmentedControlViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSegmentedControlViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSliderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSliderViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSliderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSliderViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLStepperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLStepperViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLStepperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLStepperViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSwitchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSwitchViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLSwitchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLSwitchViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTextFieldViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTextFieldViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTextFieldViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTextFieldViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTextViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTextViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTintedToolbarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTintedToolbarViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLTintedToolbarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLTintedToolbarViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLWebViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/AAPLWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/AAPLWebViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/SplitView/AAPLMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/SplitView/AAPLMasterViewController.h -------------------------------------------------------------------------------- /Demo/UICatalog/View Controllers/SplitView/AAPLMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/View Controllers/SplitView/AAPLMasterViewController.m -------------------------------------------------------------------------------- /Demo/UICatalog/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Demo/UICatalog/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UICatalog/main.m -------------------------------------------------------------------------------- /Demo/UIKitCatalog/AlertFormViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/AlertFormViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/AlertsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/AlertsViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 1.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 1.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 2.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 2.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 3.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 3.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 4.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 4.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 5.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 5.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/Scenery 6.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/Scenery 6.imagestack/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/checkmark_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/checkmark_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/search_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/search_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/search_icon.imageset/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/search_icon.imageset/search_icon.png -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/star_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/star_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Assets.xcassets/star_icon.imageset/star_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Assets.xcassets/star_icon.imageset/star_icon.png -------------------------------------------------------------------------------- /Demo/UIKitCatalog/ButtonsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/ButtonsViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/CollectionViewContainerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/CollectionViewContainerCell.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/CollectionViewContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/CollectionViewContainerViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/CollectionViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/ControlsMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/ControlsMenuViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/CustomInputAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/CustomInputAccessoryView.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItem+ImageName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItem+ImageName.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItem+SampleData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItem+SampleData.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItem.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItemCellComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItemCellComposer.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItemCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItemCollectionViewCell.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/DataItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/DataItemViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/FocusGuidesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/FocusGuidesViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/GradientMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/GradientMaskView.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Info.plist -------------------------------------------------------------------------------- /Demo/UIKitCatalog/MenuSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/MenuSplitViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/MenuTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/MenuTableViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/PageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/PageViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/ProgressViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/ProgressViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 1.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 2.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 3.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 4.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 5.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 6.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 7.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Baby 8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Baby 8.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 1.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 2.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 3.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 4.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 5.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 6.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 7.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Iceland 8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Iceland 8.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 1.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 2.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 3.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 4.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 5.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 6.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 7.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Italy 8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Italy 8.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 1 Large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 1 Large.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 1.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 2 Large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 2 Large.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 2.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 3 Large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 3 Large.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 3.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 4 Large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 4 Large.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Resources/Lola 4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Resources/Lola 4.jpg -------------------------------------------------------------------------------- /Demo/UIKitCatalog/SearchResultsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/SearchResultsViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/SegmentedControlsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/SegmentedControlsViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Storyboards/ControlSamples.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Storyboards/ControlSamples.storyboard -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Storyboards/FocusSamples.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Storyboards/FocusSamples.storyboard -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Storyboards/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Storyboards/Main.storyboard -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Storyboards/TextEntry.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Storyboards/TextEntry.storyboard -------------------------------------------------------------------------------- /Demo/UIKitCatalog/Storyboards/ViewControllerSamples.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/Storyboards/ViewControllerSamples.storyboard -------------------------------------------------------------------------------- /Demo/UIKitCatalog/TextEntryMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/TextEntryMenuViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/TextFieldsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/TextFieldsViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/VideoPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/VideoPlayerViewController.swift -------------------------------------------------------------------------------- /Demo/UIKitCatalog/ViewControllersMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Demo/UIKitCatalog/ViewControllersMenuViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Alizarin_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Alizarin_Theme.png -------------------------------------------------------------------------------- /Resources/Amethyst_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Amethyst_Theme.png -------------------------------------------------------------------------------- /Resources/Default_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Default_Theme.png -------------------------------------------------------------------------------- /Resources/Formentera_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Formentera_Theme.png -------------------------------------------------------------------------------- /Resources/GreenSea_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/GreenSea_Theme.png -------------------------------------------------------------------------------- /Resources/Intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Intro.gif -------------------------------------------------------------------------------- /Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Logo.png -------------------------------------------------------------------------------- /Resources/Notio_Theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Notio_Theme.png -------------------------------------------------------------------------------- /Resources/Plugin-Touch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legoless/Alpha/HEAD/Resources/Plugin-Touch.gif --------------------------------------------------------------------------------