From abfb4f3b40bf752c35c284cd37e7008070217244 Mon Sep 17 00:00:00 2001 From: chigkim Date: Mon, 12 Nov 2018 12:13:05 -0500 Subject: [PATCH] Initial Commit --- .../project.pbxproj | 332 ++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcschemes/xcschememanagement.plist | 14 + Virtual Extended Keyboard/AppDelegate.swift | 26 + .../AppIcon.appiconset/Contents.json | 58 ++ .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/Main.storyboard | 717 ++++++++++++++++++ Virtual Extended Keyboard/Info.plist | 32 + .../ViewController.swift | 27 + .../Virtual_Extended_Keyboard.entitlements | 10 + 11 files changed, 1237 insertions(+) create mode 100644 Virtual Extended Keyboard.xcodeproj/project.pbxproj create mode 100644 Virtual Extended Keyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Virtual Extended Keyboard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Virtual Extended Keyboard.xcodeproj/xcuserdata/CGK.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 Virtual Extended Keyboard/AppDelegate.swift create mode 100644 Virtual Extended Keyboard/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Virtual Extended Keyboard/Assets.xcassets/Contents.json create mode 100644 Virtual Extended Keyboard/Base.lproj/Main.storyboard create mode 100644 Virtual Extended Keyboard/Info.plist create mode 100644 Virtual Extended Keyboard/ViewController.swift create mode 100644 Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements diff --git a/Virtual Extended Keyboard.xcodeproj/project.pbxproj b/Virtual Extended Keyboard.xcodeproj/project.pbxproj new file mode 100644 index 0000000..f9a4be2 --- /dev/null +++ b/Virtual Extended Keyboard.xcodeproj/project.pbxproj @@ -0,0 +1,332 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + EA050CD82199EC1F00F04DD0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA050CD72199EC1F00F04DD0 /* AppDelegate.swift */; }; + EA050CDA2199EC1F00F04DD0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA050CD92199EC1F00F04DD0 /* ViewController.swift */; }; + EA050CDC2199EC1F00F04DD0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EA050CDB2199EC1F00F04DD0 /* Assets.xcassets */; }; + EA050CDF2199EC1F00F04DD0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = EA050CDD2199EC1F00F04DD0 /* Main.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + EA050CD42199EC1F00F04DD0 /* Virtual Extended Keyboard.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Virtual Extended Keyboard.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + EA050CD72199EC1F00F04DD0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + EA050CD92199EC1F00F04DD0 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + EA050CDB2199EC1F00F04DD0 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + EA050CDE2199EC1F00F04DD0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + EA050CE02199EC1F00F04DD0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + EA050CE12199EC1F00F04DD0 /* Virtual_Extended_Keyboard.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Virtual_Extended_Keyboard.entitlements; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + EA050CD12199EC1F00F04DD0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + EA050CCB2199EC1F00F04DD0 = { + isa = PBXGroup; + children = ( + EA050CD62199EC1F00F04DD0 /* Virtual Extended Keyboard */, + EA050CD52199EC1F00F04DD0 /* Products */, + ); + sourceTree = ""; + }; + EA050CD52199EC1F00F04DD0 /* Products */ = { + isa = PBXGroup; + children = ( + EA050CD42199EC1F00F04DD0 /* Virtual Extended Keyboard.app */, + ); + name = Products; + sourceTree = ""; + }; + EA050CD62199EC1F00F04DD0 /* Virtual Extended Keyboard */ = { + isa = PBXGroup; + children = ( + EA050CD72199EC1F00F04DD0 /* AppDelegate.swift */, + EA050CD92199EC1F00F04DD0 /* ViewController.swift */, + EA050CDB2199EC1F00F04DD0 /* Assets.xcassets */, + EA050CDD2199EC1F00F04DD0 /* Main.storyboard */, + EA050CE02199EC1F00F04DD0 /* Info.plist */, + EA050CE12199EC1F00F04DD0 /* Virtual_Extended_Keyboard.entitlements */, + ); + path = "Virtual Extended Keyboard"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + EA050CD32199EC1F00F04DD0 /* Virtual Extended Keyboard */ = { + isa = PBXNativeTarget; + buildConfigurationList = EA050CE42199EC1F00F04DD0 /* Build configuration list for PBXNativeTarget "Virtual Extended Keyboard" */; + buildPhases = ( + EA050CD02199EC1F00F04DD0 /* Sources */, + EA050CD12199EC1F00F04DD0 /* Frameworks */, + EA050CD22199EC1F00F04DD0 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Virtual Extended Keyboard"; + productName = "Virtual Extended Keyboard"; + productReference = EA050CD42199EC1F00F04DD0 /* Virtual Extended Keyboard.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + EA050CCC2199EC1F00F04DD0 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1010; + LastUpgradeCheck = 1010; + ORGANIZATIONNAME = "Chi Kim"; + TargetAttributes = { + EA050CD32199EC1F00F04DD0 = { + CreatedOnToolsVersion = 10.1; + }; + }; + }; + buildConfigurationList = EA050CCF2199EC1F00F04DD0 /* Build configuration list for PBXProject "Virtual Extended Keyboard" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = EA050CCB2199EC1F00F04DD0; + productRefGroup = EA050CD52199EC1F00F04DD0 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + EA050CD32199EC1F00F04DD0 /* Virtual Extended Keyboard */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + EA050CD22199EC1F00F04DD0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + EA050CDC2199EC1F00F04DD0 /* Assets.xcassets in Resources */, + EA050CDF2199EC1F00F04DD0 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + EA050CD02199EC1F00F04DD0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + EA050CDA2199EC1F00F04DD0 /* ViewController.swift in Sources */, + EA050CD82199EC1F00F04DD0 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + EA050CDD2199EC1F00F04DD0 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + EA050CDE2199EC1F00F04DD0 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + EA050CE22199EC1F00F04DD0 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "Mac Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + EA050CE32199EC1F00F04DD0 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "Mac Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + EA050CE52199EC1F00F04DD0 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = "Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = 9N598S2535; + INFOPLIST_FILE = "Virtual Extended Keyboard/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "com.chikim.Virtual-Extended-Keyboard"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.2; + }; + name = Debug; + }; + EA050CE62199EC1F00F04DD0 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = "Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = 9N598S2535; + INFOPLIST_FILE = "Virtual Extended Keyboard/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "com.chikim.Virtual-Extended-Keyboard"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 4.2; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + EA050CCF2199EC1F00F04DD0 /* Build configuration list for PBXProject "Virtual Extended Keyboard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EA050CE22199EC1F00F04DD0 /* Debug */, + EA050CE32199EC1F00F04DD0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + EA050CE42199EC1F00F04DD0 /* Build configuration list for PBXNativeTarget "Virtual Extended Keyboard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EA050CE52199EC1F00F04DD0 /* Debug */, + EA050CE62199EC1F00F04DD0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = EA050CCC2199EC1F00F04DD0 /* Project object */; +} diff --git a/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..82cdb42 --- /dev/null +++ b/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Virtual Extended Keyboard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Virtual Extended Keyboard.xcodeproj/xcuserdata/CGK.xcuserdatad/xcschemes/xcschememanagement.plist b/Virtual Extended Keyboard.xcodeproj/xcuserdata/CGK.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..1c6eb40 --- /dev/null +++ b/Virtual Extended Keyboard.xcodeproj/xcuserdata/CGK.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + Virtual Extended Keyboard.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/Virtual Extended Keyboard/AppDelegate.swift b/Virtual Extended Keyboard/AppDelegate.swift new file mode 100644 index 0000000..721e6bb --- /dev/null +++ b/Virtual Extended Keyboard/AppDelegate.swift @@ -0,0 +1,26 @@ +// +// AppDelegate.swift +// Virtual Extended Keyboard +// +// Created by Chi Kim on 11/12/18. +// Copyright © 2018 Chi Kim. All rights reserved. +// + +import Cocoa + +@NSApplicationMain +class AppDelegate: NSObject, NSApplicationDelegate { + + + + func applicationDidFinishLaunching(_ aNotification: Notification) { + // Insert code here to initialize your application + } + + func applicationWillTerminate(_ aNotification: Notification) { + // Insert code here to tear down your application + } + + +} + diff --git a/Virtual Extended Keyboard/Assets.xcassets/AppIcon.appiconset/Contents.json b/Virtual Extended Keyboard/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..2db2b1c --- /dev/null +++ b/Virtual Extended Keyboard/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,58 @@ +{ + "images" : [ + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/Virtual Extended Keyboard/Assets.xcassets/Contents.json b/Virtual Extended Keyboard/Assets.xcassets/Contents.json new file mode 100644 index 0000000..da4a164 --- /dev/null +++ b/Virtual Extended Keyboard/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/Virtual Extended Keyboard/Base.lproj/Main.storyboard b/Virtual Extended Keyboard/Base.lproj/Main.storyboard new file mode 100644 index 0000000..bf4dcc6 --- /dev/null +++ b/Virtual Extended Keyboard/Base.lproj/Main.storyboard @@ -0,0 +1,717 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Default + + + + + + + Left to Right + + + + + + + Right to Left + + + + + + + + + + + Default + + + + + + + Left to Right + + + + + + + Right to Left + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Virtual Extended Keyboard/Info.plist b/Virtual Extended Keyboard/Info.plist new file mode 100644 index 0000000..4639e71 --- /dev/null +++ b/Virtual Extended Keyboard/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + Copyright © 2018 Chi Kim. All rights reserved. + NSMainStoryboardFile + Main + NSPrincipalClass + NSApplication + + diff --git a/Virtual Extended Keyboard/ViewController.swift b/Virtual Extended Keyboard/ViewController.swift new file mode 100644 index 0000000..e8dffef --- /dev/null +++ b/Virtual Extended Keyboard/ViewController.swift @@ -0,0 +1,27 @@ +// +// ViewController.swift +// Virtual Extended Keyboard +// +// Created by Chi Kim on 11/12/18. +// Copyright © 2018 Chi Kim. All rights reserved. +// + +import Cocoa + +class ViewController: NSViewController { + + override func viewDidLoad() { + super.viewDidLoad() + + // Do any additional setup after loading the view. + } + + override var representedObject: Any? { + didSet { + // Update the view, if already loaded. + } + } + + +} + diff --git a/Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements b/Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements new file mode 100644 index 0000000..f2ef3ae --- /dev/null +++ b/Virtual Extended Keyboard/Virtual_Extended_Keyboard.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.files.user-selected.read-only + + +