├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GifRecorder.sln ├── LICENSE.txt ├── LOCALIZATION.md ├── Other ├── HookTest │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── HookTest.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Util │ │ ├── CustomKeyEventArgs.cs │ │ ├── CustomKeyPressEventArgs.cs │ │ ├── CustomMouseEventArgs.cs │ │ ├── Keys.cs │ │ └── UserActivityHook.cs ├── PositioningTest │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PositioningTest.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.manifest └── Translator │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ ├── ExtendedTextBox.cs │ ├── ImageButton.cs │ ├── ImageMenuItem.cs │ └── StatusBand.cs │ ├── Converters │ ├── MultiLineTitle.cs │ └── NullToInvertedBool.cs │ ├── DataGridHelper.cs │ ├── Dialog.xaml │ ├── Dialog.xaml.cs │ ├── ExceptionDialog.xaml │ ├── ExceptionDialog.xaml.cs │ ├── ExceptionViewer.xaml │ ├── ExceptionViewer.xaml.cs │ ├── Logo.ico │ ├── Properties │ └── AssemblyInfo.cs │ ├── Themes │ ├── Buttons.xaml │ ├── Colors.xaml │ ├── ComboBox.xaml │ ├── DataGridStyle.xaml │ ├── Generic.xaml │ ├── IconSet.xaml │ └── ProgressBar.xaml │ ├── Translator.csproj │ ├── TranslatorWindow.xaml │ ├── TranslatorWindow.xaml.cs │ ├── Util │ └── LogWriter.cs │ └── VisualHelper.cs ├── README.md ├── ScreenToGif.Cloud.YandexDisk.Tests ├── 1.txt ├── Properties │ └── AssemblyInfo.cs ├── ScreenToGif.Cloud.YandexDisk.Tests.csproj ├── YandexDiskTests.cs └── packages.config └── ScreenToGif ├── App.config ├── App.xaml ├── App.xaml.cs ├── Capture ├── BaseCapture.cs ├── CachedCapture.cs ├── DirectCachedCapture.cs ├── DirectChangedCachedCapture.cs ├── DirectChangedImageCapture.cs ├── DirectImageCapture.cs ├── ICapture.cs ├── ImageCapture.cs └── RegionSelectHelper.cs ├── Cloud ├── CloudFactory.cs ├── Gfycat.cs ├── ICloud.cs ├── Imgur │ ├── Imgur.cs │ ├── ImgurAlbum.cs │ ├── ImgurGetAlbumsResponse.cs │ ├── ImgurUploadImageResponse.cs │ └── OAuth2Token.cs ├── UploadedFile.cs ├── UploadingException.cs └── YandexDisk │ ├── Error.cs │ ├── Link.cs │ └── YandexDisk.cs ├── Controls ├── AdornerControl.cs ├── AttachmentListBoxItem.cs ├── AwareTabItem.cs ├── BaseWindow.cs ├── Card.cs ├── CircularProgressBar.cs ├── ColorBox.cs ├── CroppingAdorner.cs ├── DataGridHeaderBorder.cs ├── DisplayTimer.cs ├── DoubleBox.cs ├── DoubleUpDown.cs ├── DragScrollGrid.cs ├── DrawingCanvas.cs ├── DropDownButton.cs ├── DynamicGrid.cs ├── ElementAdorner.cs ├── EncoderListViewItem.cs ├── ExtendedButton.cs ├── ExtendedCheckBox.cs ├── ExtendedListBoxItem.cs ├── ExtendedMenuItem.cs ├── ExtendedProgressBar.cs ├── ExtendedRadioButton.cs ├── ExtendedRepeatButton.cs ├── ExtendedTextBox.cs ├── ExtendedToggleButton.cs ├── ExtendedUniformGrid.cs ├── FolderSelector.cs ├── FrameListBoxItem.cs ├── FrameViewer.cs ├── FrameworkElementAdorner.cs ├── HeaderedTooltip.cs ├── HexadecimalBox.cs ├── HideableTabControl.cs ├── InkCanvasExtended.cs ├── IntegerBox.cs ├── IntegerUpDown.cs ├── KeyBox.cs ├── LabelSeparator.cs ├── LightWindow.cs ├── MoveResizeControl.cs ├── NotificationBox.cs ├── NotifyIcon.cs ├── PuncturedRect.cs ├── QuantizationMethodItem.cs ├── RadialPanel.cs ├── RangeSlider.cs ├── RecorderWindow.cs ├── ResizingAdorner.cs ├── Ribbon │ ├── GroupSizeDefinition.cs │ ├── ItemSizeDefinition.cs │ ├── Ribbon.cs │ ├── RibbonGroup.cs │ ├── RibbonGroupPanel.cs │ ├── RibbonItem.cs │ ├── RibbonPanel.cs │ └── RibbonTab.cs ├── SelectControl.cs ├── SelectControlOld.cs ├── Shapes │ ├── Arrow.cs │ └── Triangle.cs ├── SideScrollViewer.cs ├── SpectrumSlider.cs ├── SplitButton.cs ├── StatusBand.cs ├── StatusList.cs ├── TextPath.cs ├── WebcamControl.xaml ├── WebcamControl.xaml.cs └── ZoomBox.cs ├── Docs └── Documentation.md ├── ImageUtil ├── Apng │ ├── Apng.cs │ └── Chunks │ │ ├── ActlChunk.cs │ │ ├── ApngFrame.cs │ │ ├── Chunk.cs │ │ ├── FctlChunk.cs │ │ ├── FdatChunk.cs │ │ ├── IdatChunk.cs │ │ └── IhdrChunk.cs ├── Gif │ ├── Decoder │ │ ├── GifApplicationExtension.cs │ │ ├── GifBlock.cs │ │ ├── GifBlockKind.cs │ │ ├── GifColor.cs │ │ ├── GifCommentExtension.cs │ │ ├── GifDecoderException.cs │ │ ├── GifExtension.cs │ │ ├── GifFile.cs │ │ ├── GifFrame.cs │ │ ├── GifGraphicControlExtension.cs │ │ ├── GifHeader.cs │ │ ├── GifHelpers.cs │ │ ├── GifImageData.cs │ │ ├── GifImageDescriptor.cs │ │ ├── GifLogicalScreenDescriptor.cs │ │ ├── GifPlainTextExtension.cs │ │ └── GifTrailer.cs │ ├── Encoder │ │ ├── BitEncoder.cs │ │ ├── GifFile.cs │ │ ├── LZWEncoder.cs │ │ ├── PixelUtil.cs │ │ └── Quantization │ │ │ ├── GrayscaleQuantizer.cs │ │ │ ├── MedianCutQuantizer.cs │ │ │ ├── MostUsedQuantizer.cs │ │ │ ├── NeuralQuantizer.cs │ │ │ ├── OctreeQuantizer.cs │ │ │ ├── PaletteQuantizer.cs │ │ │ └── Quantizer.cs │ └── LegacyEncoder │ │ ├── GifEncoder.cs │ │ ├── LZWEncoder.cs │ │ └── PixelUtilOld.cs ├── ImageMethods.cs ├── Psd │ ├── AditionalLayers │ │ ├── IAditionalLayerInfo.cs │ │ ├── IMetadata.cs │ │ ├── Metadata.cs │ │ └── MetadataContent.cs │ ├── Channel.cs │ ├── IPsdContent.cs │ ├── Image.cs │ ├── ImageChannelData.cs │ ├── ImageData.cs │ ├── ImageResourceBlocks │ │ ├── AnimationBlock.cs │ │ ├── IImageResource.cs │ │ └── ImageResources.cs │ ├── LayerAndMask.cs │ ├── LayerInfo.cs │ ├── LayerRecord.cs │ └── Psd.cs └── Video │ └── AviWriter.cs ├── Model ├── ApplicationModel.cs ├── ApplicationViewModel.cs ├── BindableBase.cs ├── BorderModel.cs ├── DefaultTaskModel.cs ├── DelayModel.cs ├── ExportFrame.cs ├── ExportProject.cs ├── FfmpegPreset.cs ├── FosshubItem.cs ├── FosshubRelease.cs ├── FosshubResponse.cs ├── FrameInfo.cs ├── KeyStrokesModel.cs ├── ManipulatedEventArgs.cs ├── MediaSource.cs ├── MouseClicksModel.cs ├── ProgressModel.cs ├── ProjectInfo.cs ├── ShadowModel.cs ├── UpdateAvailable.cs └── VideoSource.cs ├── ModelEx ├── Project.cs ├── Sequence.cs ├── Sequences │ ├── BrushSequence.cs │ ├── CursorSequence.cs │ ├── DrawingLayer.cs │ ├── KeySequence.cs │ ├── ObfuscationSequence.cs │ ├── ProgressSequence.cs │ ├── RasterSequence.cs │ ├── ShapeSequence.cs │ ├── SizeableSequence.cs │ ├── SubSequences │ │ ├── CursorEvent.cs │ │ ├── Frame.cs │ │ ├── KeyEvent.cs │ │ └── Shadow.cs │ └── TextSequence.cs └── Track.cs ├── Native ├── Monitor.cs └── Windows.cs ├── Properties └── AssemblyInfo.cs ├── Readme.md ├── Resources ├── Backgrounds.xaml ├── Commands.xaml ├── Flags.xaml ├── Glyphs.xaml ├── Localization │ ├── StringResources.ar.xaml │ ├── StringResources.cs.xaml │ ├── StringResources.da.xaml │ ├── StringResources.de.xaml │ ├── StringResources.en.xaml │ ├── StringResources.es-AR.xaml │ ├── StringResources.es.xaml │ ├── StringResources.fr.xaml │ ├── StringResources.hu.xaml │ ├── StringResources.it.xaml │ ├── StringResources.ja.xaml │ ├── StringResources.ko.xaml │ ├── StringResources.nl.xaml │ ├── StringResources.pl.xaml │ ├── StringResources.pt-PT.xaml │ ├── StringResources.pt.xaml │ ├── StringResources.ru.xaml │ ├── StringResources.sv.xaml │ ├── StringResources.sw.xaml │ ├── StringResources.tr.xaml │ ├── StringResources.uk.xaml │ ├── StringResources.vi.xaml │ ├── StringResources.zh-Hant.xaml │ └── StringResources.zh.xaml ├── Logo.ico ├── Settings.xaml ├── Style.css └── Vectors.xaml ├── ScreenToGif.csproj ├── Settings ├── Migrations │ ├── IMigration.cs │ ├── Migration0to2_28.cs │ └── Migrations.cs └── UserSettings.cs ├── Themes ├── Button.xaml ├── Colors │ ├── Dark.xaml │ ├── Light.xaml │ ├── Medium.xaml │ └── VeryDark.xaml ├── ComboBox.xaml ├── Common.xaml ├── DataGrid.xaml ├── EncoderListViewItem.xaml ├── Generic.xaml ├── Old.xaml └── Ribbon.xaml ├── UserControls ├── BorderPanel.xaml ├── BorderPanel.xaml.cs ├── DelayPanel.xaml ├── DelayPanel.xaml.cs ├── KeyStrokesPanel.xaml ├── KeyStrokesPanel.xaml.cs ├── MouseClicksPanel.xaml ├── MouseClicksPanel.xaml.cs ├── ProgressPanel.xaml ├── ProgressPanel.xaml.cs ├── ShadowPanel.xaml └── ShadowPanel.xaml.cs ├── Util ├── ActionStack.cs ├── Argument.cs ├── BitHelper.cs ├── BrushAnimation.cs ├── ClipBoard.cs ├── ColorExtensions.cs ├── ComboBoxItemTemplateSelector.cs ├── Commands.cs ├── Constants.cs ├── Converters │ ├── AlphaToOpacity.cs │ ├── BoolAnd.cs │ ├── BoolAndOrOrToVisibility.cs │ ├── BoolAndToVisibility.cs │ ├── BoolOr.cs │ ├── BoolOrAndToVisibility.cs │ ├── BoolOrToInvertedVisibility.cs │ ├── BoolOrToVisibility.cs │ ├── BoolToOpacity.cs │ ├── BytesToSize.cs │ ├── CenterPopupConverter.cs │ ├── ColorOrTransparent.cs │ ├── ColorToAlpha.cs │ ├── ColorToBrush.cs │ ├── CommandToKeyGesture.cs │ ├── ContentToVisibility.cs │ ├── CountToBool.cs │ ├── DoubleTimesAHundredToInt.cs │ ├── DoubleToInt.cs │ ├── DoubleToPercentage.cs │ ├── DoubleToPositionSize.cs │ ├── DoubleToRadius.cs │ ├── DoubleToThickness.cs │ ├── EnumToBool.cs │ ├── EnumToInt.cs │ ├── EnumToVisibility.cs │ ├── FontToSupportedGliph.cs │ ├── FormatConverter.cs │ ├── HasEnumToVisibility.cs │ ├── IntToBool.cs │ ├── IntToDecimal.cs │ ├── IntToDelayString.cs │ ├── IntToRect.cs │ ├── IntToString.cs │ ├── IntToVisibility.cs │ ├── InvertedBool.cs │ ├── InvertedBoolToVisibility.cs │ ├── InvertedEnumToBool.cs │ ├── InvertedEnumToVisibility.cs │ ├── InvertedIntToVisibility.cs │ ├── InvertedVisibility.cs │ ├── KeyGestureToString.cs │ ├── KeysToString.cs │ ├── MaximumValue.cs │ ├── MultiLineTitle.cs │ ├── PathToFilename.cs │ ├── PercentageToOpacity.cs │ ├── RoutedCommandToInputGestureText.cs │ ├── ScaleConverter.cs │ ├── SelectionToDrawingAttributes.cs │ ├── SelectionToEditingMode.cs │ ├── SelectionToStylusShape.cs │ ├── ShortcutKeys.cs │ ├── ShortcutSelection.cs │ ├── SourceToSize.cs │ ├── StageToButtonString.cs │ ├── StageToCanvas.cs │ ├── StringArrayTypeConverter.cs │ ├── StringToDoubleArray.cs │ ├── StringToInt.cs │ ├── StringToStaticResource.cs │ ├── StylusTipToBool.cs │ ├── TagToSelection.cs │ └── UriToBitmap.cs ├── CrcHelper.cs ├── DataGridHelper.cs ├── DirectoryHelper.cs ├── DynamicResourceBinding.cs ├── EncodingManager.cs ├── Enums.cs ├── ExtendedStack.cs ├── Extras.cs ├── FastRandom.cs ├── FeedbackHelper.cs ├── Framerate.cs ├── FrameworkHelper.cs ├── FunctionLoader.cs ├── GifskiInterop.cs ├── Glass.cs ├── Global.cs ├── HotKey.cs ├── HotKeyCollection.cs ├── Humanizer.cs ├── InputHook │ ├── CustomKeyEventArgs.cs │ ├── CustomKeyPressEventArgs.cs │ ├── InputHook.cs │ └── SimpleMouseGesture.cs ├── InterProcess.cs ├── ListBoxSelector.cs ├── LocalizationHelper.cs ├── LogWriter.cs ├── MathHelper.cs ├── MutexList.cs ├── Native.cs ├── NotificationManager.cs ├── Other.cs ├── Parameters.cs ├── ProcessHelper.cs ├── ScreenHelper.cs ├── ScrollSynchronizer.cs ├── Secret.cs ├── Serializer.cs ├── SimpleKeyGesture.cs ├── StreamHelpers.cs ├── ThemeHelper.cs ├── UiElementsExtension.cs ├── UserSettings.cs ├── VisualHelper.cs ├── WebHelper.cs └── WordLevel.cs ├── ViewModel ├── BaseViewModel.cs ├── EditorViewModel.cs ├── RecorderViewModel.cs ├── ScreenRecorderViewModel.cs └── WebcamViewModel.cs ├── Webcam ├── DirectShow │ ├── ControlStreaming.cs │ ├── CoreStreaming.cs │ ├── Devices.cs │ ├── EditStreaming.cs │ ├── ExtendStreaming.cs │ ├── Marshaller.cs │ ├── Util.cs │ ├── Uuid.cs │ └── WorkAround.cs └── DirectX │ ├── CaptureWebcam.cs │ ├── Filter.cs │ ├── FilterCollection.cs │ └── Filters.cs ├── Windows ├── Board.xaml ├── Board.xaml.cs ├── Editor.xaml ├── Editor.xaml.cs ├── EditorEx.xaml ├── EditorEx.xaml.cs ├── NewRecorder.xaml ├── NewRecorder.xaml.cs ├── NewWebcam.xaml ├── NewWebcam.xaml.cs ├── Options.xaml ├── Options.xaml.cs ├── Other │ ├── AutomatedTask.xaml │ ├── AutomatedTask.xaml.cs │ ├── CacheDialog.xaml │ ├── CacheDialog.xaml.cs │ ├── ColorSelector.xaml │ ├── ColorSelector.xaml.cs │ ├── Dialog.xaml │ ├── Dialog.xaml.cs │ ├── DownloadDialog.xaml │ ├── DownloadDialog.xaml.cs │ ├── Downloader.xaml │ ├── Downloader.xaml.cs │ ├── Encoder.xaml │ ├── Encoder.xaml.cs │ ├── ErrorDialog.xaml │ ├── ErrorDialog.xaml.cs │ ├── ExceptionDialog.xaml │ ├── ExceptionDialog.xaml.cs │ ├── ExceptionViewer.xaml │ ├── ExceptionViewer.xaml.cs │ ├── Feedback.xaml │ ├── Feedback.xaml.cs │ ├── FeedbackPreview.xaml │ ├── FeedbackPreview.xaml.cs │ ├── FfmpegPresetDialog.xaml │ ├── FfmpegPresetDialog.xaml.cs │ ├── GoTo.xaml │ ├── GoTo.xaml.cs │ ├── Insert.xaml │ ├── Insert.xaml.cs │ ├── KeyStrokes.xaml │ ├── KeyStrokes.xaml.cs │ ├── Localization.xaml │ ├── Localization.xaml.cs │ ├── PickAlbumDialog.xaml │ ├── PickAlbumDialog.xaml.cs │ ├── RegionMagnifier.xaml │ ├── RegionMagnifier.xaml.cs │ ├── RegionSelection.xaml │ ├── RegionSelection.xaml.cs │ ├── RegionSelector.xaml │ ├── RegionSelector.xaml.cs │ ├── Splash.xaml │ ├── Splash.xaml.cs │ ├── Startup.xaml │ ├── Startup.xaml.cs │ ├── TestField.xaml │ ├── TestField.xaml.cs │ ├── TextDialog.xaml │ ├── TextDialog.xaml.cs │ ├── Troubleshoot.xaml │ ├── Troubleshoot.xaml.cs │ ├── VideoSource.xaml │ └── VideoSource.xaml.cs ├── Recorder.xaml ├── Recorder.xaml.cs ├── Webcam.xaml └── Webcam.xaml.cs ├── app.manifest └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GifRecorder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/GifRecorder.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LOCALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/LOCALIZATION.md -------------------------------------------------------------------------------- /Other/HookTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/App.config -------------------------------------------------------------------------------- /Other/HookTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/App.xaml -------------------------------------------------------------------------------- /Other/HookTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/App.xaml.cs -------------------------------------------------------------------------------- /Other/HookTest/HookTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/HookTest.csproj -------------------------------------------------------------------------------- /Other/HookTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/MainWindow.xaml -------------------------------------------------------------------------------- /Other/HookTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Other/HookTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Other/HookTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Other/HookTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Properties/Resources.resx -------------------------------------------------------------------------------- /Other/HookTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Other/HookTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Properties/Settings.settings -------------------------------------------------------------------------------- /Other/HookTest/Util/CustomKeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Util/CustomKeyEventArgs.cs -------------------------------------------------------------------------------- /Other/HookTest/Util/CustomKeyPressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Util/CustomKeyPressEventArgs.cs -------------------------------------------------------------------------------- /Other/HookTest/Util/CustomMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Util/CustomMouseEventArgs.cs -------------------------------------------------------------------------------- /Other/HookTest/Util/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Util/Keys.cs -------------------------------------------------------------------------------- /Other/HookTest/Util/UserActivityHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/HookTest/Util/UserActivityHook.cs -------------------------------------------------------------------------------- /Other/PositioningTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/App.config -------------------------------------------------------------------------------- /Other/PositioningTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/App.xaml -------------------------------------------------------------------------------- /Other/PositioningTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/App.xaml.cs -------------------------------------------------------------------------------- /Other/PositioningTest/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/MainWindow.xaml -------------------------------------------------------------------------------- /Other/PositioningTest/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Other/PositioningTest/PositioningTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/PositioningTest.csproj -------------------------------------------------------------------------------- /Other/PositioningTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Other/PositioningTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Other/PositioningTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/Properties/Resources.resx -------------------------------------------------------------------------------- /Other/PositioningTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Other/PositioningTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/Properties/Settings.settings -------------------------------------------------------------------------------- /Other/PositioningTest/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/PositioningTest/app.manifest -------------------------------------------------------------------------------- /Other/Translator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/App.config -------------------------------------------------------------------------------- /Other/Translator/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/App.xaml -------------------------------------------------------------------------------- /Other/Translator/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/App.xaml.cs -------------------------------------------------------------------------------- /Other/Translator/Controls/ExtendedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Controls/ExtendedTextBox.cs -------------------------------------------------------------------------------- /Other/Translator/Controls/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Controls/ImageButton.cs -------------------------------------------------------------------------------- /Other/Translator/Controls/ImageMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Controls/ImageMenuItem.cs -------------------------------------------------------------------------------- /Other/Translator/Controls/StatusBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Controls/StatusBand.cs -------------------------------------------------------------------------------- /Other/Translator/Converters/MultiLineTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Converters/MultiLineTitle.cs -------------------------------------------------------------------------------- /Other/Translator/Converters/NullToInvertedBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Converters/NullToInvertedBool.cs -------------------------------------------------------------------------------- /Other/Translator/DataGridHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/DataGridHelper.cs -------------------------------------------------------------------------------- /Other/Translator/Dialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Dialog.xaml -------------------------------------------------------------------------------- /Other/Translator/Dialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Dialog.xaml.cs -------------------------------------------------------------------------------- /Other/Translator/ExceptionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/ExceptionDialog.xaml -------------------------------------------------------------------------------- /Other/Translator/ExceptionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/ExceptionDialog.xaml.cs -------------------------------------------------------------------------------- /Other/Translator/ExceptionViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/ExceptionViewer.xaml -------------------------------------------------------------------------------- /Other/Translator/ExceptionViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/ExceptionViewer.xaml.cs -------------------------------------------------------------------------------- /Other/Translator/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Logo.ico -------------------------------------------------------------------------------- /Other/Translator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Other/Translator/Themes/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/Buttons.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/Colors.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/ComboBox.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/DataGridStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/DataGridStyle.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/Generic.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/IconSet.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/IconSet.xaml -------------------------------------------------------------------------------- /Other/Translator/Themes/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Themes/ProgressBar.xaml -------------------------------------------------------------------------------- /Other/Translator/Translator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Translator.csproj -------------------------------------------------------------------------------- /Other/Translator/TranslatorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/TranslatorWindow.xaml -------------------------------------------------------------------------------- /Other/Translator/TranslatorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/TranslatorWindow.xaml.cs -------------------------------------------------------------------------------- /Other/Translator/Util/LogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/Util/LogWriter.cs -------------------------------------------------------------------------------- /Other/Translator/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/Other/Translator/VisualHelper.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/README.md -------------------------------------------------------------------------------- /ScreenToGif.Cloud.YandexDisk.Tests/1.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /ScreenToGif.Cloud.YandexDisk.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif.Cloud.YandexDisk.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScreenToGif.Cloud.YandexDisk.Tests/ScreenToGif.Cloud.YandexDisk.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif.Cloud.YandexDisk.Tests/ScreenToGif.Cloud.YandexDisk.Tests.csproj -------------------------------------------------------------------------------- /ScreenToGif.Cloud.YandexDisk.Tests/YandexDiskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif.Cloud.YandexDisk.Tests/YandexDiskTests.cs -------------------------------------------------------------------------------- /ScreenToGif.Cloud.YandexDisk.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif.Cloud.YandexDisk.Tests/packages.config -------------------------------------------------------------------------------- /ScreenToGif/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/App.config -------------------------------------------------------------------------------- /ScreenToGif/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/App.xaml -------------------------------------------------------------------------------- /ScreenToGif/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/App.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/BaseCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/BaseCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/CachedCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/CachedCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/DirectCachedCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/DirectCachedCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/DirectChangedCachedCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/DirectChangedCachedCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/DirectChangedImageCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/DirectChangedImageCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/DirectImageCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/DirectImageCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/ICapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/ICapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/ImageCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/ImageCapture.cs -------------------------------------------------------------------------------- /ScreenToGif/Capture/RegionSelectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Capture/RegionSelectHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/CloudFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/CloudFactory.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Gfycat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Gfycat.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/ICloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/ICloud.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Imgur/Imgur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Imgur/Imgur.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Imgur/ImgurAlbum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Imgur/ImgurAlbum.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Imgur/ImgurGetAlbumsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Imgur/ImgurGetAlbumsResponse.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Imgur/ImgurUploadImageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Imgur/ImgurUploadImageResponse.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/Imgur/OAuth2Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/Imgur/OAuth2Token.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/UploadedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/UploadedFile.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/UploadingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/UploadingException.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/YandexDisk/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/YandexDisk/Error.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/YandexDisk/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/YandexDisk/Link.cs -------------------------------------------------------------------------------- /ScreenToGif/Cloud/YandexDisk/YandexDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Cloud/YandexDisk/YandexDisk.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/AdornerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/AdornerControl.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/AttachmentListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/AttachmentListBoxItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/AwareTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/AwareTabItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/BaseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/BaseWindow.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Card.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/CircularProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/CircularProgressBar.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ColorBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ColorBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/CroppingAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/CroppingAdorner.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DataGridHeaderBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DataGridHeaderBorder.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DisplayTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DisplayTimer.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DoubleBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DoubleBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DoubleUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DoubleUpDown.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DragScrollGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DragScrollGrid.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DrawingCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DrawingCanvas.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DropDownButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/DynamicGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/DynamicGrid.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ElementAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ElementAdorner.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/EncoderListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/EncoderListViewItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedCheckBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedListBoxItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedMenuItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedProgressBar.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedRadioButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedRepeatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedRepeatButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedTextBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedToggleButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ExtendedUniformGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ExtendedUniformGrid.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/FolderSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/FolderSelector.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/FrameListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/FrameListBoxItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/FrameViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/FrameViewer.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/FrameworkElementAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/FrameworkElementAdorner.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/HeaderedTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/HeaderedTooltip.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/HexadecimalBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/HexadecimalBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/HideableTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/HideableTabControl.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/InkCanvasExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/InkCanvasExtended.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/IntegerBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/IntegerBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/IntegerUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/IntegerUpDown.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/KeyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/KeyBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/LabelSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/LabelSeparator.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/LightWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/LightWindow.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/MoveResizeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/MoveResizeControl.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/NotificationBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/NotificationBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/NotifyIcon.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/PuncturedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/PuncturedRect.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/QuantizationMethodItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/QuantizationMethodItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/RadialPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/RadialPanel.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/RangeSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/RangeSlider.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/RecorderWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/RecorderWindow.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ResizingAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ResizingAdorner.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/GroupSizeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/GroupSizeDefinition.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/ItemSizeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/ItemSizeDefinition.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/Ribbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/Ribbon.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/RibbonGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/RibbonGroup.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/RibbonGroupPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/RibbonGroupPanel.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/RibbonItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/RibbonItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/RibbonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/RibbonPanel.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Ribbon/RibbonTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Ribbon/RibbonTab.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/SelectControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/SelectControl.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/SelectControlOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/SelectControlOld.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Shapes/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Shapes/Arrow.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/Shapes/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/Shapes/Triangle.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/SideScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/SideScrollViewer.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/SpectrumSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/SpectrumSlider.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/SplitButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/SplitButton.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/StatusBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/StatusBand.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/StatusList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/StatusList.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/TextPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/TextPath.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/WebcamControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/WebcamControl.xaml -------------------------------------------------------------------------------- /ScreenToGif/Controls/WebcamControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/WebcamControl.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Controls/ZoomBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Controls/ZoomBox.cs -------------------------------------------------------------------------------- /ScreenToGif/Docs/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Docs/Documentation.md -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Apng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Apng.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/ActlChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/ActlChunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/ApngFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/ApngFrame.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/Chunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/Chunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/FctlChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/FctlChunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/FdatChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/FdatChunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/IdatChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/IdatChunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Apng/Chunks/IhdrChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Apng/Chunks/IhdrChunk.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifApplicationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifApplicationExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifBlock.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifBlockKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifBlockKind.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifColor.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifCommentExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifCommentExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifDecoderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifDecoderException.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifFile.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifFrame.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifGraphicControlExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifGraphicControlExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifHeader.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifHelpers.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifImageData.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifImageDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifImageDescriptor.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifLogicalScreenDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifLogicalScreenDescriptor.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifPlainTextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifPlainTextExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Decoder/GifTrailer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Decoder/GifTrailer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/BitEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/BitEncoder.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/GifFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/GifFile.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/LZWEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/LZWEncoder.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/PixelUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/PixelUtil.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/GrayscaleQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/GrayscaleQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/MedianCutQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/MedianCutQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/MostUsedQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/MostUsedQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/NeuralQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/NeuralQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/OctreeQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/OctreeQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/PaletteQuantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/PaletteQuantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/Encoder/Quantization/Quantizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/Encoder/Quantization/Quantizer.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/LegacyEncoder/GifEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/LegacyEncoder/GifEncoder.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/LegacyEncoder/LZWEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/LegacyEncoder/LZWEncoder.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Gif/LegacyEncoder/PixelUtilOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Gif/LegacyEncoder/PixelUtilOld.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/ImageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/ImageMethods.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/AditionalLayers/IAditionalLayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/AditionalLayers/IAditionalLayerInfo.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/AditionalLayers/IMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/AditionalLayers/IMetadata.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/AditionalLayers/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/AditionalLayers/Metadata.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/AditionalLayers/MetadataContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/AditionalLayers/MetadataContent.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/Channel.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/IPsdContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/IPsdContent.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/Image.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/ImageChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/ImageChannelData.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/ImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/ImageData.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/AnimationBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/AnimationBlock.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/IImageResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/IImageResource.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/ImageResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/ImageResourceBlocks/ImageResources.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/LayerAndMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/LayerAndMask.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/LayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/LayerInfo.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/LayerRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/LayerRecord.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Psd/Psd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Psd/Psd.cs -------------------------------------------------------------------------------- /ScreenToGif/ImageUtil/Video/AviWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ImageUtil/Video/AviWriter.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ApplicationModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ApplicationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ApplicationViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/BindableBase.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/BorderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/BorderModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/DefaultTaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/DefaultTaskModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/DelayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/DelayModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ExportFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ExportFrame.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ExportProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ExportProject.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/FfmpegPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/FfmpegPreset.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/FosshubItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/FosshubItem.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/FosshubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/FosshubRelease.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/FosshubResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/FosshubResponse.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/FrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/FrameInfo.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/KeyStrokesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/KeyStrokesModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ManipulatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ManipulatedEventArgs.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/MediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/MediaSource.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/MouseClicksModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/MouseClicksModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ProgressModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ProgressModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ProjectInfo.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/ShadowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/ShadowModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/UpdateAvailable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/UpdateAvailable.cs -------------------------------------------------------------------------------- /ScreenToGif/Model/VideoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Model/VideoSource.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Project.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/BrushSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/BrushSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/CursorSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/CursorSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/DrawingLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/DrawingLayer.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/KeySequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/KeySequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/ObfuscationSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/ObfuscationSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/ProgressSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/ProgressSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/RasterSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/RasterSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/ShapeSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/ShapeSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/SizeableSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/SizeableSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/SubSequences/CursorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/SubSequences/CursorEvent.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/SubSequences/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/SubSequences/Frame.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/SubSequences/KeyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/SubSequences/KeyEvent.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/SubSequences/Shadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/SubSequences/Shadow.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Sequences/TextSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Sequences/TextSequence.cs -------------------------------------------------------------------------------- /ScreenToGif/ModelEx/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ModelEx/Track.cs -------------------------------------------------------------------------------- /ScreenToGif/Native/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Native/Monitor.cs -------------------------------------------------------------------------------- /ScreenToGif/Native/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Native/Windows.cs -------------------------------------------------------------------------------- /ScreenToGif/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScreenToGif/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Readme.md -------------------------------------------------------------------------------- /ScreenToGif/Resources/Backgrounds.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Backgrounds.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Commands.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Commands.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Flags.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Flags.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Glyphs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Glyphs.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.ar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.ar.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.cs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.cs.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.da.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.da.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.de.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.de.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.en.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.en.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.es-AR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.es-AR.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.es.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.es.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.fr.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.fr.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.hu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.hu.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.it.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.it.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.ja.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.ja.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.ko.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.ko.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.nl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.nl.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.pl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.pl.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.pt-PT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.pt-PT.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.pt.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.pt.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.ru.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.ru.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.sv.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.sv.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.sw.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.sw.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.tr.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.tr.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.uk.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.uk.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.vi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.vi.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.zh-Hant.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.zh-Hant.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Localization/StringResources.zh.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Localization/StringResources.zh.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Logo.ico -------------------------------------------------------------------------------- /ScreenToGif/Resources/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Settings.xaml -------------------------------------------------------------------------------- /ScreenToGif/Resources/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Style.css -------------------------------------------------------------------------------- /ScreenToGif/Resources/Vectors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Resources/Vectors.xaml -------------------------------------------------------------------------------- /ScreenToGif/ScreenToGif.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ScreenToGif.csproj -------------------------------------------------------------------------------- /ScreenToGif/Settings/Migrations/IMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Settings/Migrations/IMigration.cs -------------------------------------------------------------------------------- /ScreenToGif/Settings/Migrations/Migration0to2_28.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Settings/Migrations/Migration0to2_28.cs -------------------------------------------------------------------------------- /ScreenToGif/Settings/Migrations/Migrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Settings/Migrations/Migrations.cs -------------------------------------------------------------------------------- /ScreenToGif/Settings/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Settings/UserSettings.cs -------------------------------------------------------------------------------- /ScreenToGif/Themes/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Button.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Colors/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Colors/Dark.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Colors/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Colors/Light.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Colors/Medium.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Colors/Medium.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Colors/VeryDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Colors/VeryDark.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/ComboBox.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Common.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/DataGrid.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/EncoderListViewItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/EncoderListViewItem.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Generic.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Old.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Old.xaml -------------------------------------------------------------------------------- /ScreenToGif/Themes/Ribbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Themes/Ribbon.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/BorderPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/BorderPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/BorderPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/BorderPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/UserControls/DelayPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/DelayPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/DelayPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/DelayPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/UserControls/KeyStrokesPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/KeyStrokesPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/KeyStrokesPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/KeyStrokesPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/UserControls/MouseClicksPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/MouseClicksPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/MouseClicksPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/MouseClicksPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/UserControls/ProgressPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/ProgressPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/ProgressPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/ProgressPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/UserControls/ShadowPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/ShadowPanel.xaml -------------------------------------------------------------------------------- /ScreenToGif/UserControls/ShadowPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/UserControls/ShadowPanel.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ActionStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ActionStack.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Argument.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/BitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/BitHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/BrushAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/BrushAnimation.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ClipBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ClipBoard.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ColorExtensions.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ComboBoxItemTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ComboBoxItemTemplateSelector.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Commands.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Constants.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/AlphaToOpacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/AlphaToOpacity.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolAnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolAnd.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolAndOrOrToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolAndOrOrToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolAndToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolAndToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolOr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolOr.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolOrAndToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolOrAndToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolOrToInvertedVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolOrToInvertedVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolOrToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolOrToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BoolToOpacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BoolToOpacity.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/BytesToSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/BytesToSize.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/CenterPopupConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/CenterPopupConverter.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ColorOrTransparent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ColorOrTransparent.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ColorToAlpha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ColorToAlpha.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ColorToBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ColorToBrush.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/CommandToKeyGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/CommandToKeyGesture.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ContentToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ContentToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/CountToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/CountToBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleTimesAHundredToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleTimesAHundredToInt.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleToInt.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleToPercentage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleToPercentage.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleToPositionSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleToPositionSize.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleToRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleToRadius.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/DoubleToThickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/DoubleToThickness.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/EnumToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/EnumToBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/EnumToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/EnumToInt.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/EnumToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/EnumToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/FontToSupportedGliph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/FontToSupportedGliph.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/FormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/FormatConverter.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/HasEnumToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/HasEnumToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToDecimal.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToDelayString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToDelayString.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToRect.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToString.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/IntToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/IntToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedBoolToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedBoolToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedEnumToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedEnumToBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedEnumToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedEnumToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedIntToVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedIntToVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/InvertedVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/InvertedVisibility.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/KeyGestureToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/KeyGestureToString.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/KeysToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/KeysToString.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/MaximumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/MaximumValue.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/MultiLineTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/MultiLineTitle.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/PathToFilename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/PathToFilename.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/PercentageToOpacity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/PercentageToOpacity.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/RoutedCommandToInputGestureText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/RoutedCommandToInputGestureText.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ScaleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ScaleConverter.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/SelectionToDrawingAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/SelectionToDrawingAttributes.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/SelectionToEditingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/SelectionToEditingMode.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/SelectionToStylusShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/SelectionToStylusShape.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ShortcutKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ShortcutKeys.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/ShortcutSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/ShortcutSelection.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/SourceToSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/SourceToSize.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StageToButtonString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StageToButtonString.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StageToCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StageToCanvas.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StringArrayTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StringArrayTypeConverter.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StringToDoubleArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StringToDoubleArray.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StringToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StringToInt.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StringToStaticResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StringToStaticResource.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/StylusTipToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/StylusTipToBool.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/TagToSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/TagToSelection.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Converters/UriToBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Converters/UriToBitmap.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/CrcHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/CrcHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/DataGridHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/DataGridHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/DirectoryHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/DynamicResourceBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/DynamicResourceBinding.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/EncodingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/EncodingManager.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Enums.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ExtendedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ExtendedStack.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Extras.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Extras.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/FastRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/FastRandom.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/FeedbackHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/FeedbackHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Framerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Framerate.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/FrameworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/FrameworkHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/FunctionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/FunctionLoader.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/GifskiInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/GifskiInterop.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Glass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Glass.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Global.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/HotKey.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/HotKeyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/HotKeyCollection.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Humanizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Humanizer.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/InputHook/CustomKeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/InputHook/CustomKeyEventArgs.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/InputHook/CustomKeyPressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/InputHook/CustomKeyPressEventArgs.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/InputHook/InputHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/InputHook/InputHook.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/InputHook/SimpleMouseGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/InputHook/SimpleMouseGesture.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/InterProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/InterProcess.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ListBoxSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ListBoxSelector.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/LocalizationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/LocalizationHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/LogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/LogWriter.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/MathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/MathHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/MutexList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/MutexList.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Native.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/NotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/NotificationManager.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Other.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Other.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Parameters.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ProcessHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ScreenHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ScrollSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ScrollSynchronizer.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Secret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Secret.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/Serializer.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/SimpleKeyGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/SimpleKeyGesture.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/StreamHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/StreamHelpers.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/ThemeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/ThemeHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/UiElementsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/UiElementsExtension.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/UserSettings.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/VisualHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/WebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/WebHelper.cs -------------------------------------------------------------------------------- /ScreenToGif/Util/WordLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Util/WordLevel.cs -------------------------------------------------------------------------------- /ScreenToGif/ViewModel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ViewModel/BaseViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/ViewModel/EditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ViewModel/EditorViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/ViewModel/RecorderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ViewModel/RecorderViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/ViewModel/ScreenRecorderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ViewModel/ScreenRecorderViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/ViewModel/WebcamViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/ViewModel/WebcamViewModel.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/ControlStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/ControlStreaming.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/CoreStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/CoreStreaming.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/Devices.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/EditStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/EditStreaming.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/ExtendStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/ExtendStreaming.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/Marshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/Marshaller.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/Util.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/Uuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/Uuid.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectShow/WorkAround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectShow/WorkAround.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectX/CaptureWebcam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectX/CaptureWebcam.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectX/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectX/Filter.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectX/FilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectX/FilterCollection.cs -------------------------------------------------------------------------------- /ScreenToGif/Webcam/DirectX/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Webcam/DirectX/Filters.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Board.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Board.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Board.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Board.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Editor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Editor.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Editor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Editor.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/EditorEx.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/EditorEx.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/EditorEx.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/EditorEx.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/NewRecorder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/NewRecorder.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/NewRecorder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/NewRecorder.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/NewWebcam.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/NewWebcam.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/NewWebcam.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/NewWebcam.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Options.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Options.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Options.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Options.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/AutomatedTask.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/AutomatedTask.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/AutomatedTask.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/AutomatedTask.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/CacheDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/CacheDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/CacheDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/CacheDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ColorSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ColorSelector.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ColorSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ColorSelector.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Dialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Dialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Dialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Dialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/DownloadDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/DownloadDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/DownloadDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/DownloadDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Downloader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Downloader.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Downloader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Downloader.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Encoder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Encoder.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Encoder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Encoder.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ErrorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ErrorDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ErrorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ErrorDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ExceptionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ExceptionDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ExceptionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ExceptionDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ExceptionViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ExceptionViewer.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/ExceptionViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/ExceptionViewer.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Feedback.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Feedback.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Feedback.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Feedback.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/FeedbackPreview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/FeedbackPreview.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/FeedbackPreview.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/FeedbackPreview.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/FfmpegPresetDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/FfmpegPresetDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/FfmpegPresetDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/FfmpegPresetDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/GoTo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/GoTo.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/GoTo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/GoTo.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Insert.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Insert.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Insert.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Insert.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/KeyStrokes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/KeyStrokes.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/KeyStrokes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/KeyStrokes.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Localization.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Localization.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Localization.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Localization.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/PickAlbumDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/PickAlbumDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/PickAlbumDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/PickAlbumDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionMagnifier.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionMagnifier.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionMagnifier.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionMagnifier.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionSelection.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionSelection.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionSelection.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionSelector.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/RegionSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/RegionSelector.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Splash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Splash.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Splash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Splash.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Startup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Startup.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Startup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Startup.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/TestField.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/TestField.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/TestField.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/TestField.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/TextDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/TextDialog.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/TextDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/TextDialog.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Troubleshoot.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Troubleshoot.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/Troubleshoot.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/Troubleshoot.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/VideoSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/VideoSource.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Other/VideoSource.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Other/VideoSource.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Recorder.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Recorder.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Recorder.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Recorder.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/Windows/Webcam.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Webcam.xaml -------------------------------------------------------------------------------- /ScreenToGif/Windows/Webcam.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/Windows/Webcam.xaml.cs -------------------------------------------------------------------------------- /ScreenToGif/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/app.manifest -------------------------------------------------------------------------------- /ScreenToGif/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabrogden/ScreenToGif/HEAD/ScreenToGif/packages.config --------------------------------------------------------------------------------