├── .gitignore ├── App.config ├── Collections ├── IReadOnlyArray.cs ├── ListSet.cs ├── Pair.cs ├── ReadOnlyArray.cs └── RingCollection.cs ├── ConsoleUI ├── AssemblyInfo.cs ├── CommandLineOptions.cs ├── ComputerHardware.cs ├── ProgramReport.cs └── Utility.cs ├── External ├── Aga.Controls.dll ├── Aga.Controls │ ├── Aga.Controls.csproj │ ├── Aga.Controls.sln │ ├── BitmapHelper.cs │ ├── GifDecoder.cs │ ├── NumericTextBox.cs │ ├── PerformanceAnalyzer.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── ResourceHelper.cs │ ├── Resources │ │ ├── DVSplit.cur │ │ ├── Folder.bmp │ │ ├── FolderClosed.bmp │ │ ├── Leaf.bmp │ │ ├── check.bmp │ │ ├── loading_icon │ │ ├── minus.bmp │ │ ├── plus.bmp │ │ ├── uncheck.bmp │ │ └── unknown.bmp │ ├── StringCollectionEditor.cs │ ├── TextHelper.cs │ ├── Threading │ │ ├── AbortableThreadPool.cs │ │ ├── WorkItem.cs │ │ └── WorkItemStatus.cs │ ├── TimeCounter.cs │ ├── Tree │ │ ├── AutoRowHeightLayout.cs │ │ ├── ClassDiagram.cd │ │ ├── ColumnCollection.cs │ │ ├── DrawContext.cs │ │ ├── DropNodeValidatingEventArgs.cs │ │ ├── DropPosition.cs │ │ ├── EditorContext.cs │ │ ├── Enums.cs │ │ ├── FixedRowHeightLayout.cs │ │ ├── IRowLayout.cs │ │ ├── IToolTipProvider.cs │ │ ├── ITreeModel.cs │ │ ├── IncrementalSearch.cs │ │ ├── Input │ │ │ ├── ClickColumnState.cs │ │ │ ├── ColumnState.cs │ │ │ ├── InputState.cs │ │ │ ├── InputWithControl.cs │ │ │ ├── InputWithShift.cs │ │ │ ├── NormalInputState.cs │ │ │ ├── ReorderColumnState.cs │ │ │ └── ResizeColumnState.cs │ │ ├── ListModel.cs │ │ ├── NativeMethods.cs │ │ ├── Node.cs │ │ ├── NodeControlInfo.cs │ │ ├── NodeControls │ │ │ ├── BaseTextControl.cs │ │ │ ├── BindableControl.cs │ │ │ ├── ClassDiagram.cd │ │ │ ├── DrawEventArgs.cs │ │ │ ├── EditEventArgs.cs │ │ │ ├── EditableControl.cs │ │ │ ├── ExpandingIcon.cs │ │ │ ├── InteractiveControl.cs │ │ │ ├── LabelEventArgs.cs │ │ │ ├── NodeCheckBox.cs │ │ │ ├── NodeComboBox.cs │ │ │ ├── NodeControl.cs │ │ │ ├── NodeControlValueEventArgs.cs │ │ │ ├── NodeControlsCollection.cs │ │ │ ├── NodeDecimalTextBox.cs │ │ │ ├── NodeEventArgs.cs │ │ │ ├── NodeIcon.cs │ │ │ ├── NodeIntegerTextBox.cs │ │ │ ├── NodeNumericUpDown.cs │ │ │ ├── NodePlusMinus.cs │ │ │ ├── NodeStateIcon.cs │ │ │ └── NodeTextBox.cs │ │ ├── SortedTreeModel.cs │ │ ├── TreeColumn.cs │ │ ├── TreeColumnCollection.cs │ │ ├── TreeColumnEventArgs.cs │ │ ├── TreeListAdapter.cs │ │ ├── TreeModel.cs │ │ ├── TreeModelBase.cs │ │ ├── TreeModelEventArgs.cs │ │ ├── TreeNodeAdv.cs │ │ ├── TreeNodeAdvMouseEventArgs.cs │ │ ├── TreePath.cs │ │ ├── TreePathEventArgs.cs │ │ ├── TreeViewAdv.Designer.cs │ │ ├── TreeViewAdv.Draw.cs │ │ ├── TreeViewAdv.Editor.cs │ │ ├── TreeViewAdv.Input.cs │ │ ├── TreeViewAdv.Properties.cs │ │ ├── TreeViewAdv.cs │ │ ├── TreeViewAdv.resx │ │ ├── TreeViewAdvCancelEventArgs.cs │ │ ├── TreeViewAdvEventArgs.cs │ │ └── TreeViewRowDrawEventArgs.cs │ └── license.txt ├── OxyPlot.WindowsForms.dll ├── OxyPlot.dll ├── OxyPlot │ ├── GlobalAssemblyInfo.cs │ ├── OxyPlot.WindowsForms │ │ ├── GraphicsRenderContext.cs │ │ ├── HashSet.cs │ │ ├── Helpers │ │ │ └── ConverterExtensions.cs │ │ ├── NamespaceDoc.cs │ │ ├── OxyPlot.WindowsForms.csproj │ │ ├── Plot.cs │ │ ├── PlotControl.cs │ │ ├── PngExporter.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OxyPlot.sln │ └── OxyPlot │ │ ├── Annotations │ │ ├── Annotation.cs │ │ ├── AnnotationLayer.cs │ │ ├── ArrowAnnotation.cs │ │ ├── EllipseAnnotation.cs │ │ ├── ImageAnnotation.cs │ │ ├── LineAnnotation.cs │ │ ├── LineAnnotationType.cs │ │ ├── PolygonAnnotation.cs │ │ ├── RectangleAnnotation.cs │ │ ├── TextAnnotation.cs │ │ ├── TextualAnnotation.cs │ │ └── TileMapAnnotation.cs │ │ ├── Axes │ │ ├── AngleAxis.cs │ │ ├── Axis.cs │ │ ├── AxisChangeTypes.cs │ │ ├── AxisChangedEventArgs.cs │ │ ├── AxisLayer.cs │ │ ├── AxisPosition.cs │ │ ├── CategoryAxis.cs │ │ ├── ColorAxis.cs │ │ ├── DateTimeAxis.cs │ │ ├── DateTimeIntervalType.cs │ │ ├── LinearAxis.cs │ │ ├── LogarithmicAxis.cs │ │ ├── MagnitudeAxis.cs │ │ ├── RangeAxis.cs │ │ ├── TickStyle.cs │ │ ├── TimeAxis.cs │ │ └── TimeSpanAxis.cs │ │ ├── ClassDiagrams │ │ ├── PlotModel.cd │ │ ├── Reporting.cd │ │ └── Series.cd │ │ ├── Foundation │ │ ├── ArrayHelper.cs │ │ ├── CanonicalSplineHelper.cs │ │ ├── CodeGenerator │ │ │ ├── CodeGenerationAttribute.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── CodeGeneratorStringExtensions.cs │ │ │ └── ICodeGenerating.cs │ │ ├── CohenSutherlandClipping.cs │ │ ├── Color.cs │ │ ├── Colors.cs │ │ ├── Conrec.cs │ │ ├── DataPoint.cs │ │ ├── DataPointConverter.cs │ │ ├── DoubleExtensions.cs │ │ ├── FontWeights.cs │ │ ├── FractionHelper.cs │ │ ├── HorizontalAlignment.cs │ │ ├── IDataPoint.cs │ │ ├── IDataPointProvider.cs │ │ ├── LineStyle.cs │ │ ├── LineStyleHelper.cs │ │ ├── ListFiller.cs │ │ ├── MarkerType.cs │ │ ├── OxyColor.cs │ │ ├── OxyColorConverter.cs │ │ ├── OxyColors.cs │ │ ├── OxyImage.cs │ │ ├── OxyPalette.cs │ │ ├── OxyPalettes.cs │ │ ├── OxyPen.cs │ │ ├── OxyPenLineJoin.cs │ │ ├── OxyRect.cs │ │ ├── OxySize.cs │ │ ├── OxyThickness.cs │ │ ├── Pen.cs │ │ ├── PlotLength.cs │ │ ├── PlotLengthUnit.cs │ │ ├── PngEncoder.cs │ │ ├── Point.cs │ │ ├── Rectangle.cs │ │ ├── ReflectionHelper.cs │ │ ├── ScreenPoint.cs │ │ ├── ScreenPointHelper.cs │ │ ├── ScreenVector.cs │ │ ├── Size.cs │ │ ├── StreamExtensions.cs │ │ ├── StringHelper.cs │ │ ├── SutherlandHodgmanClipping.cs │ │ ├── VerticalAlignment.cs │ │ └── XmlWriterBase.cs │ │ ├── LibraryDoc.cs │ │ ├── LinqBridge.cs │ │ ├── Manipulators │ │ ├── CursorType.cs │ │ ├── IPlotControl.cs │ │ ├── ManipulationEventArgs.cs │ │ ├── ManipulatorBase.cs │ │ ├── PanManipulator.cs │ │ ├── ResetManipulator.cs │ │ ├── TrackerHitResult.cs │ │ ├── TrackerManipulator.cs │ │ ├── ZoomManipulator.cs │ │ ├── ZoomRectangleManipulator.cs │ │ └── ZoomStepManipulator.cs │ │ ├── MouseActions │ │ ├── MouseAction.cs │ │ └── SliderAction.cs │ │ ├── NamespaceDoc.cs │ │ ├── OxyPlot.csproj │ │ ├── PlotModel │ │ ├── HitTestResult.cs │ │ ├── OxyMouseButton.cs │ │ ├── OxyMouseEventArgs.cs │ │ ├── PlotElement.cs │ │ ├── PlotModel.Legends.cs │ │ ├── PlotModel.MouseEvents.cs │ │ ├── PlotModel.Rendering.cs │ │ ├── PlotModel.cs │ │ ├── SelectablePlotElement.cs │ │ └── UIPlotElement.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Render │ │ ├── AngleAxisRenderer.cs │ │ ├── AxisRenderer.cs │ │ ├── AxisRendererBase.cs │ │ ├── HorizontalAndVerticalAxisRenderer.cs │ │ ├── IRenderContext.cs │ │ ├── MagnitudeAxisRenderer.cs │ │ ├── MathRenderingExtensions.cs │ │ ├── PlotRenderer.cs │ │ ├── RenderContextBase.cs │ │ ├── RenderingExtensions.cs │ │ └── VerticalAxisRenderer.cs │ │ ├── Reporting │ │ ├── NamespaceDoc.cs │ │ ├── Report │ │ │ ├── Content.cs │ │ │ ├── Drawing.cs │ │ │ ├── DrawingFigure.cs │ │ │ ├── Equation.cs │ │ │ ├── Figure.cs │ │ │ ├── Header.cs │ │ │ ├── HeaderHelper.cs │ │ │ ├── Image.cs │ │ │ ├── ItemsTable.cs │ │ │ ├── ItemsTableField.cs │ │ │ ├── Paragraph.cs │ │ │ ├── ParagraphStyle.cs │ │ │ ├── Plot.cs │ │ │ ├── PlotFigure.cs │ │ │ ├── PropertyTable.cs │ │ │ ├── Report.cs │ │ │ ├── ReportItem.cs │ │ │ ├── ReportSection.cs │ │ │ ├── ReportStyle.cs │ │ │ ├── Table.cs │ │ │ ├── TableColumn.cs │ │ │ └── TableOfContents.cs │ │ └── ReportWriters │ │ │ ├── HtmlReportWriter.cs │ │ │ ├── IReportWriter.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── TextReportWriter.cs │ │ │ └── WikiReportWriter.cs │ │ ├── Series │ │ ├── AreaSeries.cs │ │ ├── BarSeries │ │ │ ├── BarItem.cs │ │ │ ├── BarItemBase.cs │ │ │ ├── BarSeries.cs │ │ │ ├── BarSeriesBase.cs │ │ │ ├── BarSeriesBase{T}.cs │ │ │ ├── CategorizedItem.cs │ │ │ ├── CategorizedSeries.cs │ │ │ ├── ColumnItem.cs │ │ │ ├── ColumnSeries.cs │ │ │ ├── ErrorColumnItem.cs │ │ │ ├── ErrorColumnSeries.cs │ │ │ ├── IStackableSeries.cs │ │ │ ├── IntervalBarItem.cs │ │ │ ├── IntervalBarSeries.cs │ │ │ ├── LabelPlacement.cs │ │ │ ├── RectangleBarItem.cs │ │ │ ├── RectangleBarSeries.cs │ │ │ ├── TornadoBarItem.cs │ │ │ └── TornadoBarSeries.cs │ │ ├── BoxPlotItem.cs │ │ ├── BoxPlotSeries.cs │ │ ├── CandleStickSeries.cs │ │ ├── ContourSeries.cs │ │ ├── DataPointSeries.cs │ │ ├── FunctionSeries.cs │ │ ├── HeatMapSeries.cs │ │ ├── HighLowItem.cs │ │ ├── HighLowSeries.cs │ │ ├── ITrackableSeries.cs │ │ ├── ItemsSeries.cs │ │ ├── LineLegendPosition.cs │ │ ├── LineSeries.cs │ │ ├── PieSeries.cs │ │ ├── PieSlice.cs │ │ ├── PlotSeriesBase.cs │ │ ├── ScatterPoint.cs │ │ ├── ScatterSeries.cs │ │ ├── Series.cs │ │ ├── StairStepSeries.cs │ │ ├── StemSeries.cs │ │ ├── TwoColorLineSeries.cs │ │ └── XYAxisSeries.cs │ │ └── Svg │ │ ├── NativeMethods.cs │ │ ├── SvgExporter.cs │ │ ├── SvgRenderContext.cs │ │ └── SvgWriter.cs └── WinRing0 │ ├── COPYRIGHT.txt │ ├── MAKEFILE │ ├── OlsIoctl.h │ ├── OpenLibSys.c │ ├── OpenLibSys.h │ ├── OpenLibSys.rc │ └── SOURCES ├── GUI ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── CrashForm.Designer.cs ├── CrashForm.cs ├── CrashForm.resx ├── Gadget.cs ├── GadgetWindow.cs ├── HardwareNode.cs ├── HardwareTypeImage.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Node.cs ├── NotifyIconAdv.cs ├── ParameterForm.Designer.cs ├── ParameterForm.cs ├── ParameterForm.resx ├── PlotPanel.cs ├── PortForm.Designer.cs ├── PortForm.cs ├── PortForm.resx ├── ReportForm.Designer.cs ├── ReportForm.cs ├── ReportForm.resx ├── SensorGadget.cs ├── SensorNode.cs ├── SensorNotifyIcon.cs ├── ShowDesktop.cs ├── SplitContainerAdv.cs ├── StartupManager.cs ├── SystemTray.cs ├── TaskScheduler.cs ├── TreeModel.cs ├── TypeNode.cs ├── UnitManager.cs ├── UpdateVisitor.cs ├── UserOption.cs └── UserRadioGroup.cs ├── Hardware ├── ATI │ ├── ADL.cs │ ├── ATIGPU.cs │ └── ATIGroup.cs ├── CPU │ ├── AMD0FCPU.cs │ ├── AMD10CPU.cs │ ├── AMD17CPU.cs │ ├── AMDCPU.cs │ ├── CPUGroup.cs │ ├── CPUID.cs │ ├── CPULoad.cs │ ├── GenericCPU.cs │ └── IntelCPU.cs ├── Computer.cs ├── Control.cs ├── FirmwareTable.cs ├── HDD │ ├── AbstractHarddrive.cs │ ├── DebugSmart.cs │ ├── DriveAttributeValue.cs │ ├── DriveThresholdValue.cs │ ├── HDDGeneric.cs │ ├── HarddriveGroup.cs │ ├── ISmart.cs │ ├── NamePrefixAttribute.cs │ ├── RequireSmartAttribute.cs │ ├── SSDIndilinx.cs │ ├── SSDIntel.cs │ ├── SSDMicron.cs │ ├── SSDPlextor.cs │ ├── SSDSamsung.cs │ ├── SSDSandforce.cs │ ├── SmartAttribute.cs │ ├── SmartNames.cs │ └── WindowsSmart.cs ├── Hardware.cs ├── Heatmaster │ ├── Heatmaster.cs │ └── HeatmasterGroup.cs ├── HexStringArray.cs ├── IComputer.cs ├── IControl.cs ├── IElement.cs ├── IGroup.cs ├── IHardware.cs ├── IOControlCode.cs ├── IParameter.cs ├── ISensor.cs ├── ISettings.cs ├── IVisitor.cs ├── Identifier.cs ├── KernelDriver.cs ├── LPC │ ├── Chip.cs │ ├── F718XX.cs │ ├── ISuperIO.cs │ ├── IT87XX.cs │ ├── LMSensors.cs │ ├── LPCIO.cs │ ├── LPCPort.cs │ ├── NCT677X.cs │ └── W836XX.cs ├── Mainboard │ ├── GigabyteTAMG.cs │ ├── Identification.cs │ ├── Mainboard.cs │ ├── MainboardGroup.cs │ ├── Manufacturer.cs │ ├── Model.cs │ └── SuperIOHardware.cs ├── Nvidia │ ├── NVAPI.cs │ ├── NVML.cs │ ├── NvidiaGPU.cs │ └── NvidiaGroup.cs ├── Opcode.cs ├── OperatingSystem.cs ├── PInvokeDelegateFactory.cs ├── Parameter.cs ├── RAM │ ├── GenericRAM.cs │ └── RAMGroup.cs ├── Ring0.cs ├── SMBIOS.cs ├── Sensor.cs ├── SensorVisitor.cs ├── TBalancer │ ├── FTD2XX.cs │ ├── TBalancer.cs │ └── TBalancerGroup.cs ├── ThreadAffinity.cs ├── WinRing0.sys └── WinRing0x64.sys ├── Licenses └── License.html ├── OpenHardwareMonitor.csproj ├── OpenHardwareMonitor.sln ├── OpenHardwareMonitorLib.csproj ├── OpenHardwareMonitorReport.csproj ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── AssemblyLibInfo.cs └── AssemblyVersion.cs ├── README.md ├── Resources ├── Web │ ├── css │ │ ├── custom-theme │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.8.16.custom.css │ │ ├── jquery.treeTable.css │ │ └── ohm_web.css │ ├── images │ │ ├── toggle-collapse-dark.png │ │ ├── toggle-collapse-light.png │ │ ├── toggle-expand-dark.png │ │ ├── toggle-expand-light.png │ │ └── transparent.png │ ├── index.html │ └── js │ │ ├── jquery-1.7.2.js │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ ├── jquery.tmpl.js │ │ ├── jquery.tmpl.min.js │ │ ├── jquery.treeTable.min.js │ │ ├── knockout-2.1.0.js │ │ ├── knockout-2.1.0.min.js │ │ ├── knockout.mapping-latest.js │ │ ├── knockout.mapping-latest.min.js │ │ └── ohm_web.js ├── app.manifest ├── ati.png ├── barback.png ├── barblue.png ├── bigng.png ├── chip.png ├── clock.png ├── computer.png ├── control.png ├── cpu.png ├── data.png ├── factor.png ├── fan.png ├── flow.png ├── gadget.png ├── gadget.xcf ├── hdd.png ├── icon.ico ├── icon.xcf ├── level.png ├── load.png ├── mainboard.png ├── nvidia.png ├── power.png ├── ram.png ├── smallicon.ico ├── temperature.png ├── throughput.png └── voltage.png ├── Utilities ├── EmbeddedResources.cs ├── HttpServer.cs ├── HttpUtility.cs ├── IconFactory.cs ├── Logger.cs └── PersistentSettings.cs ├── WMI ├── Hardware.cs ├── IWmiObject.cs ├── Sensor.cs └── WmiProvider.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/App.config -------------------------------------------------------------------------------- /Collections/IReadOnlyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Collections/IReadOnlyArray.cs -------------------------------------------------------------------------------- /Collections/ListSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Collections/ListSet.cs -------------------------------------------------------------------------------- /Collections/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Collections/Pair.cs -------------------------------------------------------------------------------- /Collections/ReadOnlyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Collections/ReadOnlyArray.cs -------------------------------------------------------------------------------- /Collections/RingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Collections/RingCollection.cs -------------------------------------------------------------------------------- /ConsoleUI/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/ConsoleUI/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleUI/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/ConsoleUI/CommandLineOptions.cs -------------------------------------------------------------------------------- /ConsoleUI/ComputerHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/ConsoleUI/ComputerHardware.cs -------------------------------------------------------------------------------- /ConsoleUI/ProgramReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/ConsoleUI/ProgramReport.cs -------------------------------------------------------------------------------- /ConsoleUI/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/ConsoleUI/Utility.cs -------------------------------------------------------------------------------- /External/Aga.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls.dll -------------------------------------------------------------------------------- /External/Aga.Controls/Aga.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Aga.Controls.csproj -------------------------------------------------------------------------------- /External/Aga.Controls/Aga.Controls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Aga.Controls.sln -------------------------------------------------------------------------------- /External/Aga.Controls/BitmapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/BitmapHelper.cs -------------------------------------------------------------------------------- /External/Aga.Controls/GifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/GifDecoder.cs -------------------------------------------------------------------------------- /External/Aga.Controls/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/NumericTextBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/PerformanceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/PerformanceAnalyzer.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Properties/Resources.resx -------------------------------------------------------------------------------- /External/Aga.Controls/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/ResourceHelper.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/DVSplit.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/DVSplit.cur -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/Folder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/Folder.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/FolderClosed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/FolderClosed.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/Leaf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/Leaf.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/check.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/loading_icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/loading_icon -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/minus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/minus.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/plus.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/uncheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/uncheck.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/Resources/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Resources/unknown.bmp -------------------------------------------------------------------------------- /External/Aga.Controls/StringCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/StringCollectionEditor.cs -------------------------------------------------------------------------------- /External/Aga.Controls/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/TextHelper.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Threading/AbortableThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Threading/AbortableThreadPool.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Threading/WorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Threading/WorkItem.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Threading/WorkItemStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Threading/WorkItemStatus.cs -------------------------------------------------------------------------------- /External/Aga.Controls/TimeCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/TimeCounter.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/AutoRowHeightLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/AutoRowHeightLayout.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/ClassDiagram.cd -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/ColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/ColumnCollection.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/DrawContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/DrawContext.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/DropNodeValidatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/DropNodeValidatingEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/DropPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/DropPosition.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/EditorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/EditorContext.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Enums.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/FixedRowHeightLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/FixedRowHeightLayout.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/IRowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/IRowLayout.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/IToolTipProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/IToolTipProvider.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/ITreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/ITreeModel.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/IncrementalSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/IncrementalSearch.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/ClickColumnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/ClickColumnState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/ColumnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/ColumnState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/InputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/InputState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/InputWithControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/InputWithControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/InputWithShift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/InputWithShift.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/NormalInputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/NormalInputState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/ReorderColumnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/ReorderColumnState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Input/ResizeColumnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Input/ResizeColumnState.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/ListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/ListModel.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NativeMethods.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/Node.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControlInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControlInfo.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/BaseTextControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/BaseTextControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/BindableControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/BindableControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/ClassDiagram.cd -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/DrawEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/DrawEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/EditEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/EditEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/EditableControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/EditableControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/ExpandingIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/ExpandingIcon.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/InteractiveControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/InteractiveControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/LabelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/LabelEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeCheckBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeComboBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeControl.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeControlValueEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeControlValueEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeControlsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeControlsCollection.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeDecimalTextBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeIcon.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeIntegerTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeIntegerTextBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeNumericUpDown.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodePlusMinus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodePlusMinus.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeStateIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeStateIcon.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/NodeControls/NodeTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/NodeControls/NodeTextBox.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/SortedTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/SortedTreeModel.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeColumn.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeColumnCollection.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeColumnEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeColumnEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeListAdapter.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeModel.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeModelBase.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeModelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeModelEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeNodeAdv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeNodeAdv.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeNodeAdvMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeNodeAdvMouseEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreePath.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreePathEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreePathEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.Designer.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.Draw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.Draw.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.Editor.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.Input.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.Properties.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdv.resx -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdvCancelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdvCancelEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewAdvEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewAdvEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/Tree/TreeViewRowDrawEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/Tree/TreeViewRowDrawEventArgs.cs -------------------------------------------------------------------------------- /External/Aga.Controls/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/Aga.Controls/license.txt -------------------------------------------------------------------------------- /External/OxyPlot.WindowsForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot.WindowsForms.dll -------------------------------------------------------------------------------- /External/OxyPlot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot.dll -------------------------------------------------------------------------------- /External/OxyPlot/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/GraphicsRenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/GraphicsRenderContext.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/HashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/HashSet.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/Helpers/ConverterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/Helpers/ConverterExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/NamespaceDoc.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/OxyPlot.WindowsForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/OxyPlot.WindowsForms.csproj -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/Plot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/Plot.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/PlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/PlotControl.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/PngExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/PngExporter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.WindowsForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.WindowsForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot.sln -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/Annotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/AnnotationLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/AnnotationLayer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/ArrowAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/ArrowAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/EllipseAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/EllipseAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/ImageAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/ImageAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/LineAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/LineAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/LineAnnotationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/LineAnnotationType.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/PolygonAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/PolygonAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/RectangleAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/RectangleAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/TextAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/TextAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/TextualAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/TextualAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Annotations/TileMapAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Annotations/TileMapAnnotation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/AngleAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/AngleAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/Axis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/Axis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/AxisChangeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/AxisChangeTypes.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/AxisChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/AxisChangedEventArgs.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/AxisLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/AxisLayer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/AxisPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/AxisPosition.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/CategoryAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/CategoryAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/ColorAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/ColorAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/DateTimeAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/DateTimeAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/DateTimeIntervalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/DateTimeIntervalType.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/LinearAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/LinearAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/LogarithmicAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/LogarithmicAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/MagnitudeAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/MagnitudeAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/RangeAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/RangeAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/TickStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/TickStyle.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/TimeAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/TimeAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Axes/TimeSpanAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Axes/TimeSpanAxis.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/ClassDiagrams/PlotModel.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/ClassDiagrams/PlotModel.cd -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/ClassDiagrams/Reporting.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/ClassDiagrams/Reporting.cd -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/ClassDiagrams/Series.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/ClassDiagrams/Series.cd -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ArrayHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CanonicalSplineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CanonicalSplineHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGenerationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGenerationAttribute.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGenerator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGeneratorStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CodeGenerator/CodeGeneratorStringExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CodeGenerator/ICodeGenerating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CodeGenerator/ICodeGenerating.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/CohenSutherlandClipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/CohenSutherlandClipping.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Color.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Colors.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Conrec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Conrec.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/DataPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/DataPoint.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/DataPointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/DataPointConverter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/DoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/DoubleExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/FontWeights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/FontWeights.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/FractionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/FractionHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/HorizontalAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/HorizontalAlignment.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/IDataPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/IDataPoint.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/IDataPointProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/IDataPointProvider.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/LineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/LineStyle.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/LineStyleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/LineStyleHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ListFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ListFiller.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/MarkerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/MarkerType.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyColor.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyColorConverter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyColors.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyImage.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyPalette.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyPalettes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyPalettes.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyPen.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyPenLineJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyPenLineJoin.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyRect.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxySize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxySize.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/OxyThickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/OxyThickness.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Pen.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/PlotLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/PlotLength.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/PlotLengthUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/PlotLengthUnit.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/PngEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/PngEncoder.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Point.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Rectangle.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ReflectionHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ScreenPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ScreenPoint.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ScreenPointHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ScreenPointHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/ScreenVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/ScreenVector.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/Size.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/StreamExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/StringHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/SutherlandHodgmanClipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/SutherlandHodgmanClipping.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/VerticalAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/VerticalAlignment.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Foundation/XmlWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Foundation/XmlWriterBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/LibraryDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/LibraryDoc.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/LinqBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/LinqBridge.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/CursorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/CursorType.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/IPlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/IPlotControl.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ManipulationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ManipulationEventArgs.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ManipulatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ManipulatorBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/PanManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/PanManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ResetManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ResetManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/TrackerHitResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/TrackerHitResult.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/TrackerManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/TrackerManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ZoomManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ZoomManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ZoomRectangleManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ZoomRectangleManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Manipulators/ZoomStepManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Manipulators/ZoomStepManipulator.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/MouseActions/MouseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/MouseActions/MouseAction.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/MouseActions/SliderAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/MouseActions/SliderAction.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/NamespaceDoc.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/OxyPlot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/OxyPlot.csproj -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/HitTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/HitTestResult.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/OxyMouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/OxyMouseButton.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/OxyMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/OxyMouseEventArgs.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/PlotElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/PlotElement.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/PlotModel.Legends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/PlotModel.Legends.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/PlotModel.MouseEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/PlotModel.MouseEvents.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/PlotModel.Rendering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/PlotModel.Rendering.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/PlotModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/PlotModel.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/SelectablePlotElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/SelectablePlotElement.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/PlotModel/UIPlotElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/PlotModel/UIPlotElement.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/AngleAxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/AngleAxisRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/AxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/AxisRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/AxisRendererBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/AxisRendererBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/HorizontalAndVerticalAxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/HorizontalAndVerticalAxisRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/IRenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/IRenderContext.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/MagnitudeAxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/MagnitudeAxisRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/MathRenderingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/MathRenderingExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/PlotRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/PlotRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/RenderContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/RenderContextBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/RenderingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/RenderingExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Render/VerticalAxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Render/VerticalAxisRenderer.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/NamespaceDoc.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Content.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Drawing.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/DrawingFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/DrawingFigure.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Equation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Equation.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Figure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Figure.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Header.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/HeaderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/HeaderHelper.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Image.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ItemsTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ItemsTable.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ItemsTableField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ItemsTableField.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Paragraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Paragraph.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ParagraphStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ParagraphStyle.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Plot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Plot.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/PlotFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/PlotFigure.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/PropertyTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/PropertyTable.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Report.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ReportItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ReportItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ReportSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ReportSection.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/ReportStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/ReportStyle.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/Table.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/TableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/TableColumn.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/Report/TableOfContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/Report/TableOfContents.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/ReportWriters/HtmlReportWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/ReportWriters/HtmlReportWriter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/ReportWriters/IReportWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/ReportWriters/IReportWriter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/ReportWriters/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/ReportWriters/StringExtensions.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/ReportWriters/TextReportWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/ReportWriters/TextReportWriter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Reporting/ReportWriters/WikiReportWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Reporting/ReportWriters/WikiReportWriter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/AreaSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/AreaSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/BarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/BarItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/BarItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/BarItemBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/BarSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/BarSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/BarSeriesBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/BarSeriesBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/BarSeriesBase{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/BarSeriesBase{T}.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/CategorizedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/CategorizedItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/CategorizedSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/CategorizedSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/ColumnItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/ColumnItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/ColumnSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/ColumnSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/ErrorColumnItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/ErrorColumnItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/ErrorColumnSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/ErrorColumnSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/IStackableSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/IStackableSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/IntervalBarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/IntervalBarItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/IntervalBarSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/IntervalBarSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/LabelPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/LabelPlacement.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/RectangleBarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/RectangleBarItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/RectangleBarSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/RectangleBarSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/TornadoBarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/TornadoBarItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BarSeries/TornadoBarSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BarSeries/TornadoBarSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BoxPlotItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BoxPlotItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/BoxPlotSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/BoxPlotSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/CandleStickSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/CandleStickSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/ContourSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/ContourSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/DataPointSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/DataPointSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/FunctionSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/FunctionSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/HeatMapSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/HeatMapSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/HighLowItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/HighLowItem.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/HighLowSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/HighLowSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/ITrackableSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/ITrackableSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/ItemsSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/ItemsSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/LineLegendPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/LineLegendPosition.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/LineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/LineSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/PieSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/PieSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/PieSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/PieSlice.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/PlotSeriesBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/PlotSeriesBase.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/ScatterPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/ScatterPoint.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/ScatterSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/ScatterSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/Series.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/Series.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/StairStepSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/StairStepSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/StemSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/StemSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/TwoColorLineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/TwoColorLineSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Series/XYAxisSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Series/XYAxisSeries.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Svg/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Svg/NativeMethods.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Svg/SvgExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Svg/SvgExporter.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Svg/SvgRenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Svg/SvgRenderContext.cs -------------------------------------------------------------------------------- /External/OxyPlot/OxyPlot/Svg/SvgWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/OxyPlot/OxyPlot/Svg/SvgWriter.cs -------------------------------------------------------------------------------- /External/WinRing0/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/COPYRIGHT.txt -------------------------------------------------------------------------------- /External/WinRing0/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/MAKEFILE -------------------------------------------------------------------------------- /External/WinRing0/OlsIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/OlsIoctl.h -------------------------------------------------------------------------------- /External/WinRing0/OpenLibSys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/OpenLibSys.c -------------------------------------------------------------------------------- /External/WinRing0/OpenLibSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/OpenLibSys.h -------------------------------------------------------------------------------- /External/WinRing0/OpenLibSys.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/OpenLibSys.rc -------------------------------------------------------------------------------- /External/WinRing0/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/External/WinRing0/SOURCES -------------------------------------------------------------------------------- /GUI/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/AboutBox.Designer.cs -------------------------------------------------------------------------------- /GUI/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/AboutBox.cs -------------------------------------------------------------------------------- /GUI/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/AboutBox.resx -------------------------------------------------------------------------------- /GUI/CrashForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/CrashForm.Designer.cs -------------------------------------------------------------------------------- /GUI/CrashForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/CrashForm.cs -------------------------------------------------------------------------------- /GUI/CrashForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/CrashForm.resx -------------------------------------------------------------------------------- /GUI/Gadget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/Gadget.cs -------------------------------------------------------------------------------- /GUI/GadgetWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/GadgetWindow.cs -------------------------------------------------------------------------------- /GUI/HardwareNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/HardwareNode.cs -------------------------------------------------------------------------------- /GUI/HardwareTypeImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/HardwareTypeImage.cs -------------------------------------------------------------------------------- /GUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /GUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/MainForm.cs -------------------------------------------------------------------------------- /GUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/MainForm.resx -------------------------------------------------------------------------------- /GUI/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/Node.cs -------------------------------------------------------------------------------- /GUI/NotifyIconAdv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/NotifyIconAdv.cs -------------------------------------------------------------------------------- /GUI/ParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ParameterForm.Designer.cs -------------------------------------------------------------------------------- /GUI/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ParameterForm.cs -------------------------------------------------------------------------------- /GUI/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ParameterForm.resx -------------------------------------------------------------------------------- /GUI/PlotPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/PlotPanel.cs -------------------------------------------------------------------------------- /GUI/PortForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/PortForm.Designer.cs -------------------------------------------------------------------------------- /GUI/PortForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/PortForm.cs -------------------------------------------------------------------------------- /GUI/PortForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/PortForm.resx -------------------------------------------------------------------------------- /GUI/ReportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ReportForm.Designer.cs -------------------------------------------------------------------------------- /GUI/ReportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ReportForm.cs -------------------------------------------------------------------------------- /GUI/ReportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ReportForm.resx -------------------------------------------------------------------------------- /GUI/SensorGadget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/SensorGadget.cs -------------------------------------------------------------------------------- /GUI/SensorNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/SensorNode.cs -------------------------------------------------------------------------------- /GUI/SensorNotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/SensorNotifyIcon.cs -------------------------------------------------------------------------------- /GUI/ShowDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/ShowDesktop.cs -------------------------------------------------------------------------------- /GUI/SplitContainerAdv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/SplitContainerAdv.cs -------------------------------------------------------------------------------- /GUI/StartupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/StartupManager.cs -------------------------------------------------------------------------------- /GUI/SystemTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/SystemTray.cs -------------------------------------------------------------------------------- /GUI/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/TaskScheduler.cs -------------------------------------------------------------------------------- /GUI/TreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/TreeModel.cs -------------------------------------------------------------------------------- /GUI/TypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/TypeNode.cs -------------------------------------------------------------------------------- /GUI/UnitManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/UnitManager.cs -------------------------------------------------------------------------------- /GUI/UpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/UpdateVisitor.cs -------------------------------------------------------------------------------- /GUI/UserOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/UserOption.cs -------------------------------------------------------------------------------- /GUI/UserRadioGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/GUI/UserRadioGroup.cs -------------------------------------------------------------------------------- /Hardware/ATI/ADL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ATI/ADL.cs -------------------------------------------------------------------------------- /Hardware/ATI/ATIGPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ATI/ATIGPU.cs -------------------------------------------------------------------------------- /Hardware/ATI/ATIGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ATI/ATIGroup.cs -------------------------------------------------------------------------------- /Hardware/CPU/AMD0FCPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/AMD0FCPU.cs -------------------------------------------------------------------------------- /Hardware/CPU/AMD10CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/AMD10CPU.cs -------------------------------------------------------------------------------- /Hardware/CPU/AMD17CPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/AMD17CPU.cs -------------------------------------------------------------------------------- /Hardware/CPU/AMDCPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/AMDCPU.cs -------------------------------------------------------------------------------- /Hardware/CPU/CPUGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/CPUGroup.cs -------------------------------------------------------------------------------- /Hardware/CPU/CPUID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/CPUID.cs -------------------------------------------------------------------------------- /Hardware/CPU/CPULoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/CPULoad.cs -------------------------------------------------------------------------------- /Hardware/CPU/GenericCPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/GenericCPU.cs -------------------------------------------------------------------------------- /Hardware/CPU/IntelCPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/CPU/IntelCPU.cs -------------------------------------------------------------------------------- /Hardware/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Computer.cs -------------------------------------------------------------------------------- /Hardware/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Control.cs -------------------------------------------------------------------------------- /Hardware/FirmwareTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/FirmwareTable.cs -------------------------------------------------------------------------------- /Hardware/HDD/AbstractHarddrive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/AbstractHarddrive.cs -------------------------------------------------------------------------------- /Hardware/HDD/DebugSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/DebugSmart.cs -------------------------------------------------------------------------------- /Hardware/HDD/DriveAttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/DriveAttributeValue.cs -------------------------------------------------------------------------------- /Hardware/HDD/DriveThresholdValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/DriveThresholdValue.cs -------------------------------------------------------------------------------- /Hardware/HDD/HDDGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/HDDGeneric.cs -------------------------------------------------------------------------------- /Hardware/HDD/HarddriveGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/HarddriveGroup.cs -------------------------------------------------------------------------------- /Hardware/HDD/ISmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/ISmart.cs -------------------------------------------------------------------------------- /Hardware/HDD/NamePrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/NamePrefixAttribute.cs -------------------------------------------------------------------------------- /Hardware/HDD/RequireSmartAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/RequireSmartAttribute.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDIndilinx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDIndilinx.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDIntel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDIntel.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDMicron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDMicron.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDPlextor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDPlextor.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDSamsung.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDSamsung.cs -------------------------------------------------------------------------------- /Hardware/HDD/SSDSandforce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SSDSandforce.cs -------------------------------------------------------------------------------- /Hardware/HDD/SmartAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SmartAttribute.cs -------------------------------------------------------------------------------- /Hardware/HDD/SmartNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/SmartNames.cs -------------------------------------------------------------------------------- /Hardware/HDD/WindowsSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HDD/WindowsSmart.cs -------------------------------------------------------------------------------- /Hardware/Hardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Hardware.cs -------------------------------------------------------------------------------- /Hardware/Heatmaster/Heatmaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Heatmaster/Heatmaster.cs -------------------------------------------------------------------------------- /Hardware/Heatmaster/HeatmasterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Heatmaster/HeatmasterGroup.cs -------------------------------------------------------------------------------- /Hardware/HexStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/HexStringArray.cs -------------------------------------------------------------------------------- /Hardware/IComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IComputer.cs -------------------------------------------------------------------------------- /Hardware/IControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IControl.cs -------------------------------------------------------------------------------- /Hardware/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IElement.cs -------------------------------------------------------------------------------- /Hardware/IGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IGroup.cs -------------------------------------------------------------------------------- /Hardware/IHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IHardware.cs -------------------------------------------------------------------------------- /Hardware/IOControlCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IOControlCode.cs -------------------------------------------------------------------------------- /Hardware/IParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IParameter.cs -------------------------------------------------------------------------------- /Hardware/ISensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ISensor.cs -------------------------------------------------------------------------------- /Hardware/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ISettings.cs -------------------------------------------------------------------------------- /Hardware/IVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/IVisitor.cs -------------------------------------------------------------------------------- /Hardware/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Identifier.cs -------------------------------------------------------------------------------- /Hardware/KernelDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/KernelDriver.cs -------------------------------------------------------------------------------- /Hardware/LPC/Chip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/Chip.cs -------------------------------------------------------------------------------- /Hardware/LPC/F718XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/F718XX.cs -------------------------------------------------------------------------------- /Hardware/LPC/ISuperIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/ISuperIO.cs -------------------------------------------------------------------------------- /Hardware/LPC/IT87XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/IT87XX.cs -------------------------------------------------------------------------------- /Hardware/LPC/LMSensors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/LMSensors.cs -------------------------------------------------------------------------------- /Hardware/LPC/LPCIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/LPCIO.cs -------------------------------------------------------------------------------- /Hardware/LPC/LPCPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/LPCPort.cs -------------------------------------------------------------------------------- /Hardware/LPC/NCT677X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/NCT677X.cs -------------------------------------------------------------------------------- /Hardware/LPC/W836XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/LPC/W836XX.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/GigabyteTAMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/GigabyteTAMG.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/Identification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/Identification.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/Mainboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/Mainboard.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/MainboardGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/MainboardGroup.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/Manufacturer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/Manufacturer.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/Model.cs -------------------------------------------------------------------------------- /Hardware/Mainboard/SuperIOHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Mainboard/SuperIOHardware.cs -------------------------------------------------------------------------------- /Hardware/Nvidia/NVAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Nvidia/NVAPI.cs -------------------------------------------------------------------------------- /Hardware/Nvidia/NVML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Nvidia/NVML.cs -------------------------------------------------------------------------------- /Hardware/Nvidia/NvidiaGPU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Nvidia/NvidiaGPU.cs -------------------------------------------------------------------------------- /Hardware/Nvidia/NvidiaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Nvidia/NvidiaGroup.cs -------------------------------------------------------------------------------- /Hardware/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Opcode.cs -------------------------------------------------------------------------------- /Hardware/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/OperatingSystem.cs -------------------------------------------------------------------------------- /Hardware/PInvokeDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/PInvokeDelegateFactory.cs -------------------------------------------------------------------------------- /Hardware/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Parameter.cs -------------------------------------------------------------------------------- /Hardware/RAM/GenericRAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/RAM/GenericRAM.cs -------------------------------------------------------------------------------- /Hardware/RAM/RAMGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/RAM/RAMGroup.cs -------------------------------------------------------------------------------- /Hardware/Ring0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Ring0.cs -------------------------------------------------------------------------------- /Hardware/SMBIOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/SMBIOS.cs -------------------------------------------------------------------------------- /Hardware/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/Sensor.cs -------------------------------------------------------------------------------- /Hardware/SensorVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/SensorVisitor.cs -------------------------------------------------------------------------------- /Hardware/TBalancer/FTD2XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/TBalancer/FTD2XX.cs -------------------------------------------------------------------------------- /Hardware/TBalancer/TBalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/TBalancer/TBalancer.cs -------------------------------------------------------------------------------- /Hardware/TBalancer/TBalancerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/TBalancer/TBalancerGroup.cs -------------------------------------------------------------------------------- /Hardware/ThreadAffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/ThreadAffinity.cs -------------------------------------------------------------------------------- /Hardware/WinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/WinRing0.sys -------------------------------------------------------------------------------- /Hardware/WinRing0x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Hardware/WinRing0x64.sys -------------------------------------------------------------------------------- /Licenses/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Licenses/License.html -------------------------------------------------------------------------------- /OpenHardwareMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/OpenHardwareMonitor.csproj -------------------------------------------------------------------------------- /OpenHardwareMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/OpenHardwareMonitor.sln -------------------------------------------------------------------------------- /OpenHardwareMonitorLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/OpenHardwareMonitorLib.csproj -------------------------------------------------------------------------------- /OpenHardwareMonitorReport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/OpenHardwareMonitorReport.csproj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/AssemblyLibInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Properties/AssemblyLibInfo.cs -------------------------------------------------------------------------------- /Properties/AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Properties/AssemblyVersion.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Resources/Web/css/custom-theme/jquery-ui-1.8.16.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/custom-theme/jquery-ui-1.8.16.custom.css -------------------------------------------------------------------------------- /Resources/Web/css/jquery.treeTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/jquery.treeTable.css -------------------------------------------------------------------------------- /Resources/Web/css/ohm_web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/css/ohm_web.css -------------------------------------------------------------------------------- /Resources/Web/images/toggle-collapse-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/images/toggle-collapse-dark.png -------------------------------------------------------------------------------- /Resources/Web/images/toggle-collapse-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/images/toggle-collapse-light.png -------------------------------------------------------------------------------- /Resources/Web/images/toggle-expand-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/images/toggle-expand-dark.png -------------------------------------------------------------------------------- /Resources/Web/images/toggle-expand-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/images/toggle-expand-light.png -------------------------------------------------------------------------------- /Resources/Web/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/images/transparent.png -------------------------------------------------------------------------------- /Resources/Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/index.html -------------------------------------------------------------------------------- /Resources/Web/js/jquery-1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery-1.7.2.js -------------------------------------------------------------------------------- /Resources/Web/js/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /Resources/Web/js/jquery-ui-1.8.16.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery-ui-1.8.16.custom.min.js -------------------------------------------------------------------------------- /Resources/Web/js/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery.tmpl.js -------------------------------------------------------------------------------- /Resources/Web/js/jquery.tmpl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery.tmpl.min.js -------------------------------------------------------------------------------- /Resources/Web/js/jquery.treeTable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/jquery.treeTable.min.js -------------------------------------------------------------------------------- /Resources/Web/js/knockout-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/knockout-2.1.0.js -------------------------------------------------------------------------------- /Resources/Web/js/knockout-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/knockout-2.1.0.min.js -------------------------------------------------------------------------------- /Resources/Web/js/knockout.mapping-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/knockout.mapping-latest.js -------------------------------------------------------------------------------- /Resources/Web/js/knockout.mapping-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/knockout.mapping-latest.min.js -------------------------------------------------------------------------------- /Resources/Web/js/ohm_web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/Web/js/ohm_web.js -------------------------------------------------------------------------------- /Resources/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/app.manifest -------------------------------------------------------------------------------- /Resources/ati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/ati.png -------------------------------------------------------------------------------- /Resources/barback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/barback.png -------------------------------------------------------------------------------- /Resources/barblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/barblue.png -------------------------------------------------------------------------------- /Resources/bigng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/bigng.png -------------------------------------------------------------------------------- /Resources/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/chip.png -------------------------------------------------------------------------------- /Resources/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/clock.png -------------------------------------------------------------------------------- /Resources/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/computer.png -------------------------------------------------------------------------------- /Resources/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/control.png -------------------------------------------------------------------------------- /Resources/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/cpu.png -------------------------------------------------------------------------------- /Resources/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/data.png -------------------------------------------------------------------------------- /Resources/factor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/factor.png -------------------------------------------------------------------------------- /Resources/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/fan.png -------------------------------------------------------------------------------- /Resources/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/flow.png -------------------------------------------------------------------------------- /Resources/gadget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/gadget.png -------------------------------------------------------------------------------- /Resources/gadget.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/gadget.xcf -------------------------------------------------------------------------------- /Resources/hdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/hdd.png -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/icon.xcf -------------------------------------------------------------------------------- /Resources/level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/level.png -------------------------------------------------------------------------------- /Resources/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/load.png -------------------------------------------------------------------------------- /Resources/mainboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/mainboard.png -------------------------------------------------------------------------------- /Resources/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/nvidia.png -------------------------------------------------------------------------------- /Resources/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/power.png -------------------------------------------------------------------------------- /Resources/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/ram.png -------------------------------------------------------------------------------- /Resources/smallicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/smallicon.ico -------------------------------------------------------------------------------- /Resources/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/temperature.png -------------------------------------------------------------------------------- /Resources/throughput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/throughput.png -------------------------------------------------------------------------------- /Resources/voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Resources/voltage.png -------------------------------------------------------------------------------- /Utilities/EmbeddedResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/EmbeddedResources.cs -------------------------------------------------------------------------------- /Utilities/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/HttpServer.cs -------------------------------------------------------------------------------- /Utilities/HttpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/HttpUtility.cs -------------------------------------------------------------------------------- /Utilities/IconFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/IconFactory.cs -------------------------------------------------------------------------------- /Utilities/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/Logger.cs -------------------------------------------------------------------------------- /Utilities/PersistentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/Utilities/PersistentSettings.cs -------------------------------------------------------------------------------- /WMI/Hardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/WMI/Hardware.cs -------------------------------------------------------------------------------- /WMI/IWmiObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/WMI/IWmiObject.cs -------------------------------------------------------------------------------- /WMI/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/WMI/Sensor.cs -------------------------------------------------------------------------------- /WMI/WmiProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/WMI/WmiProvider.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jochenwezel/openhardwaremonitor/HEAD/packages.config --------------------------------------------------------------------------------