├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── support_request.md │ └── tablet_configuration.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── dotnet.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── OpenTabletDriver.Benchmarks ├── Benchmark.cs ├── Misc │ └── DriverInfoBenchmark.cs ├── OpenTabletDriver.Benchmarks.csproj ├── Output │ ├── LinuxInteropBenchmark.cs │ ├── MacOSInteropBenchmark.cs │ ├── NoopAbsoluteMode.cs │ ├── OutputBenchmark.cs │ └── WindowsInteropBenchmark.cs ├── Parser │ ├── ReportParserBenchmark.cs │ └── ReportParserProviderConstructBenchmark.cs └── Plugin │ └── PluginManagerBenchmark.cs ├── OpenTabletDriver.Configurations ├── Configurations │ ├── 10moon │ │ └── 1060N.json │ ├── Acepen │ │ └── AP 1060.json │ ├── Artisul │ │ └── M0610 Pro.json │ ├── Gaomon │ │ ├── 1060 Pro.json │ │ ├── M106K Pro.json │ │ ├── M106K.json │ │ ├── M10K Pro.json │ │ ├── M10K.json │ │ ├── M1220.json │ │ ├── M1230.json │ │ ├── PD1161.json │ │ ├── PD1560.json │ │ ├── S56K.json │ │ ├── S620.json │ │ └── S630.json │ ├── Genius │ │ ├── G-Pen 560.json │ │ └── i608x.json │ ├── Huion │ │ ├── 420.json │ │ ├── G10T.json │ │ ├── GC610.json │ │ ├── GT-220 V2.json │ │ ├── GT-221 Pro.json │ │ ├── H1060P.json │ │ ├── H1161.json │ │ ├── H420.json │ │ ├── H420X.json │ │ ├── H430P.json │ │ ├── H610 Pro V2.json │ │ ├── H610 Pro.json │ │ ├── H640P.json │ │ ├── H950P.json │ │ ├── HC16.json │ │ ├── HS610.json │ │ ├── HS611.json │ │ ├── HS64.json │ │ ├── Kamvas 13.json │ │ ├── Kamvas 16 (2021).json │ │ ├── Kamvas 16.json │ │ ├── Kamvas 20.json │ │ ├── Kamvas 22 Plus.json │ │ ├── Kamvas Pro 12.json │ │ ├── Kamvas Pro 13.json │ │ ├── Kamvas Pro 16.json │ │ ├── Kamvas Pro 20.json │ │ ├── New 1060 Plus (2048).json │ │ ├── New 1060 Plus.json │ │ ├── Q11K V2.json │ │ ├── Q11K.json │ │ ├── Q620M.json │ │ ├── WH1409 V2.json │ │ └── WH1409.json │ ├── Parblo │ │ ├── A610 Pro.json │ │ ├── A640 V2.json │ │ ├── Intangbo M.json │ │ ├── Intangbo S.json │ │ ├── Ninos M.json │ │ └── Ninos S.json │ ├── UC-Logic │ │ ├── 1060N.json │ │ └── PF1209.json │ ├── UGTABLET │ │ └── M708.json │ ├── VEIKK │ │ ├── A15 Pro.json │ │ ├── A15.json │ │ ├── A30.json │ │ ├── A50 V2.json │ │ ├── A50.json │ │ ├── S640 V2.json │ │ ├── S640.json │ │ └── VK640.json │ ├── ViewSonic │ │ └── Woodpad PF0730.json │ ├── Wacom │ │ ├── CTE-430.json │ │ ├── CTE-440.json │ │ ├── CTE-450.json │ │ ├── CTE-460.json │ │ ├── CTE-630.json │ │ ├── CTE-640.json │ │ ├── CTE-650.json │ │ ├── CTF-430.json │ │ ├── CTH-460.json │ │ ├── CTH-461.json │ │ ├── CTH-470.json │ │ ├── CTH-480.json │ │ ├── CTH-490.json │ │ ├── CTH-661.json │ │ ├── CTH-670.json │ │ ├── CTH-680.json │ │ ├── CTH-690.json │ │ ├── CTL-4100.json │ │ ├── CTL-4100WL.json │ │ ├── CTL-460.json │ │ ├── CTL-470.json │ │ ├── CTL-471.json │ │ ├── CTL-472.json │ │ ├── CTL-480.json │ │ ├── CTL-490.json │ │ ├── CTL-6100WL.json │ │ ├── CTL-671.json │ │ ├── CTL-672.json │ │ ├── CTL-680.json │ │ ├── CTL-690.json │ │ ├── DTC-133.json │ │ ├── ET-0405-U.json │ │ ├── ET-0405A-U.json │ │ ├── FT-0405-U.json │ │ ├── GD-0405-U.json │ │ ├── GD-0608-U.json │ │ ├── GD-0912-U.json │ │ ├── GD-1212-U.json │ │ ├── GD-1218-U.json │ │ ├── MTE-450.json │ │ ├── PTH-450.json │ │ ├── PTH-451.json │ │ ├── PTH-460.json │ │ ├── PTH-650.json │ │ ├── PTH-651.json │ │ ├── PTH-660.json │ │ ├── PTH-850.json │ │ ├── PTH-851.json │ │ ├── PTH-860.json │ │ ├── PTK-1240.json │ │ ├── PTK-440.json │ │ ├── PTK-450.json │ │ ├── PTK-540WL.json │ │ ├── PTK-640.json │ │ ├── PTK-650.json │ │ ├── PTK-840.json │ │ ├── PTZ-1230.json │ │ ├── PTZ-1231W.json │ │ ├── PTZ-430.json │ │ ├── PTZ-431W.json │ │ ├── PTZ-630.json │ │ ├── PTZ-631W.json │ │ ├── PTZ-930.json │ │ ├── XD-0405-U.json │ │ ├── XD-0608-U.json │ │ ├── XD-0912-U.json │ │ ├── XD-1212-U.json │ │ └── XD-1218-U.json │ ├── XP-Pen │ │ ├── Artist 12 Pro.json │ │ ├── Artist 12 V2.json │ │ ├── Artist 12.json │ │ ├── Artist 15.6 Pro.json │ │ ├── Artist 22HD.json │ │ ├── CT1060.json │ │ ├── CT430.json │ │ ├── CT640.json │ │ ├── Deco 01 V2 (variant 2).json │ │ ├── Deco 01 V2.json │ │ ├── Deco 01.json │ │ ├── Deco 02.json │ │ ├── Deco 03.json │ │ ├── Deco Pro Medium.json │ │ ├── Deco Pro Small.json │ │ ├── Deco mini4.json │ │ ├── Deco mini7.json │ │ ├── Innovator 16.json │ │ ├── Star 03.json │ │ ├── Star 05 V3.json │ │ ├── Star 06.json │ │ ├── Star 06C.json │ │ ├── Star G430.json │ │ ├── Star G430S V2.json │ │ ├── Star G430S.json │ │ ├── Star G540 Pro.json │ │ ├── Star G540.json │ │ ├── Star G640 V2.json │ │ ├── Star G640.json │ │ ├── Star G640S.json │ │ ├── Star G960.json │ │ ├── Star G960S Plus.json │ │ └── Star G960S.json │ └── XenceLabs │ │ └── Pen Tablet Medium.json ├── DeviceConfigurationProvider.cs ├── OpenTabletDriver.Configurations.csproj ├── Parsers │ ├── 10moon │ │ ├── 10moonAuxParser.cs │ │ ├── 10moonReportParser.cs │ │ └── 10moonTabletReport.cs │ ├── Acepen │ │ ├── AcepenAuxReport.cs │ │ ├── AcepenReportParser.cs │ │ └── AcepenTabletReport.cs │ ├── Genius │ │ ├── GeniusButtonStripAuxReport.cs │ │ ├── GeniusMouseReport.cs │ │ ├── GeniusReportParser.cs │ │ ├── GeniusReportParserV2.cs │ │ └── GeniusTabletReport.cs │ ├── Huion │ │ ├── GianoReport.cs │ │ └── GianoReportParser.cs │ ├── SkipByteTabletReportParser.cs │ ├── UCLogic │ │ ├── UCLogicAuxReport.cs │ │ ├── UCLogicReportParser.cs │ │ └── UCLogicTiltReportParser.cs │ ├── Veikk │ │ ├── VeikkReportParser.cs │ │ └── VeikkTabletReport.cs │ ├── ViewSonic │ │ ├── WoodPadParser.cs │ │ └── WoodPadReport.cs │ ├── Wacom │ │ ├── Bamboo │ │ │ ├── BambooAuxReport.cs │ │ │ ├── BambooMouseReport.cs │ │ │ ├── BambooReportParser.cs │ │ │ └── BambooTabletReport.cs │ │ ├── Intuos │ │ │ ├── IntuosReportParser.cs │ │ │ ├── IntuosTabletReport.cs │ │ │ └── WacomDriverIntuosReportParser.cs │ │ ├── Intuos3 │ │ │ ├── Intuos3AuxReport.cs │ │ │ ├── Intuos3MouseReport.cs │ │ │ ├── Intuos3ReportParser.cs │ │ │ └── WacomDriverIntuos3ReportParser.cs │ │ ├── Intuos4 │ │ │ └── Intuos4AuxReport.cs │ │ ├── IntuosV1 │ │ │ ├── IntuosV1AuxReport.cs │ │ │ ├── IntuosV1ReportParser.cs │ │ │ ├── IntuosV1TabletReport.cs │ │ │ ├── IntuosV1ToolReport.cs │ │ │ └── WacomDriverIntuosV1ReportParser.cs │ │ ├── IntuosV2 │ │ │ ├── IntuosV2AuxReport.cs │ │ │ ├── IntuosV2Report.cs │ │ │ ├── IntuosV2ReportParser.cs │ │ │ ├── IntuosV2TouchReport.cs │ │ │ └── WacomDriverIntuosV2ReportParser.cs │ │ ├── Wacom64bAuxReportParser.cs │ │ └── WacomTouchReport.cs │ ├── XP_Pen │ │ ├── XP_PenAuxReport.cs │ │ ├── XP_PenOffsetAuxReportParser.cs │ │ ├── XP_PenOffsetPressureReportParser.cs │ │ ├── XP_PenPressureOffsetTabletReport.cs │ │ ├── XP_PenPressureOffsetTiltTabletReport.cs │ │ ├── XP_PenReportParser.cs │ │ ├── XP_PenTabletOverflowReport.cs │ │ ├── XP_PenTabletPressureOffsetOverflowReport.cs │ │ └── XP_PenTabletReport.cs │ └── XenceLabs │ │ ├── XenceLabsReportParser.cs │ │ └── XenceLabsTabletReport.cs └── ReportParserProvider.cs ├── OpenTabletDriver.Console ├── CommandTools.cs ├── Extensions.cs ├── OpenTabletDriver.Console.csproj ├── Program.Commands.cs ├── Program.IPC.cs ├── Program.Misc.cs └── Program.cs ├── OpenTabletDriver.Daemon ├── DriverDaemon.cs ├── OpenTabletDriver.Daemon.csproj └── Program.cs ├── OpenTabletDriver.Desktop ├── AppInfo.cs ├── Binding │ ├── BindingHandler.cs │ ├── BindingState.cs │ ├── KeyBinding.cs │ ├── LinuxArtistMode │ │ └── LinuxArtistModeButtonBinding.cs │ ├── MouseBinding.cs │ ├── MultiKeyBinding.cs │ └── ThresholdBindingState.cs ├── Compression │ └── CompressionTools.cs ├── Contracts │ └── IDriverDaemon.cs ├── Conversion │ ├── ConversionFactorAreaConverter.cs │ ├── PercentageAreaConverter.cs │ └── XP_PenDriverAreaConverter.cs ├── Converters │ └── VersionConverter.cs ├── DesktopDeviceConfigurationProvider.cs ├── DesktopReportParserProvider.cs ├── Diagnostics │ ├── DiagnosticInfo.cs │ └── EnvironmentDictionary.cs ├── FileUtilities.cs ├── Interop │ ├── DesktopInterop.cs │ ├── Display │ │ ├── Display.cs │ │ ├── MacOSDisplay.cs │ │ ├── WaylandDisplay.cs │ │ ├── WaylandOutput.cs │ │ ├── WindowsDisplay.cs │ │ └── XScreen.cs │ ├── Input │ │ ├── Absolute │ │ │ ├── EvdevAbsolutePointer.cs │ │ │ ├── EvdevVirtualTablet.cs │ │ │ ├── MacOSAbsolutePointer.cs │ │ │ └── WindowsAbsolutePointer.cs │ │ ├── EvdevVirtualMouse.cs │ │ ├── InputDictionary.cs │ │ ├── Keyboard │ │ │ ├── EvdevVirtualKeyboard.cs │ │ │ ├── MacOSVirtualKeyboard.cs │ │ │ └── WindowsVirtualKeyboard.cs │ │ ├── MacOSVirtualMouse.cs │ │ ├── Relative │ │ │ ├── EvdevRelativePointer.cs │ │ │ ├── MacOSRelativePointer.cs │ │ │ └── WindowsRelativePointer.cs │ │ └── WindowsVirtualMouse.cs │ └── Timer │ │ ├── FallbackTimer.cs │ │ ├── LinuxTimer.cs │ │ └── WindowsTimer.cs ├── Migration │ ├── LegacySettings │ │ └── V5 │ │ │ └── Settings.cs │ └── SettingsMigrator.cs ├── OpenTabletDriver.Desktop.csproj ├── Output │ ├── AbsoluteMode.cs │ ├── LinuxArtistMode.cs │ └── RelativeMode.cs ├── Preset.cs ├── PresetManager.cs ├── Profiles │ ├── AbsoluteModeSettings.cs │ ├── AreaSettings.cs │ ├── BindingSettings.cs │ ├── Profile.cs │ ├── ProfileCollection.cs │ └── RelativeModeSettings.cs ├── RPC │ ├── DebugReportData.cs │ ├── RpcClient.cs │ └── RpcHost.cs ├── Reflection │ ├── DesktopPluginContext.cs │ ├── DesktopPluginManager.cs │ ├── Extensions.cs │ ├── IServiceManager.cs │ ├── Metadata │ │ ├── PluginMetadata.cs │ │ └── PluginMetadataCollection.cs │ ├── PluginContext.cs │ ├── PluginManager.cs │ ├── PluginSetting.cs │ ├── PluginSettingStore.cs │ ├── PluginSettingStoreCollection.cs │ └── ServiceManager.cs ├── Serialization.cs ├── Settings.cs ├── Updater │ ├── IUpdater.cs │ ├── MacOSUpdater.cs │ ├── Updater.cs │ └── WindowsUpdater.cs └── ViewModel.cs ├── OpenTabletDriver.Linux.slnf ├── OpenTabletDriver.MacOS.slnf ├── OpenTabletDriver.Native ├── Linux │ ├── ERRNO.cs │ ├── Evdev │ │ ├── Evdev.cs │ │ ├── EvdevDevice.cs │ │ ├── EventCode.cs │ │ ├── EventType.cs │ │ └── Structs │ │ │ └── input_absinfo.cs │ ├── Timers │ │ ├── ClockID.cs │ │ ├── SigEv.cs │ │ ├── Structs │ │ │ ├── SigEvThread.cs │ │ │ ├── SigEvent.cs │ │ │ ├── SigVal.cs │ │ │ ├── TimeSpec.cs │ │ │ └── TimerSpec.cs │ │ ├── TimerFlag.cs │ │ └── Timers.cs │ └── Xorg │ │ ├── XLib.cs │ │ ├── XRRMonitorInfo.cs │ │ └── XRandr.cs ├── OSX │ ├── Generic │ │ ├── CGEventTapLocation.cs │ │ ├── CGEventType.cs │ │ ├── CGPoint.cs │ │ ├── CGRect.cs │ │ └── CGSize.cs │ ├── Input │ │ ├── CGKeyCode.cs │ │ └── CGMouseButton.cs │ └── OSX.cs ├── OpenTabletDriver.Native.csproj └── Windows │ ├── CM │ ├── CM_NOTIFY_ACTION.cs │ ├── CM_NOTIFY_EVENT_DATA.cs │ ├── CM_NOTIFY_FILTER.cs │ ├── CM_NOTIFY_FILTER_FLAG.cs │ ├── CM_NOTIFY_FILTER_TYPE.cs │ ├── CR.cs │ └── SafeCmNotificationHandle.cs │ ├── CfgMgr32.cs │ ├── Display │ ├── DevMode.cs │ ├── DisplayInfo.cs │ ├── DpiType.cs │ ├── MONITORINFOF.cs │ └── MonitorInfoEx.cs │ ├── Generic │ ├── POINT.cs │ ├── Rect.cs │ └── SafeFileHandle.cs │ ├── Input │ ├── HARDWAREINPUT.cs │ ├── INPUT.cs │ ├── InputUnion.cs │ ├── KEYBDINPUT.cs │ ├── KEYEVENTF.cs │ ├── KEYSTATE.cs │ ├── MOUSEEVENTF.cs │ ├── MOUSEINPUT.cs │ ├── VK.cs │ ├── VirtualKeyStates.cs │ └── XBUTTON.cs │ ├── SetupApi.cs │ ├── SetupApiStructs │ ├── SP_DEVICE_INTERFACE_DATA.cs │ └── SP_DEVICE_INTERFACE_DETAIL_DATA.cs │ ├── Timers │ ├── EventType.cs │ └── TimeCaps.cs │ ├── USB │ ├── DIGCF.cs │ ├── DescriptorHeader.cs │ ├── DescriptorType.cs │ ├── DeviceDescriptor.cs │ ├── InterfaceDescriptor.cs │ ├── PipeDirection.cs │ ├── PipeInfo.cs │ ├── PipeType.cs │ ├── RequestDirection.cs │ ├── RequestInternalType.cs │ ├── RequestRecipient.cs │ ├── RequestType.cs │ ├── SafeWinUsbInterfaceHandle.cs │ ├── SetupPacket.cs │ ├── StandardRequestCode.cs │ └── StringDescriptor.cs │ ├── WinUSB.cs │ └── Windows.cs ├── OpenTabletDriver.Plugin ├── Area.cs ├── Attributes │ ├── ActionAttribute.cs │ ├── BooleanPropertyAttribute.cs │ ├── BuildDateAttribute.cs │ ├── DefaultPropertyValueAttribute.cs │ ├── DeviceHubAttribute.cs │ ├── ModifierAttribute.cs │ ├── PluginIgnoreAttribute.cs │ ├── PluginNameAttribute.cs │ ├── PropertyAttribute.cs │ ├── PropertyValidatedAttribute.cs │ ├── SliderPropertyAttribute.cs │ ├── SupportedPlatformAttribute.cs │ ├── TabletReferenceAttribute.cs │ ├── ToolTipAttribute.cs │ └── UnitAttribute.cs ├── Components │ ├── ICompositeDeviceHub.cs │ ├── IDeviceConfigurationProvider.cs │ ├── IDeviceHubsProvider.cs │ └── IReportParserProvider.cs ├── DependencyInjection │ ├── OnDependencyLoadAttribute.cs │ └── ResolvedAttribute.cs ├── Devices │ ├── DevicesChangedEventArgs.cs │ ├── IDeviceEndpoint.cs │ ├── IDeviceEndpointStream.cs │ ├── IDeviceHub.cs │ └── SerializedDeviceEndpoint.cs ├── HPETDeltaStopwatch.cs ├── IBinding.cs ├── IDriver.cs ├── IStateBinding.cs ├── ITimer.cs ├── ITool.cs ├── Log.cs ├── LogLevel.cs ├── Logging │ └── LogMessage.cs ├── OpenTabletDriver.Plugin.csproj ├── Output │ ├── AbsoluteOutputMode.cs │ ├── AsyncPositionedPipelineElement.cs │ ├── IOutputMode.cs │ ├── IPipelineElement.cs │ ├── IPointerProvider.cs │ ├── IPositionedPipelineElement.cs │ ├── OutputMode.cs │ ├── PipelineManager.cs │ ├── PipelinePosition.cs │ └── RelativeOutputMode.cs ├── Platform │ ├── Display │ │ ├── IDisplay.cs │ │ └── IVirtualScreen.cs │ ├── Keyboard │ │ └── IVirtualKeyboard.cs │ └── Pointer │ │ ├── IAbsolutePointer.cs │ │ ├── IEraserHandler.cs │ │ ├── IHoverDistanceHandler.cs │ │ ├── IMouseButtonHandler.cs │ │ ├── IPressureHandler.cs │ │ ├── IProximityHandler.cs │ │ ├── IRelativePointer.cs │ │ ├── ISynchronousPointer.cs │ │ ├── ITiltHandler.cs │ │ └── MouseButton.cs ├── PluginPlatform.cs └── Tablet │ ├── AuxReport.cs │ ├── AuxReportParser.cs │ ├── ButtonSpecifications.cs │ ├── ByteExtensions.cs │ ├── DetectionRange.cs │ ├── DeviceIdentifier.cs │ ├── DeviceReport.cs │ ├── DeviceVendor.cs │ ├── DigitizerSpecifications.cs │ ├── IAbsolutePositionReport.cs │ ├── IAreaConverter.cs │ ├── IAuxReport.cs │ ├── IDeviceReport.cs │ ├── IEraserReport.cs │ ├── IMouseReport.cs │ ├── IProximityReport.cs │ ├── IReportParser.cs │ ├── ITabletReport.cs │ ├── ITiltReport.cs │ ├── IToolReport.cs │ ├── OutOfRangeReport.cs │ ├── PassthroughReportParser.cs │ ├── PenSpecifications.cs │ ├── TabletConfiguration.cs │ ├── TabletReference.cs │ ├── TabletReport.cs │ ├── TabletReportParser.cs │ ├── TabletSpecifications.cs │ ├── TiltTabletReport.cs │ ├── TiltTabletReportParser.cs │ ├── ToolType.cs │ └── Touch │ ├── ITouchReport.cs │ └── TouchPoint.cs ├── OpenTabletDriver.Tests ├── ConfigurationTest.cs ├── DetectionRangeTest.cs ├── OpenTabletDriver.Tests.csproj ├── PluginMetadataTest.cs ├── ReportParserProviderTest.cs ├── StrictServiceCollectionTest.cs ├── TimerTests.cs └── UpdaterTests.cs ├── OpenTabletDriver.Tools.udev ├── Comparers │ └── IdentifierComparer.cs ├── Extensions.cs ├── OpenTabletDriver.Tools.udev.csproj ├── Program.cs └── RuleGenerator.cs ├── OpenTabletDriver.UX.Gtk ├── OpenTabletDriver.UX.Gtk.csproj └── Program.cs ├── OpenTabletDriver.UX.MacOS ├── Icon.icns ├── Info.plist ├── OpenTabletDriver.UX.MacOS.csproj └── Program.cs ├── OpenTabletDriver.UX.Wpf ├── OpenTabletDriver.UX.Wpf.csproj └── Program.cs ├── OpenTabletDriver.UX ├── App.cs ├── Assets │ ├── otd.ico │ └── otd.png ├── Attributes │ └── PageNameAttribute.cs ├── ChildDialog.cs ├── Controls │ ├── BindingDisplay.cs │ ├── Bindings │ │ ├── AuxiliaryBindingEditor.cs │ │ ├── BindingDisplayList.cs │ │ ├── BindingEditor.cs │ │ ├── MouseBindingEditor.cs │ │ └── PenBindingEditor.cs │ ├── ControlPanel.cs │ ├── GeneratedControls.cs │ ├── Generic │ │ ├── Dictionary │ │ │ ├── DictionaryEditor.cs │ │ │ └── StringDictionaryEditor.cs │ │ ├── DropDown.cs │ │ ├── FloatSlider.cs │ │ ├── GeneratedItemList.cs │ │ ├── Group.cs │ │ ├── InputBox.cs │ │ ├── ListBox.cs │ │ ├── ModifiableConstructableItemList.cs │ │ ├── ModifiableItemList.cs │ │ ├── PaddingSpacerItem.cs │ │ ├── Reflection │ │ │ ├── Extensions.cs │ │ │ ├── TypeDropDown.cs │ │ │ └── TypeListBox.cs │ │ ├── ScheduledDrawable.cs │ │ ├── StackView.cs │ │ ├── StackedContent.cs │ │ ├── StylizedText.cs │ │ ├── Text │ │ │ ├── DoubleNumberBox.cs │ │ │ ├── FloatNumberBox.cs │ │ │ ├── HexByteArrayBox.cs │ │ │ ├── HexNumberBox.cs │ │ │ ├── IntegerNumberBox.cs │ │ │ ├── Providers │ │ │ │ ├── MaskedTextProvider.cs │ │ │ │ ├── NumberTextProvider.cs │ │ │ │ └── RegexTextProvider.cs │ │ │ └── UnsignedIntegerNumberBox.cs │ │ └── TextContent.cs │ ├── LogView.cs │ ├── Output │ │ ├── AbsoluteModeEditor.cs │ │ ├── Area │ │ │ ├── AreaControl.cs │ │ │ ├── AreaDisplay.cs │ │ │ ├── AreaEditor.cs │ │ │ ├── RotationAreaEditor.cs │ │ │ └── UnitGroup.cs │ │ ├── OutputModeEditor.cs │ │ └── RelativeModeEditor.cs │ ├── Placeholder.cs │ ├── PluginSettingStoreCollectionEditor.cs │ ├── PluginSettingStoreEditor.cs │ ├── TabletSwitcherPanel.cs │ └── Utilities │ │ ├── ActionCommand.cs │ │ └── BooleanCommand.cs ├── DaemonWatchdog.cs ├── DesktopForm.cs ├── Dialogs │ └── RepositoryDialog.cs ├── Extensions.cs ├── IViewModelRoot.cs ├── MainForm.cs ├── OpenTabletDriver.UX.csproj ├── RPC │ └── DaemonRpcClient.cs ├── Tools │ ├── CompositionScheduler.cs │ ├── EnumTools.cs │ ├── LogDataStore.cs │ ├── ParseTools.cs │ └── ReportFormatter.cs ├── TrayIcon.cs └── Windows │ ├── AreaConverterDialog.cs │ ├── Bindings │ ├── AdvancedBindingEditorDialog.cs │ └── BindingEditorDialog.cs │ ├── Configurations │ ├── ConfigurationEditor.cs │ └── Controls │ │ ├── DeviceIdentifierEditor.cs │ │ └── Specifications │ │ ├── ButtonSpecificationsEditor.cs │ │ ├── DigitizerSpecificationsEditor.cs │ │ ├── PenSpecificationsEditor.cs │ │ ├── SpecificationsEditor.cs │ │ └── TabletSpecificationsEditor.cs │ ├── DeviceListDialog.cs │ ├── DeviceStringReader.cs │ ├── Greeter │ ├── Pages │ │ ├── AreaEditorPage.cs │ │ ├── BindingPage.cs │ │ ├── FAQPage.cs │ │ ├── PluginPage.cs │ │ ├── SystemTrayPage.cs │ │ └── WelcomePage.cs │ └── StartupGreeterWindow.cs │ ├── Plugins │ ├── MetadataViewer.cs │ ├── PluginDropPanel.cs │ ├── PluginManagerWindow.cs │ └── PluginMetadataList.cs │ ├── StylizedPage.cs │ ├── Tablet │ └── TabletDebugger.cs │ ├── Updater │ └── UpdaterWindow.cs │ └── WindowSingleton.cs ├── OpenTabletDriver.Windows.slnf ├── OpenTabletDriver.sln ├── OpenTabletDriver ├── ComponentProviders │ └── DeviceHubsProvider.cs ├── Devices │ ├── DeviceReader.cs │ ├── HidSharpBackend │ │ ├── HidSharpDeviceRoot.cs │ │ ├── HidSharpEndpoint.cs │ │ └── HidSharpEndpointStream.cs │ ├── RootHub.cs │ └── WinUSB │ │ ├── WinUSBInterface.cs │ │ ├── WinUSBInterfaceStream.cs │ │ ├── WinUSBRootHub.cs │ │ └── WindowsEnumerationException.cs ├── Driver.cs ├── DriverAlreadyBuiltException.cs ├── DriverBuilder.cs ├── DriverServiceCollection.cs ├── Extensions.cs ├── InputDevice.cs ├── InputDeviceTree.cs ├── InputDeviceTreeList.cs ├── Instance.cs ├── Interop │ ├── SleepDetectionThread.cs │ └── SystemInterop.cs ├── OpenTabletDriver.csproj └── SystemDrivers │ ├── DriverInfo.cs │ ├── IDriverInfoProvider.cs │ └── Providers │ ├── GaomonDriverInfoProvider.cs │ ├── HuionDriverInfoProvider.cs │ ├── OpenTabletDriverInfoProvider.cs │ ├── ProcessModuleQueryableDriverInfoProvider.cs │ ├── TabletDriverInfoProvider.cs │ ├── VeikkDriverInfoProvider.cs │ ├── WacomDriverInfoProvider.cs │ └── XPPenDriverInfoProvider.cs ├── README.md ├── README_CN.md ├── README_ES.md ├── README_FR.md ├── README_KO.md ├── README_RU.md ├── TABLETS.md ├── docs └── manpages │ └── opentabletdriver.8 ├── generate-rules.sh └── nuget.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tablet_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/ISSUE_TEMPLATE/tablet_configuration.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Benchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Misc/DriverInfoBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Misc/DriverInfoBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/OpenTabletDriver.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/OpenTabletDriver.Benchmarks.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Output/LinuxInteropBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Output/LinuxInteropBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Output/MacOSInteropBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Output/MacOSInteropBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Output/NoopAbsoluteMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Output/NoopAbsoluteMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Output/OutputBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Output/OutputBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Output/WindowsInteropBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Output/WindowsInteropBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Parser/ReportParserBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Parser/ReportParserBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Parser/ReportParserProviderConstructBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Parser/ReportParserProviderConstructBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Benchmarks/Plugin/PluginManagerBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Benchmarks/Plugin/PluginManagerBenchmark.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/10moon/1060N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/10moon/1060N.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Acepen/AP 1060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Acepen/AP 1060.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Artisul/M0610 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Artisul/M0610 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/1060 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/1060 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M106K Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M106K Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M106K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M106K.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M10K Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M10K Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M10K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M10K.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M1220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M1220.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/M1230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/M1230.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/PD1161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/PD1161.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/PD1560.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/PD1560.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/S56K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/S56K.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/S620.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/S620.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Gaomon/S630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Gaomon/S630.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Genius/G-Pen 560.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Genius/G-Pen 560.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Genius/i608x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Genius/i608x.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/420.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/G10T.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/G10T.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/GC610.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/GC610.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/GT-220 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/GT-220 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/GT-221 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/GT-221 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H1060P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H1060P.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H1161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H1161.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H420.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H420X.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H420X.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H430P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H430P.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H610 Pro V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H610 Pro V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H610 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H610 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H640P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H640P.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/H950P.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/H950P.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/HC16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/HC16.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/HS610.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/HS610.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/HS611.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/HS611.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/HS64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/HS64.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 13.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 16 (2021).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 16 (2021).json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 16.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 20.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 22 Plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas 22 Plus.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 12.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 13.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 16.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Kamvas Pro 20.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/New 1060 Plus (2048).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/New 1060 Plus (2048).json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/New 1060 Plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/New 1060 Plus.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Q11K V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Q11K V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Q11K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Q11K.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/Q620M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/Q620M.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/WH1409 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/WH1409 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Huion/WH1409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Huion/WH1409.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/A610 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/A610 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/A640 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/A640 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/Intangbo M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/Intangbo M.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/Intangbo S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/Intangbo S.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/Ninos M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/Ninos M.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Parblo/Ninos S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Parblo/Ninos S.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/UC-Logic/1060N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/UC-Logic/1060N.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/UC-Logic/PF1209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/UC-Logic/PF1209.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/UGTABLET/M708.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/UGTABLET/M708.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/A15 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/A15 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/A15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/A15.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/A30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/A30.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/A50 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/A50 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/A50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/A50.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/S640 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/S640 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/S640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/S640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/VEIKK/VK640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/VEIKK/VK640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/ViewSonic/Woodpad PF0730.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/ViewSonic/Woodpad PF0730.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-430.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-440.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-450.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-460.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-460.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-630.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTE-650.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTE-650.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTF-430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTF-430.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-460.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-460.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-461.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-461.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-470.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-480.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-480.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-490.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-490.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-661.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-661.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-670.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-670.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-680.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTH-690.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTH-690.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-4100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-4100.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-4100WL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-4100WL.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-460.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-460.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-470.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-471.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-471.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-472.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-472.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-480.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-480.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-490.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-490.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-6100WL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-6100WL.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-671.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-672.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-672.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-680.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/CTL-690.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/CTL-690.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/DTC-133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/DTC-133.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/ET-0405-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/ET-0405-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/ET-0405A-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/ET-0405A-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/FT-0405-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/FT-0405-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/GD-0405-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/GD-0405-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/GD-0608-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/GD-0608-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/GD-0912-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/GD-0912-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/GD-1212-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/GD-1212-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/GD-1218-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/GD-1218-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/MTE-450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/MTE-450.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-450.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-451.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-451.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-460.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-460.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-650.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-650.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-651.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-651.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-660.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-660.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-850.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-850.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-851.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-851.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTH-860.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTH-860.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-1240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-1240.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-440.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-450.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-540WL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-540WL.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-650.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-650.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTK-840.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTK-840.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-1230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-1230.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-1231W.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-1231W.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-430.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-431W.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-431W.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-630.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-631W.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-631W.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-930.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/PTZ-930.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/XD-0405-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/XD-0405-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/XD-0608-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/XD-0608-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/XD-0912-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/XD-0912-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/XD-1212-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/XD-1212-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/Wacom/XD-1218-U.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/Wacom/XD-1218-U.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 12.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 15.6 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 15.6 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 22HD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Artist 22HD.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/CT1060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/CT1060.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/CT430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/CT430.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/CT640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/CT640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01 V2 (variant 2).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01 V2 (variant 2).json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 01.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 02.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco 03.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco Pro Medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco Pro Medium.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco Pro Small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco Pro Small.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco mini4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco mini4.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco mini7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Deco mini7.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Innovator 16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Innovator 16.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 03.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 05 V3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 05 V3.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 06.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 06C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star 06C.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430S V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430S V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G430S.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G540 Pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G540 Pro.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G540.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640 V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640 V2.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G640S.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960S Plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960S Plus.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960S.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XP-Pen/Star G960S.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Configurations/XenceLabs/Pen Tablet Medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Configurations/XenceLabs/Pen Tablet Medium.json -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/DeviceConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/DeviceConfigurationProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/OpenTabletDriver.Configurations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/OpenTabletDriver.Configurations.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/10moon/10moonAuxParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/10moon/10moonAuxParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/10moon/10moonReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/10moon/10moonReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/10moon/10moonTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/10moon/10moonTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Acepen/AcepenAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Acepen/AcepenAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Acepen/AcepenReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Acepen/AcepenReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Acepen/AcepenTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Acepen/AcepenTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Genius/GeniusButtonStripAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Genius/GeniusButtonStripAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Genius/GeniusMouseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Genius/GeniusMouseReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Genius/GeniusReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Genius/GeniusReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Genius/GeniusReportParserV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Genius/GeniusReportParserV2.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Genius/GeniusTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Genius/GeniusTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Huion/GianoReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Huion/GianoReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Huion/GianoReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Huion/GianoReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/SkipByteTabletReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/SkipByteTabletReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicTiltReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/UCLogic/UCLogicTiltReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Veikk/VeikkReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Veikk/VeikkReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Veikk/VeikkTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Veikk/VeikkTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/ViewSonic/WoodPadParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/ViewSonic/WoodPadParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/ViewSonic/WoodPadReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/ViewSonic/WoodPadReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooMouseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooMouseReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Bamboo/BambooTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/IntuosReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/IntuosReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/IntuosTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/IntuosTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/WacomDriverIntuosReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos/WacomDriverIntuosReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3AuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3AuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3MouseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3MouseReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/Intuos3ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/WacomDriverIntuos3ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos3/WacomDriverIntuos3ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Intuos4/Intuos4AuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Intuos4/Intuos4AuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1AuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1AuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1TabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1TabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1ToolReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/IntuosV1ToolReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/WacomDriverIntuosV1ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV1/WacomDriverIntuosV1ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2AuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2AuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2Report.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2TouchReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/IntuosV2TouchReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/WacomDriverIntuosV2ReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/IntuosV2/WacomDriverIntuosV2ReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/Wacom64bAuxReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/Wacom64bAuxReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/Wacom/WacomTouchReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/Wacom/WacomTouchReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenOffsetAuxReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenOffsetAuxReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenOffsetPressureReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenOffsetPressureReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenPressureOffsetTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenPressureOffsetTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenPressureOffsetTiltTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenPressureOffsetTiltTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletOverflowReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletOverflowReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletPressureOffsetOverflowReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletPressureOffsetOverflowReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XP_Pen/XP_PenTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XenceLabs/XenceLabsReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XenceLabs/XenceLabsReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/Parsers/XenceLabs/XenceLabsTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/Parsers/XenceLabs/XenceLabsTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Configurations/ReportParserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Configurations/ReportParserProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/CommandTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/CommandTools.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/OpenTabletDriver.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/OpenTabletDriver.Console.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Console/Program.Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/Program.Commands.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/Program.IPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/Program.IPC.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/Program.Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/Program.Misc.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Console/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Daemon/DriverDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Daemon/DriverDaemon.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Daemon/OpenTabletDriver.Daemon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Daemon/OpenTabletDriver.Daemon.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Daemon/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Daemon/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/AppInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/BindingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/BindingHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/BindingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/BindingState.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/KeyBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/KeyBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/LinuxArtistMode/LinuxArtistModeButtonBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/LinuxArtistMode/LinuxArtistModeButtonBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/MouseBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/MouseBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/MultiKeyBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/MultiKeyBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Binding/ThresholdBindingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Binding/ThresholdBindingState.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Compression/CompressionTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Compression/CompressionTools.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Contracts/IDriverDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Contracts/IDriverDaemon.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Conversion/ConversionFactorAreaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Conversion/ConversionFactorAreaConverter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Conversion/PercentageAreaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Conversion/PercentageAreaConverter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Conversion/XP_PenDriverAreaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Conversion/XP_PenDriverAreaConverter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Converters/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Converters/VersionConverter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/DesktopDeviceConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/DesktopDeviceConfigurationProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/DesktopReportParserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/DesktopReportParserProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Diagnostics/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Diagnostics/DiagnosticInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Diagnostics/EnvironmentDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Diagnostics/EnvironmentDictionary.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/FileUtilities.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/DesktopInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/DesktopInterop.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/Display.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/MacOSDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/MacOSDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/WaylandDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/WaylandDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/WaylandOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/WaylandOutput.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/WindowsDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/WindowsDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Display/XScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Display/XScreen.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Absolute/EvdevAbsolutePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Absolute/EvdevAbsolutePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Absolute/EvdevVirtualTablet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Absolute/EvdevVirtualTablet.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Absolute/MacOSAbsolutePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Absolute/MacOSAbsolutePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Absolute/WindowsAbsolutePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Absolute/WindowsAbsolutePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/EvdevVirtualMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/EvdevVirtualMouse.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/InputDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/InputDictionary.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Keyboard/EvdevVirtualKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Keyboard/EvdevVirtualKeyboard.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Keyboard/MacOSVirtualKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Keyboard/MacOSVirtualKeyboard.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Keyboard/WindowsVirtualKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Keyboard/WindowsVirtualKeyboard.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/MacOSVirtualMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/MacOSVirtualMouse.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Relative/EvdevRelativePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Relative/EvdevRelativePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Relative/MacOSRelativePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Relative/MacOSRelativePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/Relative/WindowsRelativePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/Relative/WindowsRelativePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Input/WindowsVirtualMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Input/WindowsVirtualMouse.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Timer/FallbackTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Timer/FallbackTimer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Timer/LinuxTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Timer/LinuxTimer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Interop/Timer/WindowsTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Interop/Timer/WindowsTimer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Migration/LegacySettings/V5/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Migration/LegacySettings/V5/Settings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Migration/SettingsMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Migration/SettingsMigrator.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/OpenTabletDriver.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/OpenTabletDriver.Desktop.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Output/AbsoluteMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Output/AbsoluteMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Output/LinuxArtistMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Output/LinuxArtistMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Output/RelativeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Output/RelativeMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Preset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Preset.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/PresetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/PresetManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/AbsoluteModeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/AbsoluteModeSettings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/AreaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/AreaSettings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/BindingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/BindingSettings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/Profile.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/ProfileCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/ProfileCollection.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Profiles/RelativeModeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Profiles/RelativeModeSettings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/RPC/DebugReportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/RPC/DebugReportData.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/RPC/RpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/RPC/RpcClient.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/RPC/RpcHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/RPC/RpcHost.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/DesktopPluginContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/DesktopPluginContext.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/DesktopPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/DesktopPluginManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/IServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/IServiceManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/Metadata/PluginMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/Metadata/PluginMetadata.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/Metadata/PluginMetadataCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/Metadata/PluginMetadataCollection.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/PluginContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/PluginContext.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/PluginManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/PluginSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/PluginSetting.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/PluginSettingStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/PluginSettingStore.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/PluginSettingStoreCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/PluginSettingStoreCollection.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Reflection/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Reflection/ServiceManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Serialization.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Settings.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Updater/IUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Updater/IUpdater.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Updater/MacOSUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Updater/MacOSUpdater.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Updater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Updater/Updater.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/Updater/WindowsUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/Updater/WindowsUpdater.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Desktop/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Desktop/ViewModel.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Linux.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Linux.slnf -------------------------------------------------------------------------------- /OpenTabletDriver.MacOS.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.MacOS.slnf -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/ERRNO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/ERRNO.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Evdev/Evdev.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Evdev/Evdev.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Evdev/EvdevDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Evdev/EvdevDevice.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Evdev/EventCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Evdev/EventCode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Evdev/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Evdev/EventType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Evdev/Structs/input_absinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Evdev/Structs/input_absinfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/ClockID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/ClockID.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/SigEv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/SigEv.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Structs/SigEvThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Structs/SigEvThread.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Structs/SigEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Structs/SigEvent.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Structs/SigVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Structs/SigVal.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Structs/TimeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Structs/TimeSpec.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Structs/TimerSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Structs/TimerSpec.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/TimerFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/TimerFlag.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Timers/Timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Timers/Timers.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Xorg/XLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Xorg/XLib.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Xorg/XRRMonitorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Xorg/XRRMonitorInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Linux/Xorg/XRandr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Linux/Xorg/XRandr.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Generic/CGEventTapLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Generic/CGEventTapLocation.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Generic/CGEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Generic/CGEventType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Generic/CGPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Generic/CGPoint.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Generic/CGRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Generic/CGRect.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Generic/CGSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Generic/CGSize.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Input/CGKeyCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Input/CGKeyCode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/Input/CGMouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/Input/CGMouseButton.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OSX/OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OSX/OSX.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/OpenTabletDriver.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/OpenTabletDriver.Native.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_ACTION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_ACTION.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_EVENT_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_EVENT_DATA.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER_FLAG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER_FLAG.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CM_NOTIFY_FILTER_TYPE.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/CR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/CR.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CM/SafeCmNotificationHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CM/SafeCmNotificationHandle.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/CfgMgr32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/CfgMgr32.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Display/DevMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Display/DevMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Display/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Display/DisplayInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Display/DpiType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Display/DpiType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Display/MONITORINFOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Display/MONITORINFOF.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Display/MonitorInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Display/MonitorInfoEx.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Generic/POINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Generic/POINT.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Generic/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Generic/Rect.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Generic/SafeFileHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Generic/SafeFileHandle.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/HARDWAREINPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/HARDWAREINPUT.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/INPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/INPUT.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/InputUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/InputUnion.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/KEYBDINPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/KEYBDINPUT.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/KEYEVENTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/KEYEVENTF.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/KEYSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/KEYSTATE.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/MOUSEEVENTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/MOUSEEVENTF.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/MOUSEINPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/MOUSEINPUT.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/VK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/VK.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/VirtualKeyStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/VirtualKeyStates.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Input/XBUTTON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Input/XBUTTON.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/SetupApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/SetupApi.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/SetupApiStructs/SP_DEVICE_INTERFACE_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/SetupApiStructs/SP_DEVICE_INTERFACE_DATA.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/SetupApiStructs/SP_DEVICE_INTERFACE_DETAIL_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/SetupApiStructs/SP_DEVICE_INTERFACE_DETAIL_DATA.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Timers/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Timers/EventType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Timers/TimeCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Timers/TimeCaps.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/DIGCF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/DIGCF.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/DescriptorHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/DescriptorHeader.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/DescriptorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/DescriptorType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/DeviceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/DeviceDescriptor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/InterfaceDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/InterfaceDescriptor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/PipeDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/PipeDirection.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/PipeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/PipeInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/PipeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/PipeType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/RequestDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/RequestDirection.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/RequestInternalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/RequestInternalType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/RequestRecipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/RequestRecipient.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/RequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/RequestType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/SafeWinUsbInterfaceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/SafeWinUsbInterfaceHandle.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/SetupPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/SetupPacket.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/StandardRequestCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/StandardRequestCode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/USB/StringDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/USB/StringDescriptor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/WinUSB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/WinUSB.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Native/Windows/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Native/Windows/Windows.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Area.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Area.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/ActionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/ActionAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/BooleanPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/BooleanPropertyAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/BuildDateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/BuildDateAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/DefaultPropertyValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/DefaultPropertyValueAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/DeviceHubAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/DeviceHubAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/ModifierAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/ModifierAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/PluginIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/PluginIgnoreAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/PluginNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/PluginNameAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/PropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/PropertyAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/PropertyValidatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/PropertyValidatedAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/SliderPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/SliderPropertyAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/SupportedPlatformAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/SupportedPlatformAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/TabletReferenceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/TabletReferenceAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/ToolTipAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/ToolTipAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Attributes/UnitAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Attributes/UnitAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Components/ICompositeDeviceHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Components/ICompositeDeviceHub.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Components/IDeviceConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Components/IDeviceConfigurationProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Components/IDeviceHubsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Components/IDeviceHubsProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Components/IReportParserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Components/IReportParserProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/DependencyInjection/OnDependencyLoadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/DependencyInjection/OnDependencyLoadAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/DependencyInjection/ResolvedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/DependencyInjection/ResolvedAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Devices/DevicesChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Devices/DevicesChangedEventArgs.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Devices/IDeviceEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Devices/IDeviceEndpoint.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Devices/IDeviceEndpointStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Devices/IDeviceEndpointStream.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Devices/IDeviceHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Devices/IDeviceHub.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Devices/SerializedDeviceEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Devices/SerializedDeviceEndpoint.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/HPETDeltaStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/HPETDeltaStopwatch.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/IBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/IBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/IDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/IDriver.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/IStateBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/IStateBinding.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/ITimer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/ITool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/ITool.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Log.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/LogLevel.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Logging/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Logging/LogMessage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/OpenTabletDriver.Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/OpenTabletDriver.Plugin.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/AbsoluteOutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/AbsoluteOutputMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/AsyncPositionedPipelineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/AsyncPositionedPipelineElement.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/IOutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/IOutputMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/IPipelineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/IPipelineElement.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/IPointerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/IPointerProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/IPositionedPipelineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/IPositionedPipelineElement.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/OutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/OutputMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/PipelineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/PipelineManager.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/PipelinePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/PipelinePosition.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Output/RelativeOutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Output/RelativeOutputMode.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Display/IDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Display/IDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Display/IVirtualScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Display/IVirtualScreen.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Keyboard/IVirtualKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Keyboard/IVirtualKeyboard.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IAbsolutePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IAbsolutePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IEraserHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IEraserHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IHoverDistanceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IHoverDistanceHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IMouseButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IMouseButtonHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IPressureHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IPressureHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IProximityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IProximityHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/IRelativePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/IRelativePointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/ISynchronousPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/ISynchronousPointer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/ITiltHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/ITiltHandler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Platform/Pointer/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Platform/Pointer/MouseButton.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/PluginPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/PluginPlatform.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/AuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/AuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/AuxReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/AuxReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/ButtonSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/ButtonSpecifications.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/ByteExtensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/DetectionRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/DetectionRange.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/DeviceIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/DeviceIdentifier.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/DeviceReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/DeviceReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/DeviceVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/DeviceVendor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/DigitizerSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/DigitizerSpecifications.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IAbsolutePositionReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IAbsolutePositionReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IAreaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IAreaConverter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IAuxReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IAuxReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IDeviceReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IDeviceReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IEraserReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IEraserReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IMouseReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IMouseReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IProximityReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IProximityReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/ITabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/ITabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/ITiltReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/ITiltReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/IToolReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/IToolReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/OutOfRangeReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/OutOfRangeReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/PassthroughReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/PassthroughReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/PenSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/PenSpecifications.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TabletConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TabletConfiguration.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TabletReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TabletReference.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TabletReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TabletReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TabletSpecifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TabletSpecifications.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TiltTabletReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TiltTabletReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/TiltTabletReportParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/TiltTabletReportParser.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/ToolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/ToolType.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/Touch/ITouchReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/Touch/ITouchReport.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Plugin/Tablet/Touch/TouchPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Plugin/Tablet/Touch/TouchPoint.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/ConfigurationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/ConfigurationTest.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/DetectionRangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/DetectionRangeTest.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/OpenTabletDriver.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/OpenTabletDriver.Tests.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/PluginMetadataTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/PluginMetadataTest.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/ReportParserProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/ReportParserProviderTest.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/StrictServiceCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/StrictServiceCollectionTest.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/TimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/TimerTests.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tests/UpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tests/UpdaterTests.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tools.udev/Comparers/IdentifierComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tools.udev/Comparers/IdentifierComparer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tools.udev/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tools.udev/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tools.udev/OpenTabletDriver.Tools.udev.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tools.udev/OpenTabletDriver.Tools.udev.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.Tools.udev/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tools.udev/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Tools.udev/RuleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Tools.udev/RuleGenerator.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX.Gtk/OpenTabletDriver.UX.Gtk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.Gtk/OpenTabletDriver.UX.Gtk.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.UX.Gtk/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.Gtk/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX.MacOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.MacOS/Icon.icns -------------------------------------------------------------------------------- /OpenTabletDriver.UX.MacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.MacOS/Info.plist -------------------------------------------------------------------------------- /OpenTabletDriver.UX.MacOS/OpenTabletDriver.UX.MacOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.MacOS/OpenTabletDriver.UX.MacOS.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.UX.MacOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.MacOS/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX.Wpf/OpenTabletDriver.UX.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.Wpf/OpenTabletDriver.UX.Wpf.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.UX.Wpf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX.Wpf/Program.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/App.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Assets/otd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Assets/otd.ico -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Assets/otd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Assets/otd.png -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Attributes/PageNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Attributes/PageNameAttribute.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/ChildDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/ChildDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/BindingDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/BindingDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Bindings/AuxiliaryBindingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Bindings/AuxiliaryBindingEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Bindings/BindingDisplayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Bindings/BindingDisplayList.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Bindings/BindingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Bindings/BindingEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Bindings/MouseBindingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Bindings/MouseBindingEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Bindings/PenBindingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Bindings/PenBindingEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/ControlPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/ControlPanel.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/GeneratedControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/GeneratedControls.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Dictionary/DictionaryEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Dictionary/DictionaryEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Dictionary/StringDictionaryEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Dictionary/StringDictionaryEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/DropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/DropDown.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/FloatSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/FloatSlider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/GeneratedItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/GeneratedItemList.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Group.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/InputBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/ListBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/ModifiableConstructableItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/ModifiableConstructableItemList.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/ModifiableItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/ModifiableItemList.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/PaddingSpacerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/PaddingSpacerItem.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Reflection/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Reflection/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Reflection/TypeDropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Reflection/TypeDropDown.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Reflection/TypeListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Reflection/TypeListBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/ScheduledDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/ScheduledDrawable.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/StackView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/StackView.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/StackedContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/StackedContent.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/StylizedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/StylizedText.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/DoubleNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/DoubleNumberBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/FloatNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/FloatNumberBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/HexByteArrayBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/HexByteArrayBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/HexNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/HexNumberBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/IntegerNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/IntegerNumberBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/Providers/MaskedTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/Providers/MaskedTextProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/Providers/NumberTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/Providers/NumberTextProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/Providers/RegexTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/Providers/RegexTextProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/Text/UnsignedIntegerNumberBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/Text/UnsignedIntegerNumberBox.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Generic/TextContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Generic/TextContent.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/LogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/LogView.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/AbsoluteModeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/AbsoluteModeEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/Area/AreaControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/Area/AreaControl.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/Area/AreaDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/Area/AreaDisplay.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/Area/AreaEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/Area/AreaEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/Area/RotationAreaEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/Area/RotationAreaEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/Area/UnitGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/Area/UnitGroup.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/OutputModeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/OutputModeEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Output/RelativeModeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Output/RelativeModeEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Placeholder.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/PluginSettingStoreCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/PluginSettingStoreCollectionEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/PluginSettingStoreEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/PluginSettingStoreEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/TabletSwitcherPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/TabletSwitcherPanel.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Utilities/ActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Utilities/ActionCommand.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Controls/Utilities/BooleanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Controls/Utilities/BooleanCommand.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/DaemonWatchdog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/DaemonWatchdog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/DesktopForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/DesktopForm.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Dialogs/RepositoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Dialogs/RepositoryDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/IViewModelRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/IViewModelRoot.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/MainForm.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/OpenTabletDriver.UX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/OpenTabletDriver.UX.csproj -------------------------------------------------------------------------------- /OpenTabletDriver.UX/RPC/DaemonRpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/RPC/DaemonRpcClient.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Tools/CompositionScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Tools/CompositionScheduler.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Tools/EnumTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Tools/EnumTools.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Tools/LogDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Tools/LogDataStore.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Tools/ParseTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Tools/ParseTools.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Tools/ReportFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Tools/ReportFormatter.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/TrayIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/TrayIcon.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/AreaConverterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/AreaConverterDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Bindings/AdvancedBindingEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Bindings/AdvancedBindingEditorDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Bindings/BindingEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Bindings/BindingEditorDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/ConfigurationEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/ConfigurationEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/DeviceIdentifierEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/DeviceIdentifierEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/ButtonSpecificationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/ButtonSpecificationsEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/DigitizerSpecificationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/DigitizerSpecificationsEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/PenSpecificationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/PenSpecificationsEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/SpecificationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/SpecificationsEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/TabletSpecificationsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Configurations/Controls/Specifications/TabletSpecificationsEditor.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/DeviceListDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/DeviceListDialog.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/DeviceStringReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/DeviceStringReader.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/AreaEditorPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/AreaEditorPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/BindingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/BindingPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/FAQPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/FAQPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/PluginPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/PluginPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/SystemTrayPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/SystemTrayPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/Pages/WelcomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/Pages/WelcomePage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Greeter/StartupGreeterWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Greeter/StartupGreeterWindow.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Plugins/MetadataViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Plugins/MetadataViewer.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Plugins/PluginDropPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Plugins/PluginDropPanel.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Plugins/PluginManagerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Plugins/PluginManagerWindow.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Plugins/PluginMetadataList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Plugins/PluginMetadataList.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/StylizedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/StylizedPage.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Tablet/TabletDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Tablet/TabletDebugger.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/Updater/UpdaterWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/Updater/UpdaterWindow.cs -------------------------------------------------------------------------------- /OpenTabletDriver.UX/Windows/WindowSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.UX/Windows/WindowSingleton.cs -------------------------------------------------------------------------------- /OpenTabletDriver.Windows.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.Windows.slnf -------------------------------------------------------------------------------- /OpenTabletDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver.sln -------------------------------------------------------------------------------- /OpenTabletDriver/ComponentProviders/DeviceHubsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/ComponentProviders/DeviceHubsProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/DeviceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/DeviceReader.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/HidSharpBackend/HidSharpDeviceRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/HidSharpBackend/HidSharpDeviceRoot.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/HidSharpBackend/HidSharpEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/HidSharpBackend/HidSharpEndpoint.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/HidSharpBackend/HidSharpEndpointStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/HidSharpBackend/HidSharpEndpointStream.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/RootHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/RootHub.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/WinUSB/WinUSBInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/WinUSB/WinUSBInterface.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/WinUSB/WinUSBInterfaceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/WinUSB/WinUSBInterfaceStream.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/WinUSB/WinUSBRootHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/WinUSB/WinUSBRootHub.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Devices/WinUSB/WindowsEnumerationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Devices/WinUSB/WindowsEnumerationException.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Driver.cs -------------------------------------------------------------------------------- /OpenTabletDriver/DriverAlreadyBuiltException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/DriverAlreadyBuiltException.cs -------------------------------------------------------------------------------- /OpenTabletDriver/DriverBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/DriverBuilder.cs -------------------------------------------------------------------------------- /OpenTabletDriver/DriverServiceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/DriverServiceCollection.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Extensions.cs -------------------------------------------------------------------------------- /OpenTabletDriver/InputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/InputDevice.cs -------------------------------------------------------------------------------- /OpenTabletDriver/InputDeviceTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/InputDeviceTree.cs -------------------------------------------------------------------------------- /OpenTabletDriver/InputDeviceTreeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/InputDeviceTreeList.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Instance.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Interop/SleepDetectionThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Interop/SleepDetectionThread.cs -------------------------------------------------------------------------------- /OpenTabletDriver/Interop/SystemInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/Interop/SystemInterop.cs -------------------------------------------------------------------------------- /OpenTabletDriver/OpenTabletDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/OpenTabletDriver.csproj -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/DriverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/DriverInfo.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/IDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/IDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/GaomonDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/GaomonDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/HuionDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/HuionDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/OpenTabletDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/OpenTabletDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/ProcessModuleQueryableDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/ProcessModuleQueryableDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/TabletDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/TabletDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/VeikkDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/VeikkDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/WacomDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/WacomDriverInfoProvider.cs -------------------------------------------------------------------------------- /OpenTabletDriver/SystemDrivers/Providers/XPPenDriverInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/OpenTabletDriver/SystemDrivers/Providers/XPPenDriverInfoProvider.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README_CN.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README_ES.md -------------------------------------------------------------------------------- /README_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README_FR.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/README_RU.md -------------------------------------------------------------------------------- /TABLETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/TABLETS.md -------------------------------------------------------------------------------- /docs/manpages/opentabletdriver.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/docs/manpages/opentabletdriver.8 -------------------------------------------------------------------------------- /generate-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/generate-rules.sh -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InfinityGhost/OpenTabletDriver/HEAD/nuget.config --------------------------------------------------------------------------------