├── .gitignore ├── EGOTextView ├── EGOTextView.h ├── EGOTextView.m └── Resources │ ├── drag-dot@2x.png │ ├── loupe-hi@2x.png │ ├── loupe-lo@2x.png │ ├── loupe-mask@2x.png │ ├── magnifier-ranged-hi@2x.png │ ├── magnifier-ranged-lo-stemless@2x.png │ ├── magnifier-ranged-lo@2x.png │ └── magnifier-ranged-mask@2x.png ├── EGOTextView_Demo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ └── devin.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── WorkspaceSettings.xcsettings ├── EGOTextView_Demo ├── EGOTextView_Demo-Info.plist ├── EGOTextView_Demo-Prefix.pch ├── EGOTextView_DemoAppDelegate.h ├── EGOTextView_DemoAppDelegate.m ├── EGOTextView_DemoViewController.h ├── EGOTextView_DemoViewController.m ├── en.lproj │ ├── EGOTextView_DemoViewController.xib │ ├── InfoPlist.strings │ └── MainWindow.xib ├── iPad │ └── en.lproj │ │ └── MainWindow-iPad.xib └── main.m └── README.mdown /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /EGOTextView/EGOTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/EGOTextView.h -------------------------------------------------------------------------------- /EGOTextView/EGOTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/EGOTextView.m -------------------------------------------------------------------------------- /EGOTextView/Resources/drag-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/drag-dot@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/loupe-hi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/loupe-hi@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/loupe-lo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/loupe-lo@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/loupe-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/loupe-mask@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/magnifier-ranged-hi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/magnifier-ranged-hi@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/magnifier-ranged-lo-stemless@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/magnifier-ranged-lo-stemless@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/magnifier-ranged-lo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/magnifier-ranged-lo@2x.png -------------------------------------------------------------------------------- /EGOTextView/Resources/magnifier-ranged-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView/Resources/magnifier-ranged-mask@2x.png -------------------------------------------------------------------------------- /EGOTextView_Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EGOTextView_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EGOTextView_Demo.xcodeproj/project.xcworkspace/xcuserdata/devin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo.xcodeproj/project.xcworkspace/xcuserdata/devin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /EGOTextView_Demo.xcodeproj/project.xcworkspace/xcuserdata/devin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo.xcodeproj/project.xcworkspace/xcuserdata/devin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_Demo-Info.plist -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_Demo-Prefix.pch -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_DemoAppDelegate.h -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_DemoAppDelegate.m -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_DemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_DemoViewController.h -------------------------------------------------------------------------------- /EGOTextView_Demo/EGOTextView_DemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/EGOTextView_DemoViewController.m -------------------------------------------------------------------------------- /EGOTextView_Demo/en.lproj/EGOTextView_DemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/en.lproj/EGOTextView_DemoViewController.xib -------------------------------------------------------------------------------- /EGOTextView_Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /EGOTextView_Demo/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /EGOTextView_Demo/iPad/en.lproj/MainWindow-iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/iPad/en.lproj/MainWindow-iPad.xib -------------------------------------------------------------------------------- /EGOTextView_Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/EGOTextView_Demo/main.m -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enormego/EGOTextView/HEAD/README.mdown --------------------------------------------------------------------------------