├── .gitignore ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── README.md ├── Resources ├── iconGray.ico ├── iconGreen.ico ├── iconRed.ico ├── iconWhite.ico └── iconYellow.ico ├── TCD ├── MonitorInfo.cs ├── NumberOnlyTextBox.cs └── TUIO │ ├── TuioChannel.cs │ ├── TuioChannelHelper.cs │ └── TuioCursorContainer.cs ├── TouchInjector.csproj ├── TouchInjector.png ├── TouchInjector.sln ├── bin └── Release │ ├── Microsoft.Win32.TaskScheduler.dll │ ├── TCD.System.ApplicationExtensions.dll │ ├── TCD.System.TouchInjection.dll │ ├── TouchInjector.exe │ ├── TouchInjector.exe.config │ └── libTUIO.dll ├── iconWhite.ico ├── license ├── packages.config └── packages ├── TCD.System.ApplicationExtensions.1.1.0 ├── TCD.System.ApplicationExtensions.1.1.0.nupkg └── lib │ └── net45 │ ├── Microsoft.Win32.TaskScheduler.dll │ └── TCD.System.ApplicationExtensions.dll ├── TCD.System.TouchInjection.1.0.0 ├── TCD.System.TouchInjection.1.0.0.nupkg └── lib │ └── net45 │ └── TCD.System.TouchInjection.dll └── libTUIO11.1.1.5 ├── lib └── libTUIO.dll └── libTUIO11.1.1.5.nupkg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Properties/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/README.md -------------------------------------------------------------------------------- /Resources/iconGray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Resources/iconGray.ico -------------------------------------------------------------------------------- /Resources/iconGreen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Resources/iconGreen.ico -------------------------------------------------------------------------------- /Resources/iconRed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Resources/iconRed.ico -------------------------------------------------------------------------------- /Resources/iconWhite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Resources/iconWhite.ico -------------------------------------------------------------------------------- /Resources/iconYellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/Resources/iconYellow.ico -------------------------------------------------------------------------------- /TCD/MonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TCD/MonitorInfo.cs -------------------------------------------------------------------------------- /TCD/NumberOnlyTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TCD/NumberOnlyTextBox.cs -------------------------------------------------------------------------------- /TCD/TUIO/TuioChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TCD/TUIO/TuioChannel.cs -------------------------------------------------------------------------------- /TCD/TUIO/TuioChannelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TCD/TUIO/TuioChannelHelper.cs -------------------------------------------------------------------------------- /TCD/TUIO/TuioCursorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TCD/TUIO/TuioCursorContainer.cs -------------------------------------------------------------------------------- /TouchInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TouchInjector.csproj -------------------------------------------------------------------------------- /TouchInjector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TouchInjector.png -------------------------------------------------------------------------------- /TouchInjector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/TouchInjector.sln -------------------------------------------------------------------------------- /bin/Release/Microsoft.Win32.TaskScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/Microsoft.Win32.TaskScheduler.dll -------------------------------------------------------------------------------- /bin/Release/TCD.System.ApplicationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/TCD.System.ApplicationExtensions.dll -------------------------------------------------------------------------------- /bin/Release/TCD.System.TouchInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/TCD.System.TouchInjection.dll -------------------------------------------------------------------------------- /bin/Release/TouchInjector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/TouchInjector.exe -------------------------------------------------------------------------------- /bin/Release/TouchInjector.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/TouchInjector.exe.config -------------------------------------------------------------------------------- /bin/Release/libTUIO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/bin/Release/libTUIO.dll -------------------------------------------------------------------------------- /iconWhite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/iconWhite.ico -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/license -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages.config -------------------------------------------------------------------------------- /packages/TCD.System.ApplicationExtensions.1.1.0/TCD.System.ApplicationExtensions.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/TCD.System.ApplicationExtensions.1.1.0/TCD.System.ApplicationExtensions.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/TCD.System.ApplicationExtensions.1.1.0/lib/net45/Microsoft.Win32.TaskScheduler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/TCD.System.ApplicationExtensions.1.1.0/lib/net45/Microsoft.Win32.TaskScheduler.dll -------------------------------------------------------------------------------- /packages/TCD.System.ApplicationExtensions.1.1.0/lib/net45/TCD.System.ApplicationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/TCD.System.ApplicationExtensions.1.1.0/lib/net45/TCD.System.ApplicationExtensions.dll -------------------------------------------------------------------------------- /packages/TCD.System.TouchInjection.1.0.0/TCD.System.TouchInjection.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/TCD.System.TouchInjection.1.0.0/TCD.System.TouchInjection.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/TCD.System.TouchInjection.1.0.0/lib/net45/TCD.System.TouchInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/TCD.System.TouchInjection.1.0.0/lib/net45/TCD.System.TouchInjection.dll -------------------------------------------------------------------------------- /packages/libTUIO11.1.1.5/lib/libTUIO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/libTUIO11.1.1.5/lib/libTUIO.dll -------------------------------------------------------------------------------- /packages/libTUIO11.1.1.5/libTUIO11.1.1.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelosthege/TouchInjector/HEAD/packages/libTUIO11.1.1.5/libTUIO11.1.1.5.nupkg --------------------------------------------------------------------------------