├── .gitignore ├── DemoApp.AppKit ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── MainMenu.xib ├── DemoApp.AppKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DemoApp.entitlements └── ViewController.swift ├── DemoApp.UIKit ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DemoApp.UIKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── DemoApp.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md └── Sources ├── STAnnotationsPlugin └── module.swift ├── STAnnotationsPluginAppKit ├── STAnnotationView.swift ├── STAnnotationsContentView.swift ├── STAnnotationsDataSource.swift └── STAnnotationsPlugin.swift ├── STAnnotationsPluginShared ├── Logger.swift ├── STAnnotationLabelView.swift ├── STAnnotationsDataSource.swift ├── STLineAnnotation.swift └── STMessageLineAnnotation.swift └── STAnnotationsPluginUIKit ├── STAnnotationView.swift ├── STAnnotationsContentView.swift ├── STAnnotationsDataSource.swift └── STAnnotationsPlugin.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoApp.AppKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/AppDelegate.swift -------------------------------------------------------------------------------- /DemoApp.AppKit/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DemoApp.AppKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoApp.AppKit/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DemoApp.AppKit/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/DemoApp.AppKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DemoApp.AppKit/DemoApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/DemoApp.entitlements -------------------------------------------------------------------------------- /DemoApp.AppKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.AppKit/ViewController.swift -------------------------------------------------------------------------------- /DemoApp.UIKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/AppDelegate.swift -------------------------------------------------------------------------------- /DemoApp.UIKit/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DemoApp.UIKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DemoApp.UIKit/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DemoApp.UIKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DemoApp.UIKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/DemoApp.UIKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DemoApp.UIKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/Info.plist -------------------------------------------------------------------------------- /DemoApp.UIKit/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/SceneDelegate.swift -------------------------------------------------------------------------------- /DemoApp.UIKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.UIKit/ViewController.swift -------------------------------------------------------------------------------- /DemoApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DemoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/DemoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/README.md -------------------------------------------------------------------------------- /Sources/STAnnotationsPlugin/module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPlugin/module.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginAppKit/STAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginAppKit/STAnnotationView.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginAppKit/STAnnotationsContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginAppKit/STAnnotationsContentView.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginAppKit/STAnnotationsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginAppKit/STAnnotationsDataSource.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginAppKit/STAnnotationsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginAppKit/STAnnotationsPlugin.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginShared/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginShared/Logger.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginShared/STAnnotationLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginShared/STAnnotationLabelView.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginShared/STAnnotationsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginShared/STAnnotationsDataSource.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginShared/STLineAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginShared/STLineAnnotation.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginShared/STMessageLineAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginShared/STMessageLineAnnotation.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginUIKit/STAnnotationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginUIKit/STAnnotationView.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginUIKit/STAnnotationsContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginUIKit/STAnnotationsContentView.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginUIKit/STAnnotationsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginUIKit/STAnnotationsDataSource.swift -------------------------------------------------------------------------------- /Sources/STAnnotationsPluginUIKit/STAnnotationsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzyzanowskim/STTextView-Plugin-Annotations/HEAD/Sources/STAnnotationsPluginUIKit/STAnnotationsPlugin.swift --------------------------------------------------------------------------------