├── .gitignore ├── Gemfile ├── Rakefile ├── ins ├── AdvancedWelcomeEulaDlg.wxs ├── BrowseDlg.wxs ├── CancelDlg.wxs ├── Common.wxs ├── CustomizeDlg.wxs ├── DiskCostDlg.wxs ├── ErrorDlg.wxs ├── ErrorProgressText.wxs ├── ExitDialog.wxs ├── FatalError.wxs ├── FeaturesDlg.wxs ├── FilesInUse.wxs ├── InstallDirDlg.wxs ├── InstallScopeDlg.wxs ├── LicenseAgreementDlg.wxs ├── MaintenanceTypeDlg.wxs ├── MaintenanceWelcomeDlg.wxs ├── MsiRMFilesInUse.wxs ├── New.ico ├── OutOfDiskDlg.wxs ├── OutOfRbDiskDlg.wxs ├── PrepareDlg.wxs ├── ProgressDlg.wxs ├── ResumeDlg.wxs ├── SetupTypeDlg.wxs ├── Up.ico ├── UserExit.wxs ├── VerifyReadyDlg.wxs ├── WaitForCostingDlg.wxs ├── WelcomeDlg.wxs ├── WelcomeEulaDlg.wxs ├── WixUI_Advanced.wxs ├── WixUI_FeatureTree.wxs ├── WixUI_InstallDir.wxs ├── WixUI_Minimal.wxs ├── WixUI_Mondo.wxs ├── WixUI_en-us.wxl ├── _build.bat ├── _clean.bat ├── _hints.txt ├── exclamic.ico ├── info.ico ├── terms.rtf ├── uibanner.bmp ├── uidialog.bmp ├── wix-3 │ ├── Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll │ ├── SetupBuilder.dll │ ├── WixCop.exe │ ├── WixDifxAppExtension.dll │ ├── WixIIsExtension.dll │ ├── WixNetFxExtension.dll │ ├── WixPSExtension.dll │ ├── WixSqlExtension.dll │ ├── WixTasks.dll │ ├── WixUIExtension.dll │ ├── WixUtilExtension.dll │ ├── WixVSExtension.dll │ ├── candle.exe │ ├── candle.exe.config │ ├── darice.cub │ ├── dark.exe │ ├── dark.exe.config │ ├── heat.exe │ ├── heat.exe.config │ ├── light.exe │ ├── light.exe.config │ ├── lit.exe │ ├── lit.exe.config │ ├── melt.exe │ ├── melt.exe.config │ ├── mergemod.cub │ ├── mergemod.dll │ ├── pyro.exe │ ├── pyro.exe.config │ ├── setup.exe │ ├── setupbld.exe │ ├── smoke.exe │ ├── smoke.exe.config │ ├── torch.exe │ ├── torch.exe.config │ ├── wconsole.dll │ ├── winterop.dll │ ├── wix.dll │ ├── wix.targets │ └── wui.dll └── xrefresh.wxs ├── license.txt ├── readme.md ├── src ├── XRefresh.sln ├── firefox │ ├── chrome.manifest │ ├── chrome │ │ ├── content │ │ │ ├── lib │ │ │ │ ├── json2.js │ │ │ │ └── utf8.js │ │ │ ├── xrefresh.js │ │ │ └── xrefresh.xul │ │ ├── locale │ │ │ └── en-US │ │ │ │ ├── xrefresh.dtd │ │ │ │ └── xrefresh.properties │ │ └── skin │ │ │ ├── accept.png │ │ │ ├── clear.png │ │ │ ├── connect.png │ │ │ ├── connect_btn.png │ │ │ ├── disconnect.png │ │ │ ├── disconnect_btn.png │ │ │ ├── error.png │ │ │ ├── folder_activity.png │ │ │ ├── folder_refresh.png │ │ │ ├── group.gif │ │ │ ├── icon.png │ │ │ ├── info.png │ │ │ ├── lightbulb.png │ │ │ ├── loading_16.gif │ │ │ ├── mini_changed.png │ │ │ ├── mini_created.png │ │ │ ├── mini_deleted.png │ │ │ ├── mini_renamed.png │ │ │ ├── panel.css │ │ │ ├── refresh.png │ │ │ ├── soft_refresh.png │ │ │ ├── soft_refresh_js.png │ │ │ ├── stop.png │ │ │ ├── twistyClosed.png │ │ │ ├── twistyOpen.png │ │ │ ├── warn.png │ │ │ └── xrefresh.png │ ├── defaults │ │ └── preferences │ │ │ └── xrefresh.js │ ├── install.rdf │ └── license.txt ├── iexplorer │ ├── ATLMetaFileButton.h │ ├── AboutBox.cpp │ ├── AboutBox.h │ ├── BrowserManager.cpp │ ├── BrowserManager.h │ ├── CComBool.h │ ├── ComUtils.h │ ├── ConnectionManager.cpp │ ├── ConnectionManager.h │ ├── ConsoleWindow.cpp │ ├── ConsoleWindow.h │ ├── DPIHelper.cpp │ ├── DPIHelper.h │ ├── Debug.h │ ├── DebugSupport.cpp │ ├── DebugSupport.h │ ├── Globals.h │ ├── HelperbarWindow.cpp │ ├── HelperbarWindow.h │ ├── INet.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Module.cpp │ ├── Module.h │ ├── ReadMe.txt │ ├── Registry.h │ ├── SitesDialog.cpp │ ├── SitesDialog.h │ ├── SitesModel.cpp │ ├── SitesModel.h │ ├── SocketComm.cpp │ ├── SocketComm.h │ ├── Thread.h │ ├── Utils.cpp │ ├── Utils.h │ ├── XRefresh.cpp │ ├── XRefresh.def │ ├── XRefresh.idl │ ├── XRefresh.rc │ ├── XRefresh.rgs │ ├── XRefreshAddon.vcproj │ ├── XRefreshBHO.cpp │ ├── XRefreshBHO.h │ ├── XRefreshBHO.rgs │ ├── XRefreshHelperbar.cpp │ ├── XRefreshHelperbar.h │ ├── XRefreshHelperbar.rgs │ ├── XRefreshToolbar.cpp │ ├── XRefreshToolbar.h │ ├── XRefreshToolbar.rgs │ ├── atldebug.h │ ├── atlshellext.h │ ├── atlshellextbase.h │ ├── dlldata.c │ ├── fnv │ │ ├── fnv.h │ │ ├── hash_32.c │ │ ├── hash_32a.c │ │ ├── hash_64.c │ │ └── hash_64a.c │ ├── greta │ │ ├── License.txt │ │ ├── greta2.htm │ │ ├── regexpr2.cpp │ │ ├── regexpr2.h │ │ ├── reimpl2.h │ │ ├── restack.h │ │ ├── syntax2.cpp │ │ └── syntax2.h │ ├── json │ │ ├── AUTHORS │ │ ├── README.txt │ │ ├── config.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── json_batchallocator.h │ │ ├── json_internalarray.inl │ │ ├── json_internalmap.inl │ │ ├── json_reader.cpp │ │ ├── json_value.cpp │ │ ├── json_valueiterator.inl │ │ ├── json_writer.cpp │ │ ├── reader.h │ │ ├── value.h │ │ └── writer.h │ ├── listctrl │ │ ├── DragDrop.h │ │ ├── DropArrows.h │ │ ├── ListCombo.h │ │ ├── ListCtrl.h │ │ ├── ListDate.h │ │ ├── ListEdit.h │ │ ├── ListTypes.h │ │ └── TitleTip.h │ ├── res │ │ ├── ListItems.bmp │ │ ├── XRefresh.manifest │ │ ├── XRefreshA.ico │ │ ├── XRefreshD.ico │ │ ├── XRefreshS.ico │ │ ├── aboutbox.bmp │ │ ├── divider.cur │ │ ├── hand.cur │ │ ├── icons.bmp │ │ ├── states.bmp │ │ ├── toolbar.bmp │ │ └── toolbarmask.bmp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── todo.h │ ├── trace │ │ ├── License.txt │ │ ├── tracetool.cpp │ │ └── tracetool.h │ ├── tstring.h │ ├── verinfo.cpp │ ├── verinfo.h │ ├── wtl │ │ ├── atlapp.h │ │ ├── atlcrack.h │ │ ├── atlctrls.h │ │ ├── atlctrlw.h │ │ ├── atlctrlx.h │ │ ├── atlddx.h │ │ ├── atldlgs.h │ │ ├── atlfind.h │ │ ├── atlframe.h │ │ ├── atlgdi.h │ │ ├── atlmisc.h │ │ ├── atlprint.h │ │ ├── atlres.h │ │ ├── atlresce.h │ │ ├── atlscrl.h │ │ ├── atlsplit.h │ │ ├── atltheme.h │ │ ├── atluser.h │ │ ├── atlwince.h │ │ └── atlwinx.h │ └── wtlhelpers.h ├── osxmonitor │ └── readme.txt └── winmonitor │ ├── AboutDialog.Designer.cs │ ├── AboutDialog.cs │ ├── AboutDialog.resx │ ├── AdvancedSettings.Designer.cs │ ├── AdvancedSettings.cs │ ├── AdvancedSettings.resx │ ├── Configuration.Designer.cs │ ├── Configuration.cs │ ├── Configuration.resx │ ├── Context.cs │ ├── CustomExceptionDialog.Designer.cs │ ├── CustomExceptionDialog.cs │ ├── CustomExceptionDialog.resx │ ├── CustomExceptionHandler.cs │ ├── Detector.cs │ ├── EventLog.Designer.cs │ ├── EventLog.cs │ ├── EventLog.resx │ ├── Exceptions.cs │ ├── FilterMenu.cs │ ├── FilterMenu.resx │ ├── FilterTable.Designer.cs │ ├── FilterTable.cs │ ├── FilterTable.resx │ ├── FilterTester.Designer.cs │ ├── FilterTester.cs │ ├── FilterTester.resx │ ├── FirefoxDialog │ ├── EtchedLine.cs │ ├── EtchedLine.resx │ ├── FirefoxDialog.Designer.cs │ ├── FirefoxDialog.cs │ ├── FirefoxDialog.resx │ ├── PageProp.cs │ ├── PropertyPage.cs │ └── PropertyPage.resx │ ├── FlexControl │ ├── CedeFocusEventArgs.cs │ ├── DecimalValue.cs │ ├── FieldChangedEventArgs.cs │ ├── FieldControl.cs │ ├── FieldFocusEventArgs.cs │ ├── FieldValidatedEventArgs.cs │ ├── FlexFieldControl.Designer.cs │ ├── FlexFieldControl.cs │ ├── FlexFieldControlDesigner.cs │ ├── HexadecimalValue.cs │ ├── IValueFormatter.cs │ ├── NativeMethods.cs │ ├── SeparatorControl.cs │ └── SeparatorMouseEventArgs.cs │ ├── Icons │ ├── ASP.png │ ├── AboutBox.bmp │ ├── Accept.png │ ├── Activity.png │ ├── Add.png │ ├── AddIgnore.png │ ├── AddInclude.png │ ├── AnimA16.png │ ├── AnimD16.png │ ├── AnimI16.png │ ├── Box.png │ ├── Bug.png │ ├── Cancel.png │ ├── Changed.png │ ├── Cog.png │ ├── Created.png │ ├── Custom.png │ ├── DelIgnore.png │ ├── DelInclude.png │ ├── Deleted.png │ ├── Drive.png │ ├── Error.png │ ├── Firefox.png │ ├── FirefoxGray.png │ ├── Folder.ico │ ├── Folder.png │ ├── FolderAdd.ico │ ├── FolderTable.ico │ ├── FolderTable.png │ ├── FolderWrench.ico │ ├── FolderWrench.png │ ├── Generic.png │ ├── HTML.png │ ├── Help.png │ ├── Ignore.png │ ├── Include.png │ ├── Information.png │ ├── InternetExplorer.png │ ├── InternetExplorerGray.png │ ├── JS.png │ ├── Java.png │ ├── New.png │ ├── Opera.png │ ├── OperaGray.png │ ├── PHP.png │ ├── PageFilters.png │ ├── PageMain.png │ ├── PageNetwork.png │ ├── PageTemp.png │ ├── Perl.png │ ├── Py.png │ ├── Refresh.ico │ ├── Renamed.png │ ├── RoR.png │ ├── Ruby.png │ ├── Safari.png │ ├── SafariGray.png │ ├── Settings.png │ ├── Tick.png │ ├── XRefresh.ico │ ├── XRefreshActive.ico │ ├── XRefreshConnected.ico │ ├── XRefreshDisconnected.ico │ ├── XRefreshIgnore.ico │ ├── icon.png │ └── sport_basketball.png │ ├── JSON │ ├── Newtonsoft.Json.Net20.dll │ ├── Newtonsoft.Json.Net20.pdb │ └── Newtonsoft.Json.Net20.xml │ ├── Menu.cs │ ├── Menu.resx │ ├── MenuExtender.cs │ ├── Model.Designer.cs │ ├── Model.cs │ ├── Model.xsc │ ├── Model.xsd │ ├── Model.xss │ ├── MozBar │ ├── ImageListPanel.cs │ ├── ImageListPanel.resx │ ├── ImageMapEditor.cs │ ├── MozItem.bmp │ ├── MozItem.cs │ ├── MozItem.resx │ ├── MozPane.bmp │ ├── MozPane.cs │ ├── MozPane.resx │ ├── ScrollableControlWithScrollEvents.cs │ ├── ScrollableControlWithScrollEvents.resx │ ├── ThemeManager.cs │ └── Thumbs.db │ ├── PageFilters.Designer.cs │ ├── PageFilters.cs │ ├── PageFilters.resx │ ├── PageMain.Designer.cs │ ├── PageMain.cs │ ├── PageMain.resx │ ├── PageNetwork.Designer.cs │ ├── PageNetwork.cs │ ├── PageNetwork.resx │ ├── PortEdit.Designer.cs │ ├── PortEdit.cs │ ├── Program.cs │ ├── ProjectFilters.Designer.cs │ ├── ProjectFilters.cs │ ├── ProjectFilters.resx │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── ScannerProgress.Designer.cs │ ├── ScannerProgress.cs │ ├── ScannerProgress.resx │ ├── Server.cs │ ├── ShellIcon.cs │ ├── Sound.cs │ ├── SysTray.cs │ ├── TimeoutEdit.Designer.cs │ ├── TimeoutEdit.cs │ ├── Utils.cs │ ├── Worker.cs │ ├── XPTable │ ├── Editors │ │ ├── CellEditor.cs │ │ ├── ColorCellEditor.cs │ │ ├── ComboBoxCellEditor.cs │ │ ├── DateTimeCellEditor.cs │ │ ├── DropDownCellEditor.cs │ │ ├── DropDownContainer.cs │ │ ├── DropDownContainer.resx │ │ ├── DropDownStyle.cs │ │ ├── EditStartAction.cs │ │ ├── ICellEditor.cs │ │ ├── IEditorUsesRendererButtons.cs │ │ ├── IKeyMessageFilterClient.cs │ │ ├── IMouseMessageFilterClient.cs │ │ ├── KeyMessageFilter.cs │ │ ├── MouseMessageFilter.cs │ │ ├── NumberCellEditor.cs │ │ └── TextCellEditor.cs │ ├── Events │ │ ├── CellButtonEventArgs.cs │ │ ├── CellCheckBoxEventArgs.cs │ │ ├── CellEditEventArgs.cs │ │ ├── CellEventArgs.cs │ │ ├── CellEventArgsBase.cs │ │ ├── CellEventType.cs │ │ ├── CellFocusEventArgs.cs │ │ ├── CellKeyEventArgs.cs │ │ ├── CellMouseEventArgs.cs │ │ ├── ColumnEventArgs.cs │ │ ├── ColumnEventType.cs │ │ ├── ColumnModelEventArgs.cs │ │ ├── HeaderMouseEventArgs.cs │ │ ├── PaintCellEventArgs.cs │ │ ├── PaintHeaderEventArgs.cs │ │ ├── RowEventArgs.cs │ │ ├── RowEventType.cs │ │ ├── SelectionEventArgs.cs │ │ └── TableModelEventArgs.cs │ ├── Models │ │ ├── ButtonColumn.cs │ │ ├── Cell.cs │ │ ├── CellCheckStyle.cs │ │ ├── CellCollection.cs │ │ ├── CellImageStyle.cs │ │ ├── CellPadding.cs │ │ ├── CellPos.cs │ │ ├── CellStyle.cs │ │ ├── CheckBoxColumn.cs │ │ ├── CheckBoxColumnStyle.cs │ │ ├── ColorColumn.cs │ │ ├── Column.cs │ │ ├── ColumnAlignment.cs │ │ ├── ColumnCollection.cs │ │ ├── ColumnModel.bmp │ │ ├── ColumnModel.cs │ │ ├── ColumnState.cs │ │ ├── ComboBoxColumn.cs │ │ ├── DateTimeColumn.cs │ │ ├── Design │ │ │ ├── CellCollectionEditor.cs │ │ │ ├── CellConverter.cs │ │ │ ├── ColumnCollectionEditor.cs │ │ │ ├── HelpfulCollectionEditor.cs │ │ │ ├── RowCollectionEditor.cs │ │ │ ├── RowComparer.cs │ │ │ └── RowConverter.cs │ │ ├── DropDownColumn.cs │ │ ├── GridLineStyle.cs │ │ ├── GridLines.cs │ │ ├── HeaderContextMenu.cs │ │ ├── ImageColumn.cs │ │ ├── ImageSizeMode.cs │ │ ├── NumberColumn.cs │ │ ├── ProgressBarColumn.cs │ │ ├── Row.cs │ │ ├── RowAlignment.cs │ │ ├── RowCollection.cs │ │ ├── RowStyle.cs │ │ ├── SelectionStyle.cs │ │ ├── Table.bmp │ │ ├── Table.cs │ │ ├── Table.resx │ │ ├── TableModel.bmp │ │ ├── TableModel.cs │ │ ├── TableModel.resx │ │ ├── TableRegion.cs │ │ ├── TableState.cs │ │ └── TextColumn.cs │ ├── Renderers │ │ ├── ButtonCellRenderer.cs │ │ ├── ButtonRendererData.cs │ │ ├── CellRenderer.cs │ │ ├── CheckBoxCellRenderer.cs │ │ ├── CheckBoxRendererData.cs │ │ ├── ColorCellRenderer.cs │ │ ├── ComboBoxCellRenderer.cs │ │ ├── DateTimeCellRenderer.cs │ │ ├── DropDownCellRenderer.cs │ │ ├── DropDownRendererData.cs │ │ ├── FlatHeaderRenderer.cs │ │ ├── GradientHeaderRenderer.cs │ │ ├── HeaderRenderer.cs │ │ ├── ICellRenderer.cs │ │ ├── IHeaderRenderer.cs │ │ ├── IRenderer.cs │ │ ├── ImageCellRenderer.cs │ │ ├── NumberCellRenderer.cs │ │ ├── NumberRendererData.cs │ │ ├── ProgressBarCellRenderer.cs │ │ ├── Renderer.cs │ │ ├── TextCellRenderer.cs │ │ └── XPHeaderRenderer.cs │ ├── Sorting │ │ ├── CheckBoxComparer.cs │ │ ├── ColorComparer.cs │ │ ├── ComparerBase.cs │ │ ├── DateTimeComparer.cs │ │ ├── HeapSorter.cs │ │ ├── IComparerCollection.cs │ │ ├── ImageComparer.cs │ │ ├── InsertionSorter.cs │ │ ├── MergeSorter.cs │ │ ├── NumberComparer.cs │ │ ├── ShellSorter.cs │ │ ├── SortColumn.cs │ │ ├── SortColumnCollection.cs │ │ ├── SorterBase.cs │ │ └── TextComparer.cs │ ├── Themes │ │ ├── ButtonParts.cs │ │ ├── CheckBoxStates.cs │ │ ├── ColumnHeaderParts.cs │ │ ├── ColumnHeaderStates.cs │ │ ├── ComboBoxParts.cs │ │ ├── ComboBoxStates.cs │ │ ├── ListViewParts.cs │ │ ├── ListViewStates.cs │ │ ├── ProgressBarParts.cs │ │ ├── PushButtonStates.cs │ │ ├── RadioButtonStates.cs │ │ ├── ScrollBarParts.cs │ │ ├── ScrollBarStates.cs │ │ ├── TabParts.cs │ │ ├── TextBoxParts.cs │ │ ├── TextBoxStates.cs │ │ ├── ThemeClasses.cs │ │ ├── ThemeManager.cs │ │ ├── UpDownParts.cs │ │ └── UpDownStates.cs │ └── Win32 │ │ ├── AsciiChars.cs │ │ ├── DLLVERSIONINFO.cs │ │ ├── KeyEventFFlags.cs │ │ ├── MSG.cs │ │ ├── NativeMethods.cs │ │ ├── NativeWindow.cs │ │ ├── POINT.cs │ │ ├── RECT.cs │ │ ├── SIZE.cs │ │ ├── TRACKMOUSEEVENT.cs │ │ ├── WindowExtendedStyles.cs │ │ ├── WindowMessages.cs │ │ └── WindowStyles.cs │ ├── XPTableTweaks.cs │ └── XRefreshMonitor.csproj ├── test ├── code.js ├── index.html ├── some │ ├── directory │ │ └── stylesheet_with_relative_urls.css │ └── img │ │ └── logo.png └── style.css └── website.url /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | gem 'term-ansicolor' 4 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/Rakefile -------------------------------------------------------------------------------- /ins/AdvancedWelcomeEulaDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/AdvancedWelcomeEulaDlg.wxs -------------------------------------------------------------------------------- /ins/BrowseDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/BrowseDlg.wxs -------------------------------------------------------------------------------- /ins/CancelDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/CancelDlg.wxs -------------------------------------------------------------------------------- /ins/Common.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/Common.wxs -------------------------------------------------------------------------------- /ins/CustomizeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/CustomizeDlg.wxs -------------------------------------------------------------------------------- /ins/DiskCostDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/DiskCostDlg.wxs -------------------------------------------------------------------------------- /ins/ErrorDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/ErrorDlg.wxs -------------------------------------------------------------------------------- /ins/ErrorProgressText.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/ErrorProgressText.wxs -------------------------------------------------------------------------------- /ins/ExitDialog.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/ExitDialog.wxs -------------------------------------------------------------------------------- /ins/FatalError.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/FatalError.wxs -------------------------------------------------------------------------------- /ins/FeaturesDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/FeaturesDlg.wxs -------------------------------------------------------------------------------- /ins/FilesInUse.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/FilesInUse.wxs -------------------------------------------------------------------------------- /ins/InstallDirDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/InstallDirDlg.wxs -------------------------------------------------------------------------------- /ins/InstallScopeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/InstallScopeDlg.wxs -------------------------------------------------------------------------------- /ins/LicenseAgreementDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/LicenseAgreementDlg.wxs -------------------------------------------------------------------------------- /ins/MaintenanceTypeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/MaintenanceTypeDlg.wxs -------------------------------------------------------------------------------- /ins/MaintenanceWelcomeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/MaintenanceWelcomeDlg.wxs -------------------------------------------------------------------------------- /ins/MsiRMFilesInUse.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/MsiRMFilesInUse.wxs -------------------------------------------------------------------------------- /ins/New.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/New.ico -------------------------------------------------------------------------------- /ins/OutOfDiskDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/OutOfDiskDlg.wxs -------------------------------------------------------------------------------- /ins/OutOfRbDiskDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/OutOfRbDiskDlg.wxs -------------------------------------------------------------------------------- /ins/PrepareDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/PrepareDlg.wxs -------------------------------------------------------------------------------- /ins/ProgressDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/ProgressDlg.wxs -------------------------------------------------------------------------------- /ins/ResumeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/ResumeDlg.wxs -------------------------------------------------------------------------------- /ins/SetupTypeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/SetupTypeDlg.wxs -------------------------------------------------------------------------------- /ins/Up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/Up.ico -------------------------------------------------------------------------------- /ins/UserExit.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/UserExit.wxs -------------------------------------------------------------------------------- /ins/VerifyReadyDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/VerifyReadyDlg.wxs -------------------------------------------------------------------------------- /ins/WaitForCostingDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WaitForCostingDlg.wxs -------------------------------------------------------------------------------- /ins/WelcomeDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WelcomeDlg.wxs -------------------------------------------------------------------------------- /ins/WelcomeEulaDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WelcomeEulaDlg.wxs -------------------------------------------------------------------------------- /ins/WixUI_Advanced.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_Advanced.wxs -------------------------------------------------------------------------------- /ins/WixUI_FeatureTree.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_FeatureTree.wxs -------------------------------------------------------------------------------- /ins/WixUI_InstallDir.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_InstallDir.wxs -------------------------------------------------------------------------------- /ins/WixUI_Minimal.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_Minimal.wxs -------------------------------------------------------------------------------- /ins/WixUI_Mondo.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_Mondo.wxs -------------------------------------------------------------------------------- /ins/WixUI_en-us.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/WixUI_en-us.wxl -------------------------------------------------------------------------------- /ins/_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/_build.bat -------------------------------------------------------------------------------- /ins/_clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/_clean.bat -------------------------------------------------------------------------------- /ins/_hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/_hints.txt -------------------------------------------------------------------------------- /ins/exclamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/exclamic.ico -------------------------------------------------------------------------------- /ins/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/info.ico -------------------------------------------------------------------------------- /ins/terms.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/terms.rtf -------------------------------------------------------------------------------- /ins/uibanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/uibanner.bmp -------------------------------------------------------------------------------- /ins/uidialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/uidialog.bmp -------------------------------------------------------------------------------- /ins/wix-3/Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/Microsoft.Tools.WindowsInstallerXml.NAntTasks.dll -------------------------------------------------------------------------------- /ins/wix-3/SetupBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/SetupBuilder.dll -------------------------------------------------------------------------------- /ins/wix-3/WixCop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixCop.exe -------------------------------------------------------------------------------- /ins/wix-3/WixDifxAppExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixDifxAppExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixIIsExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixIIsExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixNetFxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixNetFxExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixPSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixPSExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixSqlExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixSqlExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixTasks.dll -------------------------------------------------------------------------------- /ins/wix-3/WixUIExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixUIExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixUtilExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixUtilExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/WixVSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/WixVSExtension.dll -------------------------------------------------------------------------------- /ins/wix-3/candle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/candle.exe -------------------------------------------------------------------------------- /ins/wix-3/candle.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/candle.exe.config -------------------------------------------------------------------------------- /ins/wix-3/darice.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/darice.cub -------------------------------------------------------------------------------- /ins/wix-3/dark.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/dark.exe -------------------------------------------------------------------------------- /ins/wix-3/dark.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/dark.exe.config -------------------------------------------------------------------------------- /ins/wix-3/heat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/heat.exe -------------------------------------------------------------------------------- /ins/wix-3/heat.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/heat.exe.config -------------------------------------------------------------------------------- /ins/wix-3/light.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/light.exe -------------------------------------------------------------------------------- /ins/wix-3/light.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/light.exe.config -------------------------------------------------------------------------------- /ins/wix-3/lit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/lit.exe -------------------------------------------------------------------------------- /ins/wix-3/lit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/lit.exe.config -------------------------------------------------------------------------------- /ins/wix-3/melt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/melt.exe -------------------------------------------------------------------------------- /ins/wix-3/melt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/melt.exe.config -------------------------------------------------------------------------------- /ins/wix-3/mergemod.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/mergemod.cub -------------------------------------------------------------------------------- /ins/wix-3/mergemod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/mergemod.dll -------------------------------------------------------------------------------- /ins/wix-3/pyro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/pyro.exe -------------------------------------------------------------------------------- /ins/wix-3/pyro.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/pyro.exe.config -------------------------------------------------------------------------------- /ins/wix-3/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/setup.exe -------------------------------------------------------------------------------- /ins/wix-3/setupbld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/setupbld.exe -------------------------------------------------------------------------------- /ins/wix-3/smoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/smoke.exe -------------------------------------------------------------------------------- /ins/wix-3/smoke.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/smoke.exe.config -------------------------------------------------------------------------------- /ins/wix-3/torch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/torch.exe -------------------------------------------------------------------------------- /ins/wix-3/torch.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/torch.exe.config -------------------------------------------------------------------------------- /ins/wix-3/wconsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/wconsole.dll -------------------------------------------------------------------------------- /ins/wix-3/winterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/winterop.dll -------------------------------------------------------------------------------- /ins/wix-3/wix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/wix.dll -------------------------------------------------------------------------------- /ins/wix-3/wix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/wix.targets -------------------------------------------------------------------------------- /ins/wix-3/wui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/wix-3/wui.dll -------------------------------------------------------------------------------- /ins/xrefresh.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/ins/xrefresh.wxs -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/readme.md -------------------------------------------------------------------------------- /src/XRefresh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/XRefresh.sln -------------------------------------------------------------------------------- /src/firefox/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome.manifest -------------------------------------------------------------------------------- /src/firefox/chrome/content/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/content/lib/json2.js -------------------------------------------------------------------------------- /src/firefox/chrome/content/lib/utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/content/lib/utf8.js -------------------------------------------------------------------------------- /src/firefox/chrome/content/xrefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/content/xrefresh.js -------------------------------------------------------------------------------- /src/firefox/chrome/content/xrefresh.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/content/xrefresh.xul -------------------------------------------------------------------------------- /src/firefox/chrome/locale/en-US/xrefresh.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/locale/en-US/xrefresh.dtd -------------------------------------------------------------------------------- /src/firefox/chrome/locale/en-US/xrefresh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/locale/en-US/xrefresh.properties -------------------------------------------------------------------------------- /src/firefox/chrome/skin/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/accept.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/clear.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/connect.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/connect_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/connect_btn.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/disconnect.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/disconnect_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/disconnect_btn.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/error.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/folder_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/folder_activity.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/folder_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/folder_refresh.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/group.gif -------------------------------------------------------------------------------- /src/firefox/chrome/skin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/icon.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/info.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/lightbulb.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/loading_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/loading_16.gif -------------------------------------------------------------------------------- /src/firefox/chrome/skin/mini_changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/mini_changed.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/mini_created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/mini_created.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/mini_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/mini_deleted.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/mini_renamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/mini_renamed.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/panel.css -------------------------------------------------------------------------------- /src/firefox/chrome/skin/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/refresh.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/soft_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/soft_refresh.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/soft_refresh_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/soft_refresh_js.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/stop.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/twistyClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/twistyClosed.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/twistyOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/twistyOpen.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/warn.png -------------------------------------------------------------------------------- /src/firefox/chrome/skin/xrefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/chrome/skin/xrefresh.png -------------------------------------------------------------------------------- /src/firefox/defaults/preferences/xrefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/defaults/preferences/xrefresh.js -------------------------------------------------------------------------------- /src/firefox/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/install.rdf -------------------------------------------------------------------------------- /src/firefox/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/firefox/license.txt -------------------------------------------------------------------------------- /src/iexplorer/ATLMetaFileButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ATLMetaFileButton.h -------------------------------------------------------------------------------- /src/iexplorer/AboutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/AboutBox.cpp -------------------------------------------------------------------------------- /src/iexplorer/AboutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/AboutBox.h -------------------------------------------------------------------------------- /src/iexplorer/BrowserManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/BrowserManager.cpp -------------------------------------------------------------------------------- /src/iexplorer/BrowserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/BrowserManager.h -------------------------------------------------------------------------------- /src/iexplorer/CComBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/CComBool.h -------------------------------------------------------------------------------- /src/iexplorer/ComUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ComUtils.h -------------------------------------------------------------------------------- /src/iexplorer/ConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ConnectionManager.cpp -------------------------------------------------------------------------------- /src/iexplorer/ConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ConnectionManager.h -------------------------------------------------------------------------------- /src/iexplorer/ConsoleWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ConsoleWindow.cpp -------------------------------------------------------------------------------- /src/iexplorer/ConsoleWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ConsoleWindow.h -------------------------------------------------------------------------------- /src/iexplorer/DPIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/DPIHelper.cpp -------------------------------------------------------------------------------- /src/iexplorer/DPIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/DPIHelper.h -------------------------------------------------------------------------------- /src/iexplorer/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Debug.h -------------------------------------------------------------------------------- /src/iexplorer/DebugSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/DebugSupport.cpp -------------------------------------------------------------------------------- /src/iexplorer/DebugSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/DebugSupport.h -------------------------------------------------------------------------------- /src/iexplorer/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Globals.h -------------------------------------------------------------------------------- /src/iexplorer/HelperbarWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/HelperbarWindow.cpp -------------------------------------------------------------------------------- /src/iexplorer/HelperbarWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/HelperbarWindow.h -------------------------------------------------------------------------------- /src/iexplorer/INet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/INet.h -------------------------------------------------------------------------------- /src/iexplorer/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Logger.cpp -------------------------------------------------------------------------------- /src/iexplorer/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Logger.h -------------------------------------------------------------------------------- /src/iexplorer/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Module.cpp -------------------------------------------------------------------------------- /src/iexplorer/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Module.h -------------------------------------------------------------------------------- /src/iexplorer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/ReadMe.txt -------------------------------------------------------------------------------- /src/iexplorer/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Registry.h -------------------------------------------------------------------------------- /src/iexplorer/SitesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SitesDialog.cpp -------------------------------------------------------------------------------- /src/iexplorer/SitesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SitesDialog.h -------------------------------------------------------------------------------- /src/iexplorer/SitesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SitesModel.cpp -------------------------------------------------------------------------------- /src/iexplorer/SitesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SitesModel.h -------------------------------------------------------------------------------- /src/iexplorer/SocketComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SocketComm.cpp -------------------------------------------------------------------------------- /src/iexplorer/SocketComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/SocketComm.h -------------------------------------------------------------------------------- /src/iexplorer/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Thread.h -------------------------------------------------------------------------------- /src/iexplorer/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Utils.cpp -------------------------------------------------------------------------------- /src/iexplorer/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/Utils.h -------------------------------------------------------------------------------- /src/iexplorer/XRefresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefresh.cpp -------------------------------------------------------------------------------- /src/iexplorer/XRefresh.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefresh.def -------------------------------------------------------------------------------- /src/iexplorer/XRefresh.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefresh.idl -------------------------------------------------------------------------------- /src/iexplorer/XRefresh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefresh.rc -------------------------------------------------------------------------------- /src/iexplorer/XRefresh.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefresh.rgs -------------------------------------------------------------------------------- /src/iexplorer/XRefreshAddon.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshAddon.vcproj -------------------------------------------------------------------------------- /src/iexplorer/XRefreshBHO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshBHO.cpp -------------------------------------------------------------------------------- /src/iexplorer/XRefreshBHO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshBHO.h -------------------------------------------------------------------------------- /src/iexplorer/XRefreshBHO.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshBHO.rgs -------------------------------------------------------------------------------- /src/iexplorer/XRefreshHelperbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshHelperbar.cpp -------------------------------------------------------------------------------- /src/iexplorer/XRefreshHelperbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshHelperbar.h -------------------------------------------------------------------------------- /src/iexplorer/XRefreshHelperbar.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshHelperbar.rgs -------------------------------------------------------------------------------- /src/iexplorer/XRefreshToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshToolbar.cpp -------------------------------------------------------------------------------- /src/iexplorer/XRefreshToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshToolbar.h -------------------------------------------------------------------------------- /src/iexplorer/XRefreshToolbar.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/XRefreshToolbar.rgs -------------------------------------------------------------------------------- /src/iexplorer/atldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/atldebug.h -------------------------------------------------------------------------------- /src/iexplorer/atlshellext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/atlshellext.h -------------------------------------------------------------------------------- /src/iexplorer/atlshellextbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/atlshellextbase.h -------------------------------------------------------------------------------- /src/iexplorer/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/dlldata.c -------------------------------------------------------------------------------- /src/iexplorer/fnv/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/fnv/fnv.h -------------------------------------------------------------------------------- /src/iexplorer/fnv/hash_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/fnv/hash_32.c -------------------------------------------------------------------------------- /src/iexplorer/fnv/hash_32a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/fnv/hash_32a.c -------------------------------------------------------------------------------- /src/iexplorer/fnv/hash_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/fnv/hash_64.c -------------------------------------------------------------------------------- /src/iexplorer/fnv/hash_64a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/fnv/hash_64a.c -------------------------------------------------------------------------------- /src/iexplorer/greta/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/License.txt -------------------------------------------------------------------------------- /src/iexplorer/greta/greta2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/greta2.htm -------------------------------------------------------------------------------- /src/iexplorer/greta/regexpr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/regexpr2.cpp -------------------------------------------------------------------------------- /src/iexplorer/greta/regexpr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/regexpr2.h -------------------------------------------------------------------------------- /src/iexplorer/greta/reimpl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/reimpl2.h -------------------------------------------------------------------------------- /src/iexplorer/greta/restack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/restack.h -------------------------------------------------------------------------------- /src/iexplorer/greta/syntax2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/syntax2.cpp -------------------------------------------------------------------------------- /src/iexplorer/greta/syntax2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/greta/syntax2.h -------------------------------------------------------------------------------- /src/iexplorer/json/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /src/iexplorer/json/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/README.txt -------------------------------------------------------------------------------- /src/iexplorer/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/config.h -------------------------------------------------------------------------------- /src/iexplorer/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/forwards.h -------------------------------------------------------------------------------- /src/iexplorer/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json.h -------------------------------------------------------------------------------- /src/iexplorer/json/json_batchallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_batchallocator.h -------------------------------------------------------------------------------- /src/iexplorer/json/json_internalarray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_internalarray.inl -------------------------------------------------------------------------------- /src/iexplorer/json/json_internalmap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_internalmap.inl -------------------------------------------------------------------------------- /src/iexplorer/json/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_reader.cpp -------------------------------------------------------------------------------- /src/iexplorer/json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_value.cpp -------------------------------------------------------------------------------- /src/iexplorer/json/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_valueiterator.inl -------------------------------------------------------------------------------- /src/iexplorer/json/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/json_writer.cpp -------------------------------------------------------------------------------- /src/iexplorer/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/reader.h -------------------------------------------------------------------------------- /src/iexplorer/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/value.h -------------------------------------------------------------------------------- /src/iexplorer/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/json/writer.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/DragDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/DragDrop.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/DropArrows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/DropArrows.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/ListCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/ListCombo.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/ListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/ListCtrl.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/ListDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/ListDate.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/ListEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/ListEdit.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/ListTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/ListTypes.h -------------------------------------------------------------------------------- /src/iexplorer/listctrl/TitleTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/listctrl/TitleTip.h -------------------------------------------------------------------------------- /src/iexplorer/res/ListItems.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/ListItems.bmp -------------------------------------------------------------------------------- /src/iexplorer/res/XRefresh.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/XRefresh.manifest -------------------------------------------------------------------------------- /src/iexplorer/res/XRefreshA.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/XRefreshA.ico -------------------------------------------------------------------------------- /src/iexplorer/res/XRefreshD.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/XRefreshD.ico -------------------------------------------------------------------------------- /src/iexplorer/res/XRefreshS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/XRefreshS.ico -------------------------------------------------------------------------------- /src/iexplorer/res/aboutbox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/aboutbox.bmp -------------------------------------------------------------------------------- /src/iexplorer/res/divider.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/divider.cur -------------------------------------------------------------------------------- /src/iexplorer/res/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/hand.cur -------------------------------------------------------------------------------- /src/iexplorer/res/icons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/icons.bmp -------------------------------------------------------------------------------- /src/iexplorer/res/states.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/states.bmp -------------------------------------------------------------------------------- /src/iexplorer/res/toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/toolbar.bmp -------------------------------------------------------------------------------- /src/iexplorer/res/toolbarmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/res/toolbarmask.bmp -------------------------------------------------------------------------------- /src/iexplorer/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/resource.h -------------------------------------------------------------------------------- /src/iexplorer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/stdafx.cpp -------------------------------------------------------------------------------- /src/iexplorer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/stdafx.h -------------------------------------------------------------------------------- /src/iexplorer/todo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/todo.h -------------------------------------------------------------------------------- /src/iexplorer/trace/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/trace/License.txt -------------------------------------------------------------------------------- /src/iexplorer/trace/tracetool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/trace/tracetool.cpp -------------------------------------------------------------------------------- /src/iexplorer/trace/tracetool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/trace/tracetool.h -------------------------------------------------------------------------------- /src/iexplorer/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/tstring.h -------------------------------------------------------------------------------- /src/iexplorer/verinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/verinfo.cpp -------------------------------------------------------------------------------- /src/iexplorer/verinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/verinfo.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlapp.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlcrack.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlctrls.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlctrlw.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlctrlx.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlddx.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atldlgs.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlfind.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlframe.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlgdi.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlmisc.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlprint.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlres.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlresce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlresce.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlscrl.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlsplit.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atltheme.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atluser.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlwince.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlwince.h -------------------------------------------------------------------------------- /src/iexplorer/wtl/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtl/atlwinx.h -------------------------------------------------------------------------------- /src/iexplorer/wtlhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/iexplorer/wtlhelpers.h -------------------------------------------------------------------------------- /src/osxmonitor/readme.txt: -------------------------------------------------------------------------------- 1 | -> http://github.com/darwin/xrefresh-server -------------------------------------------------------------------------------- /src/winmonitor/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AboutDialog.cs -------------------------------------------------------------------------------- /src/winmonitor/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AboutDialog.resx -------------------------------------------------------------------------------- /src/winmonitor/AdvancedSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AdvancedSettings.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/AdvancedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AdvancedSettings.cs -------------------------------------------------------------------------------- /src/winmonitor/AdvancedSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/AdvancedSettings.resx -------------------------------------------------------------------------------- /src/winmonitor/Configuration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Configuration.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Configuration.cs -------------------------------------------------------------------------------- /src/winmonitor/Configuration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Configuration.resx -------------------------------------------------------------------------------- /src/winmonitor/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Context.cs -------------------------------------------------------------------------------- /src/winmonitor/CustomExceptionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/CustomExceptionDialog.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/CustomExceptionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/CustomExceptionDialog.cs -------------------------------------------------------------------------------- /src/winmonitor/CustomExceptionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/CustomExceptionDialog.resx -------------------------------------------------------------------------------- /src/winmonitor/CustomExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/CustomExceptionHandler.cs -------------------------------------------------------------------------------- /src/winmonitor/Detector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Detector.cs -------------------------------------------------------------------------------- /src/winmonitor/EventLog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/EventLog.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/EventLog.cs -------------------------------------------------------------------------------- /src/winmonitor/EventLog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/EventLog.resx -------------------------------------------------------------------------------- /src/winmonitor/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Exceptions.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterMenu.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterMenu.resx -------------------------------------------------------------------------------- /src/winmonitor/FilterTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTable.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTable.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterTable.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTable.resx -------------------------------------------------------------------------------- /src/winmonitor/FilterTester.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTester.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTester.cs -------------------------------------------------------------------------------- /src/winmonitor/FilterTester.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FilterTester.resx -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/EtchedLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/EtchedLine.cs -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/EtchedLine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/EtchedLine.resx -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/FirefoxDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/FirefoxDialog.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/FirefoxDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/FirefoxDialog.cs -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/FirefoxDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/FirefoxDialog.resx -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/PageProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/PageProp.cs -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/PropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/PropertyPage.cs -------------------------------------------------------------------------------- /src/winmonitor/FirefoxDialog/PropertyPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FirefoxDialog/PropertyPage.resx -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/CedeFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/CedeFocusEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/DecimalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/DecimalValue.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FieldChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FieldChangedEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FieldControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FieldControl.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FieldFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FieldFocusEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FieldValidatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FieldValidatedEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FlexFieldControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FlexFieldControl.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FlexFieldControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FlexFieldControl.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/FlexFieldControlDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/FlexFieldControlDesigner.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/HexadecimalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/HexadecimalValue.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/IValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/IValueFormatter.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/NativeMethods.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/SeparatorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/SeparatorControl.cs -------------------------------------------------------------------------------- /src/winmonitor/FlexControl/SeparatorMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/FlexControl/SeparatorMouseEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/Icons/ASP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/ASP.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AboutBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AboutBox.bmp -------------------------------------------------------------------------------- /src/winmonitor/Icons/Accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Accept.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Activity.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Add.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AddIgnore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AddIgnore.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AddInclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AddInclude.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AnimA16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AnimA16.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AnimD16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AnimD16.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/AnimI16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/AnimI16.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Box.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Bug.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Cancel.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Changed.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Cog.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Created.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Custom.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/DelIgnore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/DelIgnore.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/DelInclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/DelInclude.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Deleted.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Drive.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Error.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Firefox.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/FirefoxGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FirefoxGray.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Folder.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Folder.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/FolderAdd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FolderAdd.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/FolderTable.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FolderTable.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/FolderTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FolderTable.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/FolderWrench.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FolderWrench.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/FolderWrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/FolderWrench.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Generic.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/HTML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/HTML.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Help.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Ignore.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Include.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Include.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Information.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/InternetExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/InternetExplorer.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/InternetExplorerGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/InternetExplorerGray.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/JS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/JS.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Java.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/New.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Opera.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/OperaGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/OperaGray.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/PHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/PHP.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/PageFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/PageFilters.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/PageMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/PageMain.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/PageNetwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/PageNetwork.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/PageTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/PageTemp.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Perl.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Py.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Refresh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Refresh.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/Renamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Renamed.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/RoR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/RoR.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Ruby.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Safari.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/SafariGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/SafariGray.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Settings.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/Tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/Tick.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/XRefresh.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/XRefresh.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/XRefreshActive.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/XRefreshActive.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/XRefreshConnected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/XRefreshConnected.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/XRefreshDisconnected.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/XRefreshDisconnected.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/XRefreshIgnore.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/XRefreshIgnore.ico -------------------------------------------------------------------------------- /src/winmonitor/Icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/icon.png -------------------------------------------------------------------------------- /src/winmonitor/Icons/sport_basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Icons/sport_basketball.png -------------------------------------------------------------------------------- /src/winmonitor/JSON/Newtonsoft.Json.Net20.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/JSON/Newtonsoft.Json.Net20.dll -------------------------------------------------------------------------------- /src/winmonitor/JSON/Newtonsoft.Json.Net20.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/JSON/Newtonsoft.Json.Net20.pdb -------------------------------------------------------------------------------- /src/winmonitor/JSON/Newtonsoft.Json.Net20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/JSON/Newtonsoft.Json.Net20.xml -------------------------------------------------------------------------------- /src/winmonitor/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Menu.cs -------------------------------------------------------------------------------- /src/winmonitor/Menu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Menu.resx -------------------------------------------------------------------------------- /src/winmonitor/MenuExtender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MenuExtender.cs -------------------------------------------------------------------------------- /src/winmonitor/Model.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Model.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Model.cs -------------------------------------------------------------------------------- /src/winmonitor/Model.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Model.xsc -------------------------------------------------------------------------------- /src/winmonitor/Model.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Model.xsd -------------------------------------------------------------------------------- /src/winmonitor/Model.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Model.xss -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ImageListPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ImageListPanel.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ImageListPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ImageListPanel.resx -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ImageMapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ImageMapEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozItem.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozItem.bmp -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozItem.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozItem.resx -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozPane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozPane.bmp -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozPane.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/MozPane.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/MozPane.resx -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ScrollableControlWithScrollEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ScrollableControlWithScrollEvents.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ScrollableControlWithScrollEvents.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ScrollableControlWithScrollEvents.resx -------------------------------------------------------------------------------- /src/winmonitor/MozBar/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/ThemeManager.cs -------------------------------------------------------------------------------- /src/winmonitor/MozBar/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/MozBar/Thumbs.db -------------------------------------------------------------------------------- /src/winmonitor/PageFilters.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageFilters.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/PageFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageFilters.cs -------------------------------------------------------------------------------- /src/winmonitor/PageFilters.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageFilters.resx -------------------------------------------------------------------------------- /src/winmonitor/PageMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageMain.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/PageMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageMain.cs -------------------------------------------------------------------------------- /src/winmonitor/PageMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageMain.resx -------------------------------------------------------------------------------- /src/winmonitor/PageNetwork.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageNetwork.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/PageNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageNetwork.cs -------------------------------------------------------------------------------- /src/winmonitor/PageNetwork.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PageNetwork.resx -------------------------------------------------------------------------------- /src/winmonitor/PortEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PortEdit.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/PortEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/PortEdit.cs -------------------------------------------------------------------------------- /src/winmonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Program.cs -------------------------------------------------------------------------------- /src/winmonitor/ProjectFilters.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ProjectFilters.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/ProjectFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ProjectFilters.cs -------------------------------------------------------------------------------- /src/winmonitor/ProjectFilters.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ProjectFilters.resx -------------------------------------------------------------------------------- /src/winmonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/winmonitor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/winmonitor/ScannerProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ScannerProgress.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/ScannerProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ScannerProgress.cs -------------------------------------------------------------------------------- /src/winmonitor/ScannerProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ScannerProgress.resx -------------------------------------------------------------------------------- /src/winmonitor/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Server.cs -------------------------------------------------------------------------------- /src/winmonitor/ShellIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/ShellIcon.cs -------------------------------------------------------------------------------- /src/winmonitor/Sound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Sound.cs -------------------------------------------------------------------------------- /src/winmonitor/SysTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/SysTray.cs -------------------------------------------------------------------------------- /src/winmonitor/TimeoutEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/TimeoutEdit.Designer.cs -------------------------------------------------------------------------------- /src/winmonitor/TimeoutEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/TimeoutEdit.cs -------------------------------------------------------------------------------- /src/winmonitor/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Utils.cs -------------------------------------------------------------------------------- /src/winmonitor/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/Worker.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/CellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/CellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/ColorCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/ColorCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/ComboBoxCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/ComboBoxCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/DateTimeCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/DateTimeCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/DropDownCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/DropDownCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/DropDownContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/DropDownContainer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/DropDownContainer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/DropDownContainer.resx -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/DropDownStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/DropDownStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/EditStartAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/EditStartAction.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/ICellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/ICellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/IEditorUsesRendererButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/IEditorUsesRendererButtons.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/IKeyMessageFilterClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/IKeyMessageFilterClient.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/IMouseMessageFilterClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/IMouseMessageFilterClient.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/KeyMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/KeyMessageFilter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/MouseMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/MouseMessageFilter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/NumberCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/NumberCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Editors/TextCellEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Editors/TextCellEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellButtonEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellCheckBoxEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellCheckBoxEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellEditEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellEditEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellEventArgsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellEventArgsBase.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellEventType.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellFocusEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellKeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellKeyEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/CellMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/CellMouseEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/ColumnEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/ColumnEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/ColumnEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/ColumnEventType.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/ColumnModelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/ColumnModelEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/HeaderMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/HeaderMouseEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/PaintCellEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/PaintCellEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/PaintHeaderEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/PaintHeaderEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/RowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/RowEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/RowEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/RowEventType.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/SelectionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/SelectionEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Events/TableModelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Events/TableModelEventArgs.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ButtonColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ButtonColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Cell.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellCheckStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellCheckStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellCollection.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellImageStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellImageStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellPadding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellPadding.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellPos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellPos.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CellStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CellStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CheckBoxColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CheckBoxColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/CheckBoxColumnStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/CheckBoxColumnStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColorColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColorColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Column.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColumnAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColumnAlignment.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColumnCollection.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColumnModel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColumnModel.bmp -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColumnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColumnModel.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ColumnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ColumnState.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ComboBoxColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ComboBoxColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/DateTimeColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/DateTimeColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/CellCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/CellCollectionEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/CellConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/CellConverter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/ColumnCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/ColumnCollectionEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/HelpfulCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/HelpfulCollectionEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/RowCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/RowCollectionEditor.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/RowComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/RowComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Design/RowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Design/RowConverter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/DropDownColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/DropDownColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/GridLineStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/GridLineStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/GridLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/GridLines.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/HeaderContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/HeaderContextMenu.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ImageColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ImageColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ImageSizeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ImageSizeMode.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/NumberColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/NumberColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/ProgressBarColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/ProgressBarColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Row.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/RowAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/RowAlignment.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/RowCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/RowCollection.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/RowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/RowStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/SelectionStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/SelectionStyle.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Table.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Table.bmp -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Table.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/Table.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/Table.resx -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TableModel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TableModel.bmp -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TableModel.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TableModel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TableModel.resx -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TableRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TableRegion.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TableState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TableState.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Models/TextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Models/TextColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ButtonCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ButtonCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ButtonRendererData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ButtonRendererData.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/CellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/CellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/CheckBoxCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/CheckBoxCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/CheckBoxRendererData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/CheckBoxRendererData.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ColorCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ColorCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ComboBoxCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ComboBoxCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/DateTimeCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/DateTimeCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/DropDownCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/DropDownCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/DropDownRendererData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/DropDownRendererData.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/FlatHeaderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/FlatHeaderRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/GradientHeaderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/GradientHeaderRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/HeaderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/HeaderRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ICellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ICellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/IHeaderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/IHeaderRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/IRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ImageCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ImageCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/NumberCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/NumberCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/NumberRendererData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/NumberRendererData.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/ProgressBarCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/ProgressBarCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/Renderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/TextCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/TextCellRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Renderers/XPHeaderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Renderers/XPHeaderRenderer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/CheckBoxComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/CheckBoxComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/ColorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/ColorComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/ComparerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/ComparerBase.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/DateTimeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/DateTimeComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/HeapSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/HeapSorter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/IComparerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/IComparerCollection.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/ImageComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/ImageComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/InsertionSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/InsertionSorter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/MergeSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/MergeSorter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/NumberComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/NumberComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/ShellSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/ShellSorter.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/SortColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/SortColumn.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/SortColumnCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/SortColumnCollection.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/SorterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/SorterBase.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Sorting/TextComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Sorting/TextComparer.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ButtonParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ButtonParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/CheckBoxStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/CheckBoxStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ColumnHeaderParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ColumnHeaderParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ColumnHeaderStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ColumnHeaderStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ComboBoxParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ComboBoxParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ComboBoxStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ComboBoxStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ListViewParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ListViewParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ListViewStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ListViewStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ProgressBarParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ProgressBarParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/PushButtonStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/PushButtonStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/RadioButtonStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/RadioButtonStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ScrollBarParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ScrollBarParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ScrollBarStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ScrollBarStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/TabParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/TabParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/TextBoxParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/TextBoxParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/TextBoxStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/TextBoxStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ThemeClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ThemeClasses.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/ThemeManager.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/UpDownParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/UpDownParts.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Themes/UpDownStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Themes/UpDownStates.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/AsciiChars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/AsciiChars.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/DLLVERSIONINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/DLLVERSIONINFO.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/KeyEventFFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/KeyEventFFlags.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/MSG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/MSG.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/NativeMethods.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/NativeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/NativeWindow.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/POINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/POINT.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/RECT.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/SIZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/SIZE.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/TRACKMOUSEEVENT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/TRACKMOUSEEVENT.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/WindowExtendedStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/WindowExtendedStyles.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/WindowMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/WindowMessages.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTable/Win32/WindowStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTable/Win32/WindowStyles.cs -------------------------------------------------------------------------------- /src/winmonitor/XPTableTweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XPTableTweaks.cs -------------------------------------------------------------------------------- /src/winmonitor/XRefreshMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/src/winmonitor/XRefreshMonitor.csproj -------------------------------------------------------------------------------- /test/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/test/code.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/test/index.html -------------------------------------------------------------------------------- /test/some/directory/stylesheet_with_relative_urls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/test/some/directory/stylesheet_with_relative_urls.css -------------------------------------------------------------------------------- /test/some/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/test/some/img/logo.png -------------------------------------------------------------------------------- /test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/xrefresh/HEAD/test/style.css -------------------------------------------------------------------------------- /website.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://xrefresh.binaryage.com/ 3 | --------------------------------------------------------------------------------