├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature_request.md │ └── question-custom.md ├── .gitignore ├── .gitmodules ├── COPYING.GPLv3 ├── FramePFX-DesktopUI_2024-12-06_17.33.20.png ├── FramePFX-DesktopUI_2024-12-07_00.13.06.png ├── FramePFX-DesktopUI_2024-12-27_03.33.53.png ├── FramePFX-DesktopUI_2024-12-29_08.30.49.png ├── FramePFX.Avalonia ├── App.axaml ├── App.axaml.cs ├── AppSplashScreen.axaml ├── AppSplashScreen.axaml.cs ├── Configs │ ├── DataParameterStartupBehaviourPropertyEditorSlot.cs │ ├── EditorWindowPropEditorConfigurationPage.cs │ └── StartupPropEditorConfigurationPage.cs ├── Editing │ ├── Automation │ │ ├── AutomationSequenceEditorControl.cs │ │ ├── AutomationSequenceEditorThemes.axaml │ │ ├── AvAutomationUtils.cs │ │ ├── KeyFrameElementPart.cs │ │ └── KeyFrameUI.cs │ ├── CommandUsages │ │ ├── CreateVideoTrackCommandUsage.cs │ │ ├── DeleteSpecificTrackCommandUsage.cs │ │ └── ToggleLoopCommandUsage.cs │ ├── Playheads │ │ ├── BasePlayHeadControl.cs │ │ ├── CancellableThumb.cs │ │ ├── FlatLinePlayHeadControl.cs │ │ ├── GrippedPlayHeadControl.cs │ │ ├── PlayHeadThemes.axaml │ │ └── PlayheadPositionTextControl.cs │ ├── ResourceManaging │ │ ├── Lists │ │ │ ├── ContentItems │ │ │ │ ├── RELIC_Colour.cs │ │ │ │ ├── RELIC_Composition.cs │ │ │ │ ├── RELIC_Folder.cs │ │ │ │ └── RELIC_Image.cs │ │ │ ├── ResourceExplorerListBox.cs │ │ │ ├── ResourceExplorerListBoxItem.cs │ │ │ ├── ResourceExplorerSelectionManager.cs │ │ │ └── ResourceListThemes.axaml │ │ ├── ResourcePanelControl.cs │ │ ├── TreeListSelectionMergerManager.cs │ │ └── Trees │ │ │ ├── DragLocation.cs │ │ │ ├── IResourceTreeOrNode.cs │ │ │ ├── ResourceNodeDragState.cs │ │ │ ├── ResourceTreeSelectionManager.cs │ │ │ ├── ResourceTreeThemes.axaml │ │ │ ├── ResourceTreeView.cs │ │ │ ├── ResourceTreeViewItem.cs │ │ │ ├── StandardResourceTreeView.cs │ │ │ └── StandardResourceTreeViewItem.cs │ ├── Timelines │ │ ├── ClipStoragePanel.cs │ │ ├── Selection │ │ │ ├── ClipSelectionManager.cs │ │ │ ├── TimelineClipSelectionManager.cs │ │ │ └── TrackSelectionManager.cs │ │ ├── TimelineClipControl.cs │ │ ├── TimelineControl.cs │ │ ├── TimelineLoopControl.cs │ │ ├── TimelineRuler.cs │ │ ├── TimelineRulerThemes.axaml │ │ ├── TimelineScrollableContentGrid.cs │ │ ├── TimelineThemes.axaml │ │ ├── TimelineTrackControl.cs │ │ ├── TrackStoragePanel.cs │ │ └── TrackSurfaces │ │ │ ├── TrackControlSurface.cs │ │ │ ├── TrackControlSurfaceItem.cs │ │ │ ├── TrackControlSurfaceList.cs │ │ │ ├── TrackControlSurfacePanel.cs │ │ │ ├── TrackControlSurfaceThemes.axaml │ │ │ └── TrackControlSurfaceVideo.cs │ └── VideoEditorViewPortControl.cs ├── EditorWindow.axaml ├── EditorWindow.axaml.cs ├── Exporting │ ├── ExportDialog.axaml │ ├── ExportDialog.axaml.cs │ ├── ExportDialogServiceImpl.cs │ ├── ExportProgressDialog.axaml │ └── ExportProgressDialog.axaml.cs ├── FramePFX-256.ico ├── FramePFX.Avalonia.csproj ├── FramePFXApplication.cs ├── HandleRequestBringIntoView.cs ├── Keymap.xml ├── Keymap.xsd ├── Program.cs ├── Services │ └── Startups │ │ ├── StartupManagerFramePFX.cs │ │ ├── StartupWindow.axaml │ │ ├── StartupWindow.axaml.cs │ │ └── VideoEditorServiceImpl.cs └── app.manifest ├── FramePFX.BaseFrontEnd ├── Bindings │ └── AutomationBinder.cs ├── Configurations │ ├── BasicEditorWindowConfigurationPageControl.cs │ └── ConfigurationPageStyles.axaml ├── Converters │ └── AutomationBrushConverter.cs ├── Editing │ ├── GeneralControlStyles.axaml │ ├── PlayStateButtonControl.cs │ ├── ScrollBinder.cs │ └── TogglePlayStateButtonControl.cs ├── FramePFX.BaseFrontEnd.csproj ├── PropertyEditing │ ├── Automation │ │ ├── BaseNumericParameterPropertyEditorSlotControl.cs │ │ ├── BaseParameterPropertyEditorSlotControl.cs │ │ ├── KeyFrameToolsControl.cs │ │ ├── ParameterBoolPropertyEditorSlotControl.cs │ │ ├── ParameterDoublePropertyEditorSlotControl.cs │ │ ├── ParameterFloatPropertyEditorSlotControl.cs │ │ ├── ParameterLongPropertyEditorSlotControl.cs │ │ └── ParameterVector2PropertyEditorSlotControl.cs │ ├── Core │ │ ├── DisplayNamePropertyEditorSlotControl.cs │ │ ├── TimecodeFontFamilyPropertyEditorSlotControl.cs │ │ └── VideoClipMediaFrameOffsetPropertyEditorSlotControl.cs │ └── PropertyEditorSlotContentStyles.axaml ├── ResourceManaging │ ├── Autoloading │ │ ├── InvalidImagePathEntryControl.cs │ │ ├── InvalidResourceEntryControl.cs │ │ ├── InvalidResourceEntryThemes.axaml │ │ ├── ResourceLoaderDialog.axaml │ │ ├── ResourceLoaderDialog.axaml.cs │ │ └── ResourceLoaderImpl.cs │ └── ResourceExplorerListItemContent.cs └── Themes │ ├── FramePFXBrushLoader.cs │ └── FramePFXThemes.axaml ├── FramePFX.NativeEngine ├── FramePFX.NativeEngine.vcxproj ├── FramePFX.NativeEngine.vcxproj.filters ├── api.cpp ├── dllmain.cpp ├── effects │ ├── pixellate.cpp │ └── pixellate.h └── std.h ├── FramePFX.Plugins.AnotherTestPlugin ├── FramePFX.Plugins.AnotherTestPlugin.csproj ├── TestPlugin.cs └── TestPluginConfigurationPage.cs ├── FramePFX.Plugins.CircleClipPlugin ├── FramePFX.Plugins.CircleClipPlugin.csproj ├── MyCircleClipPlugin.cs ├── MyCirclePluginVideoClip.cs └── plugin.xml ├── FramePFX.Plugins.FFmpegMedia ├── Clips │ └── AVMediaVideoClip.cs ├── Commands │ ├── AddAVMediaClipCommand.cs │ └── AddResourceAVMediaCommand.cs ├── Exporter │ ├── DataParameterAVCodecIDPropertyEditorSlot.cs │ ├── FFmpegExportContext.cs │ └── FFmpegExporterInfo.cs ├── FFmpegMediaPlugin.cs ├── FFmpegMediaStyles.axaml ├── FramePFX.Plugins.FFmpegMedia.csproj ├── Reading │ ├── AudioStream.cs │ ├── FFmpegDecodeThread.cs │ ├── FFmpegReader.cs │ ├── FrameQueue.cs │ ├── StreamWrapper.cs │ └── VideoStream.cs ├── Resources │ ├── Controls │ │ ├── InvalidMediaPathEntryControl.cs │ │ └── RELIC_AVMedia.cs │ ├── InvalidMediaPathEntry.cs │ └── ResourceAVMedia.cs └── Wrappers │ ├── AudioFormat.cs │ ├── AudioFrame.cs │ ├── AudioQueue.cs │ ├── Codecs │ ├── AudioDecoder.cs │ ├── AudioEncoder.cs │ ├── CodecBase.cs │ ├── CodecHardwareConfig.cs │ ├── MediaDecoder.cs │ ├── MediaEncoder.cs │ ├── VideoDecoder.cs │ └── VideoEncoder.cs │ ├── Containers │ ├── ContainerTypes.cs │ ├── IOContext.cs │ ├── MediaDemuxer.cs │ ├── MediaMuxer.cs │ ├── MediaStream.cs │ └── StreamIOContext.cs │ ├── EnumAliases.cs │ ├── FFObject.cs │ ├── FFUtils.cs │ ├── HardwareDevice.cs │ ├── HardwareFrameConstraints.cs │ ├── HardwareFramePool.cs │ ├── LavResult.cs │ ├── MediaFrame.cs │ ├── MediaPacket.cs │ ├── PictureFormat.cs │ ├── SwResampler.cs │ ├── SwScaler.cs │ └── VideoFrame.cs ├── FramePFX.sln ├── FramePFX.sln.DotSettings ├── FramePFX ├── AutomationIcons.cs ├── Configurations │ ├── Commands │ │ └── OpenProjectSettingsCommand.cs │ ├── EditorWindowConfigurationPage.cs │ └── ProjectConfigurationManager.cs ├── DataKeys.cs ├── Editing │ ├── AudioRingBuffer.cs │ ├── Automation │ │ ├── AutomationData.cs │ │ ├── AutomationEngine.cs │ │ ├── AutomationUtils.cs │ │ ├── IAutomatable.cs │ │ ├── Keyframes │ │ │ ├── AutomationDataType.cs │ │ │ ├── AutomationSequence.cs │ │ │ ├── InterpolationType.cs │ │ │ ├── KeyFrame.cs │ │ │ └── KeyFrameUtils.cs │ │ ├── Params │ │ │ ├── Parameter.cs │ │ │ ├── ParameterChangedEventHandler.cs │ │ │ ├── ParameterDescriptor.cs │ │ │ ├── ParameterFlags.cs │ │ │ └── ParameterKey.cs │ │ └── SwitchAutomationDataTypeAttribute.cs │ ├── Commands │ │ ├── BasicPlayActionCommand.cs │ │ ├── ChangeClipPlaybackSpeedCommand.cs │ │ ├── CloseProjectCommand.cs │ │ ├── CreateCompositionFromSelectionCommand.cs │ │ ├── ExportCommand.cs │ │ ├── NewProjectCommand.cs │ │ ├── OpenCompositionClipTimelineCommand.cs │ │ ├── OpenProjectCommand.cs │ │ ├── RenameDisplayNameCommand.cs │ │ ├── SaveProjectCommand.cs │ │ ├── TimelineCommandUtils.cs │ │ ├── ToggleClipsEnabledCommand.cs │ │ ├── TogglePlayCommand.cs │ │ ├── ToggleTracksEnabledCommand.cs │ │ └── UndoRedoCommand.cs │ ├── CompositionTimeline.cs │ ├── ContextRegistries │ │ ├── ClipContextRegistry.cs │ │ ├── ResourceContextRegistry.cs │ │ ├── TimelineContextRegistry.cs │ │ └── TrackContextRegistry.cs │ ├── EditorConfigurationOptions.cs │ ├── EffectSource │ │ ├── EffectProviderEntry.cs │ │ └── EffectProviderManager.cs │ ├── Exporting │ │ ├── BaseExportContext.cs │ │ ├── BaseExporterInfo.cs │ │ ├── ExportSetup.cs │ │ ├── ExporterKey.cs │ │ ├── ExporterRegistry.cs │ │ ├── IExportDialogService.cs │ │ ├── IExportProgress.cs │ │ └── README.txt │ ├── Factories │ │ ├── ClipFactory.cs │ │ ├── EffectFactory.cs │ │ ├── ObjectFactory.cs │ │ ├── ReflectiveObjectFactory.cs │ │ ├── ResourceTypeFactory.cs │ │ └── TrackFactory.cs │ ├── IHaveProject.cs │ ├── IHaveTimeline.cs │ ├── IResourceClipRegistry.cs │ ├── PlayHeadType.cs │ ├── PlayState.cs │ ├── PlaybackManager.cs │ ├── Project.cs │ ├── ProjectSettings.cs │ ├── PropertyEditors │ │ ├── CPUPixelateEffectPropertyEditorGroup.cs │ │ ├── TimecodeFontFamilyPropertyEditorSlot.cs │ │ └── VideoClipMediaFrameOffsetPropertyEditorSlot.cs │ ├── RenderLockedData.cs │ ├── RenderUtils.cs │ ├── Rendering │ │ ├── EnumRenderQuality.cs │ │ ├── PreRenderContext.cs │ │ ├── RenderContext.cs │ │ ├── RenderFrameInfo.cs │ │ ├── RenderManager.cs │ │ ├── RenderState.cs │ │ └── TrackRenderState.cs │ ├── ResourceManaging │ │ ├── Autoloading │ │ │ ├── InvalidResourceEntry.cs │ │ │ └── ResourceLoader.cs │ │ ├── BaseResource.cs │ │ ├── Commands │ │ │ ├── AddResourceCommand.cs │ │ │ ├── ChangeResourceColourCommand.cs │ │ │ ├── DeleteResourcesCommand.cs │ │ │ ├── GroupResourcesCommand.cs │ │ │ ├── OpenCompositionTimelineCommand.cs │ │ │ ├── RenameResourceCommand.cs │ │ │ ├── ResourceCommandUtils.cs │ │ │ ├── SetResourcesOfflineCommand.cs │ │ │ ├── SetResourcesOnlineCommand.cs │ │ │ └── ToggleOnlineStateCommand.cs │ │ ├── Events │ │ │ ├── ResourceEvents.cs │ │ │ └── ResourceManagerEvents.cs │ │ ├── IResourceLoaderDialogService.cs │ │ ├── IResourceSelectionManager.cs │ │ ├── NewResourceHelper │ │ │ ├── IResourceHolder.cs │ │ │ ├── ResourceHelper.cs │ │ │ └── ResourceSlot.cs │ │ ├── ResourceChangedEventHandler.cs │ │ ├── ResourceDropRegistry.cs │ │ ├── ResourceFolder.cs │ │ ├── ResourceItem.cs │ │ ├── ResourceManager.cs │ │ ├── ResourceObjectUtils.cs │ │ ├── ResourceRemoveFlags.cs │ │ ├── Resources │ │ │ ├── InvalidImagePathEntry.cs │ │ │ ├── ResourceColour.cs │ │ │ ├── ResourceComposition.cs │ │ │ └── ResourceImage.cs │ │ └── UI │ │ │ ├── IResourceListElement.cs │ │ │ ├── IResourceListItemElement.cs │ │ │ ├── IResourceManagerElement.cs │ │ │ ├── IResourceTreeElement.cs │ │ │ ├── IResourceTreeNodeElement.cs │ │ │ └── TreePath.cs │ ├── SnapHelper.cs │ ├── StartupConfigurationOptions.cs │ ├── Timelines │ │ ├── ClipDropRegistry.cs │ │ ├── Clips │ │ │ ├── Audio │ │ │ │ └── AudioClip.cs │ │ │ ├── Clip.cs │ │ │ ├── ClipGroup.cs │ │ │ ├── Core │ │ │ │ ├── CompositionVideoClip.cs │ │ │ │ ├── ImageVideoClip.cs │ │ │ │ ├── TextVideoClip.cs │ │ │ │ ├── TimecodeClip.cs │ │ │ │ └── VideoClipShape.cs │ │ │ ├── IClip.cs │ │ │ └── Video │ │ │ │ ├── VideoClip.cs │ │ │ │ ├── VideoSource.cs │ │ │ │ └── VideoSourceContext.cs │ │ ├── Commands │ │ │ ├── AddClipCommand.cs │ │ │ ├── DeleteClipOwnerTrackCommand.cs │ │ │ ├── DeleteClipsCommand.cs │ │ │ ├── DeleteSelectedTracksCommand.cs │ │ │ ├── DeleteSpecificTrackCommand.cs │ │ │ ├── NewAudioTrackCommand.cs │ │ │ ├── NewVideoTrackCommand.cs │ │ │ ├── SelectAllClipsCommand.cs │ │ │ ├── SelectClipsInTracksCommand.cs │ │ │ ├── SplitClipsCommand.cs │ │ │ ├── ToggleClipAutomationCommand.cs │ │ │ ├── ToggleLoopTimelineRegionCommand.cs │ │ │ ├── ToggleTrackAutomationCommand.cs │ │ │ └── TrimStartCommand.cs │ │ ├── Effects │ │ │ ├── BaseEffect.cs │ │ │ ├── CPUPixelateEffect.cs │ │ │ └── VideoEffect.cs │ │ ├── FrameSpan.cs │ │ ├── IHaveEffects.cs │ │ ├── IStrictFrameRange.cs │ │ ├── SelectionType.cs │ │ ├── Timeline.cs │ │ ├── TimelineDropManager.cs │ │ ├── TrackFrameSpan.cs │ │ ├── TrackPoint.cs │ │ ├── Tracks │ │ │ ├── AudioTrack.cs │ │ │ ├── ClipCloneOptions.cs │ │ │ ├── ClipRangeCache.cs │ │ │ ├── Track.cs │ │ │ ├── TrackCloneOptions.cs │ │ │ └── VideoTrack.cs │ │ └── ZoomType.cs │ ├── Toolbars │ │ ├── ControlSurfaceListToolBarManager.cs │ │ ├── SimpleCommandToolBarButton.cs │ │ ├── TimelineToolBarManager.cs │ │ └── ViewPortToolBarManager.cs │ ├── UI │ │ ├── IClipElement.cs │ │ ├── ITimelineElement.cs │ │ ├── ITrackElement.cs │ │ ├── IVideoEditorWindow.cs │ │ └── IViewPortElement.cs │ ├── Utils │ │ ├── ItemCacheStack.cs │ │ └── SKUtils.cs │ ├── VideoEditor.cs │ └── VideoEditorListener.cs ├── FractionUtils.cs ├── FramePFX.csproj ├── Natives │ └── PFXNative.cs ├── PropertyEditing │ ├── Automation │ │ ├── NumericParameterPropertyEditorSlot.cs │ │ ├── ParameterBoolPropertyEditorSlot.cs │ │ ├── ParameterDoublePropertyEditorSlot.cs │ │ ├── ParameterFloatPropertyEditorSlot.cs │ │ ├── ParameterLongPropertyEditorSlot.cs │ │ ├── ParameterPropertyEditorSlot.cs │ │ └── ParameterVector2PropertyEditorSlot.cs │ ├── EffectListPropertyEditorGroup.cs │ ├── EffectPropertyEditorGroup.cs │ ├── VideoEditorPropertyEditor.cs │ └── VideoEditorPropertyEditorHelper.cs ├── Serialisation │ ├── SerialisationContext.cs │ └── SerialisationRegistry.cs ├── Services │ └── VideoEditors │ │ └── IVideoEditorService.cs ├── SimpleIcons.cs ├── TimelineUtils.cs └── Utils │ └── BTE │ ├── BTEArray.cs │ ├── BTEDictionary.cs │ ├── BTEGuid.cs │ ├── BTEList.cs │ ├── BTEPrimitive.cs │ ├── BTEStruct.cs │ ├── BTEType.cs │ ├── BTEUtils.cs │ ├── BinaryTreeElement.cs │ └── BinaryUtils.cs ├── LIVETEMPLATES.md ├── README.md ├── docs ├── Automation.md ├── Command System and Shortcuts.md ├── Plugins.md ├── Projects and Codebase.md ├── Rendering.md └── Shortcuts.md └── icons ├── FramePFX-128.psd ├── FramePFX-256-old-black.png ├── FramePFX-256-old.png ├── FramePFX-256.ico ├── FramePFX-256.png ├── FramePFX-64.psd ├── FramePFX.ico └── FramePFX.psd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.github/ISSUE_TEMPLATE/question-custom.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/COPYING.GPLv3 -------------------------------------------------------------------------------- /FramePFX-DesktopUI_2024-12-06_17.33.20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX-DesktopUI_2024-12-06_17.33.20.png -------------------------------------------------------------------------------- /FramePFX-DesktopUI_2024-12-07_00.13.06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX-DesktopUI_2024-12-07_00.13.06.png -------------------------------------------------------------------------------- /FramePFX-DesktopUI_2024-12-27_03.33.53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX-DesktopUI_2024-12-27_03.33.53.png -------------------------------------------------------------------------------- /FramePFX-DesktopUI_2024-12-29_08.30.49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX-DesktopUI_2024-12-29_08.30.49.png -------------------------------------------------------------------------------- /FramePFX.Avalonia/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/App.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/App.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/AppSplashScreen.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/AppSplashScreen.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/AppSplashScreen.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/AppSplashScreen.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Configs/DataParameterStartupBehaviourPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Configs/DataParameterStartupBehaviourPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Configs/EditorWindowPropEditorConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Configs/EditorWindowPropEditorConfigurationPage.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Configs/StartupPropEditorConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Configs/StartupPropEditorConfigurationPage.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Automation/AutomationSequenceEditorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Automation/AutomationSequenceEditorControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Automation/AutomationSequenceEditorThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Automation/AutomationSequenceEditorThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Automation/AvAutomationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Automation/AvAutomationUtils.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Automation/KeyFrameElementPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Automation/KeyFrameElementPart.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Automation/KeyFrameUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Automation/KeyFrameUI.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/CommandUsages/CreateVideoTrackCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/CommandUsages/CreateVideoTrackCommandUsage.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/CommandUsages/DeleteSpecificTrackCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/CommandUsages/DeleteSpecificTrackCommandUsage.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/CommandUsages/ToggleLoopCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/CommandUsages/ToggleLoopCommandUsage.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/BasePlayHeadControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/BasePlayHeadControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/CancellableThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/CancellableThumb.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/FlatLinePlayHeadControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/FlatLinePlayHeadControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/GrippedPlayHeadControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/GrippedPlayHeadControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/PlayHeadThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/PlayHeadThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Playheads/PlayheadPositionTextControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Playheads/PlayheadPositionTextControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Colour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Colour.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Composition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Composition.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Folder.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ContentItems/RELIC_Image.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerListBox.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerListBoxItem.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceExplorerSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceListThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Lists/ResourceListThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/ResourcePanelControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/ResourcePanelControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/TreeListSelectionMergerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/TreeListSelectionMergerManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/DragLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/DragLocation.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/IResourceTreeOrNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/IResourceTreeOrNode.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceNodeDragState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceNodeDragState.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeView.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/ResourceTreeViewItem.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/StandardResourceTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/StandardResourceTreeView.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/ResourceManaging/Trees/StandardResourceTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/ResourceManaging/Trees/StandardResourceTreeViewItem.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/ClipStoragePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/ClipStoragePanel.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/Selection/ClipSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/Selection/ClipSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/Selection/TimelineClipSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/Selection/TimelineClipSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/Selection/TrackSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/Selection/TrackSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineClipControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineClipControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineLoopControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineLoopControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineRuler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineRuler.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineRulerThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineRulerThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineScrollableContentGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineScrollableContentGrid.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TimelineTrackControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TimelineTrackControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackStoragePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackStoragePanel.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurface.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceItem.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceList.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfacePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfacePanel.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceThemes.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/Timelines/TrackSurfaces/TrackControlSurfaceVideo.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Editing/VideoEditorViewPortControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Editing/VideoEditorViewPortControl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/EditorWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/EditorWindow.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/EditorWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/EditorWindow.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Exporting/ExportDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Exporting/ExportDialog.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Exporting/ExportDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Exporting/ExportDialog.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Exporting/ExportDialogServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Exporting/ExportDialogServiceImpl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Exporting/ExportProgressDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Exporting/ExportProgressDialog.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Exporting/ExportProgressDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Exporting/ExportProgressDialog.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/FramePFX-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/FramePFX-256.ico -------------------------------------------------------------------------------- /FramePFX.Avalonia/FramePFX.Avalonia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/FramePFX.Avalonia.csproj -------------------------------------------------------------------------------- /FramePFX.Avalonia/FramePFXApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/FramePFXApplication.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/HandleRequestBringIntoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/HandleRequestBringIntoView.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Keymap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Keymap.xml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Keymap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Keymap.xsd -------------------------------------------------------------------------------- /FramePFX.Avalonia/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Program.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Services/Startups/StartupManagerFramePFX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Services/Startups/StartupManagerFramePFX.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Services/Startups/StartupWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Services/Startups/StartupWindow.axaml -------------------------------------------------------------------------------- /FramePFX.Avalonia/Services/Startups/StartupWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Services/Startups/StartupWindow.axaml.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/Services/Startups/VideoEditorServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/Services/Startups/VideoEditorServiceImpl.cs -------------------------------------------------------------------------------- /FramePFX.Avalonia/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Avalonia/app.manifest -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Bindings/AutomationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Bindings/AutomationBinder.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Configurations/BasicEditorWindowConfigurationPageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Configurations/BasicEditorWindowConfigurationPageControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Configurations/ConfigurationPageStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Configurations/ConfigurationPageStyles.axaml -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Converters/AutomationBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Converters/AutomationBrushConverter.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Editing/GeneralControlStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Editing/GeneralControlStyles.axaml -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Editing/PlayStateButtonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Editing/PlayStateButtonControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Editing/ScrollBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Editing/ScrollBinder.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Editing/TogglePlayStateButtonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Editing/TogglePlayStateButtonControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/FramePFX.BaseFrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/FramePFX.BaseFrontEnd.csproj -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/BaseNumericParameterPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/BaseNumericParameterPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/BaseParameterPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/BaseParameterPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/KeyFrameToolsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/KeyFrameToolsControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterBoolPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterBoolPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterDoublePropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterDoublePropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterFloatPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterFloatPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterLongPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterLongPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterVector2PropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Automation/ParameterVector2PropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Core/DisplayNamePropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Core/DisplayNamePropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Core/TimecodeFontFamilyPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Core/TimecodeFontFamilyPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/Core/VideoClipMediaFrameOffsetPropertyEditorSlotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/Core/VideoClipMediaFrameOffsetPropertyEditorSlotControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/PropertyEditing/PropertyEditorSlotContentStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/PropertyEditing/PropertyEditorSlotContentStyles.axaml -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidImagePathEntryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidImagePathEntryControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidResourceEntryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidResourceEntryControl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidResourceEntryThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/InvalidResourceEntryThemes.axaml -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderDialog.axaml -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderDialog.axaml.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/Autoloading/ResourceLoaderImpl.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/ResourceManaging/ResourceExplorerListItemContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/ResourceManaging/ResourceExplorerListItemContent.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Themes/FramePFXBrushLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Themes/FramePFXBrushLoader.cs -------------------------------------------------------------------------------- /FramePFX.BaseFrontEnd/Themes/FramePFXThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.BaseFrontEnd/Themes/FramePFXThemes.axaml -------------------------------------------------------------------------------- /FramePFX.NativeEngine/FramePFX.NativeEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/FramePFX.NativeEngine.vcxproj -------------------------------------------------------------------------------- /FramePFX.NativeEngine/FramePFX.NativeEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/FramePFX.NativeEngine.vcxproj.filters -------------------------------------------------------------------------------- /FramePFX.NativeEngine/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/api.cpp -------------------------------------------------------------------------------- /FramePFX.NativeEngine/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/dllmain.cpp -------------------------------------------------------------------------------- /FramePFX.NativeEngine/effects/pixellate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/effects/pixellate.cpp -------------------------------------------------------------------------------- /FramePFX.NativeEngine/effects/pixellate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/effects/pixellate.h -------------------------------------------------------------------------------- /FramePFX.NativeEngine/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.NativeEngine/std.h -------------------------------------------------------------------------------- /FramePFX.Plugins.AnotherTestPlugin/FramePFX.Plugins.AnotherTestPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.AnotherTestPlugin/FramePFX.Plugins.AnotherTestPlugin.csproj -------------------------------------------------------------------------------- /FramePFX.Plugins.AnotherTestPlugin/TestPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.AnotherTestPlugin/TestPlugin.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.AnotherTestPlugin/TestPluginConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.AnotherTestPlugin/TestPluginConfigurationPage.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.CircleClipPlugin/FramePFX.Plugins.CircleClipPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.CircleClipPlugin/FramePFX.Plugins.CircleClipPlugin.csproj -------------------------------------------------------------------------------- /FramePFX.Plugins.CircleClipPlugin/MyCircleClipPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.CircleClipPlugin/MyCircleClipPlugin.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.CircleClipPlugin/MyCirclePluginVideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.CircleClipPlugin/MyCirclePluginVideoClip.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.CircleClipPlugin/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.CircleClipPlugin/plugin.xml -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Clips/AVMediaVideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Clips/AVMediaVideoClip.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Commands/AddAVMediaClipCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Commands/AddAVMediaClipCommand.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Commands/AddResourceAVMediaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Commands/AddResourceAVMediaCommand.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Exporter/DataParameterAVCodecIDPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Exporter/DataParameterAVCodecIDPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Exporter/FFmpegExportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Exporter/FFmpegExportContext.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Exporter/FFmpegExporterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Exporter/FFmpegExporterInfo.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/FFmpegMediaPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/FFmpegMediaPlugin.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/FFmpegMediaStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/FFmpegMediaStyles.axaml -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/FramePFX.Plugins.FFmpegMedia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/FramePFX.Plugins.FFmpegMedia.csproj -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/AudioStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/AudioStream.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/FFmpegDecodeThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/FFmpegDecodeThread.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/FFmpegReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/FFmpegReader.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/FrameQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/FrameQueue.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/StreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/StreamWrapper.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Reading/VideoStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Reading/VideoStream.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Resources/Controls/InvalidMediaPathEntryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Resources/Controls/InvalidMediaPathEntryControl.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Resources/Controls/RELIC_AVMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Resources/Controls/RELIC_AVMedia.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Resources/InvalidMediaPathEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Resources/InvalidMediaPathEntry.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Resources/ResourceAVMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Resources/ResourceAVMedia.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/AudioFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/AudioFormat.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/AudioFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/AudioFrame.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/AudioQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/AudioQueue.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/AudioDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/AudioDecoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/AudioEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/AudioEncoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/CodecBase.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/CodecHardwareConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/CodecHardwareConfig.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/MediaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/MediaDecoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/MediaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/MediaEncoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/VideoDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/VideoDecoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/VideoEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Codecs/VideoEncoder.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/ContainerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/ContainerTypes.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/IOContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/IOContext.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaDemuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaDemuxer.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaMuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaMuxer.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/MediaStream.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/StreamIOContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/Containers/StreamIOContext.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/EnumAliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/EnumAliases.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/FFObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/FFObject.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/FFUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/FFUtils.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareDevice.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareFrameConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareFrameConstraints.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareFramePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/HardwareFramePool.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/LavResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/LavResult.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/MediaFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/MediaFrame.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/MediaPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/MediaPacket.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/PictureFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/PictureFormat.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/SwResampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/SwResampler.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/SwScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/SwScaler.cs -------------------------------------------------------------------------------- /FramePFX.Plugins.FFmpegMedia/Wrappers/VideoFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.Plugins.FFmpegMedia/Wrappers/VideoFrame.cs -------------------------------------------------------------------------------- /FramePFX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.sln -------------------------------------------------------------------------------- /FramePFX.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX.sln.DotSettings -------------------------------------------------------------------------------- /FramePFX/AutomationIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/AutomationIcons.cs -------------------------------------------------------------------------------- /FramePFX/Configurations/Commands/OpenProjectSettingsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Configurations/Commands/OpenProjectSettingsCommand.cs -------------------------------------------------------------------------------- /FramePFX/Configurations/EditorWindowConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Configurations/EditorWindowConfigurationPage.cs -------------------------------------------------------------------------------- /FramePFX/Configurations/ProjectConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Configurations/ProjectConfigurationManager.cs -------------------------------------------------------------------------------- /FramePFX/DataKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/DataKeys.cs -------------------------------------------------------------------------------- /FramePFX/Editing/AudioRingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/AudioRingBuffer.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/AutomationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/AutomationData.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/AutomationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/AutomationEngine.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/AutomationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/AutomationUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/IAutomatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/IAutomatable.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Keyframes/AutomationDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Keyframes/AutomationDataType.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Keyframes/AutomationSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Keyframes/AutomationSequence.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Keyframes/InterpolationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Keyframes/InterpolationType.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Keyframes/KeyFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Keyframes/KeyFrame.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Keyframes/KeyFrameUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Keyframes/KeyFrameUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Params/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Params/Parameter.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Params/ParameterChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Params/ParameterChangedEventHandler.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Params/ParameterDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Params/ParameterDescriptor.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Params/ParameterFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Params/ParameterFlags.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/Params/ParameterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/Params/ParameterKey.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Automation/SwitchAutomationDataTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Automation/SwitchAutomationDataTypeAttribute.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/BasicPlayActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/BasicPlayActionCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/ChangeClipPlaybackSpeedCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/ChangeClipPlaybackSpeedCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/CloseProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/CloseProjectCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/CreateCompositionFromSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/CreateCompositionFromSelectionCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/ExportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/ExportCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/NewProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/NewProjectCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/OpenCompositionClipTimelineCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/OpenCompositionClipTimelineCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/OpenProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/OpenProjectCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/RenameDisplayNameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/RenameDisplayNameCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/SaveProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/SaveProjectCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/TimelineCommandUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/TimelineCommandUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/ToggleClipsEnabledCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/ToggleClipsEnabledCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/TogglePlayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/TogglePlayCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/ToggleTracksEnabledCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/ToggleTracksEnabledCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Commands/UndoRedoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Commands/UndoRedoCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/CompositionTimeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/CompositionTimeline.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ContextRegistries/ClipContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ContextRegistries/ClipContextRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ContextRegistries/ResourceContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ContextRegistries/ResourceContextRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ContextRegistries/TimelineContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ContextRegistries/TimelineContextRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ContextRegistries/TrackContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ContextRegistries/TrackContextRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/EditorConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/EditorConfigurationOptions.cs -------------------------------------------------------------------------------- /FramePFX/Editing/EffectSource/EffectProviderEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/EffectSource/EffectProviderEntry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/EffectSource/EffectProviderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/EffectSource/EffectProviderManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/BaseExportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/BaseExportContext.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/BaseExporterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/BaseExporterInfo.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/ExportSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/ExportSetup.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/ExporterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/ExporterKey.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/ExporterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/ExporterRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/IExportDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/IExportDialogService.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/IExportProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/IExportProgress.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Exporting/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Exporting/README.txt -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/ClipFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/ClipFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/EffectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/EffectFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/ObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/ObjectFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/ReflectiveObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/ReflectiveObjectFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/ResourceTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/ResourceTypeFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Factories/TrackFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Factories/TrackFactory.cs -------------------------------------------------------------------------------- /FramePFX/Editing/IHaveProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/IHaveProject.cs -------------------------------------------------------------------------------- /FramePFX/Editing/IHaveTimeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/IHaveTimeline.cs -------------------------------------------------------------------------------- /FramePFX/Editing/IResourceClipRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/IResourceClipRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PlayHeadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PlayHeadType.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PlayState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PlayState.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PlaybackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PlaybackManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Project.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ProjectSettings.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PropertyEditors/CPUPixelateEffectPropertyEditorGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PropertyEditors/CPUPixelateEffectPropertyEditorGroup.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PropertyEditors/TimecodeFontFamilyPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PropertyEditors/TimecodeFontFamilyPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/Editing/PropertyEditors/VideoClipMediaFrameOffsetPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/PropertyEditors/VideoClipMediaFrameOffsetPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/Editing/RenderLockedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/RenderLockedData.cs -------------------------------------------------------------------------------- /FramePFX/Editing/RenderUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/RenderUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/EnumRenderQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/EnumRenderQuality.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/PreRenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/PreRenderContext.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/RenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/RenderContext.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/RenderFrameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/RenderFrameInfo.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/RenderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/RenderManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/RenderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/RenderState.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Rendering/TrackRenderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Rendering/TrackRenderState.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Autoloading/InvalidResourceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Autoloading/InvalidResourceEntry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Autoloading/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Autoloading/ResourceLoader.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/BaseResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/BaseResource.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/AddResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/AddResourceCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/ChangeResourceColourCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/ChangeResourceColourCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/DeleteResourcesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/DeleteResourcesCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/GroupResourcesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/GroupResourcesCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/OpenCompositionTimelineCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/OpenCompositionTimelineCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/RenameResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/RenameResourceCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/ResourceCommandUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/ResourceCommandUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/SetResourcesOfflineCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/SetResourcesOfflineCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/SetResourcesOnlineCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/SetResourcesOnlineCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Commands/ToggleOnlineStateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Commands/ToggleOnlineStateCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Events/ResourceEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Events/ResourceEvents.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Events/ResourceManagerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Events/ResourceManagerEvents.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/IResourceLoaderDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/IResourceLoaderDialogService.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/IResourceSelectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/IResourceSelectionManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/NewResourceHelper/IResourceHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/NewResourceHelper/IResourceHolder.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/NewResourceHelper/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/NewResourceHelper/ResourceHelper.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/NewResourceHelper/ResourceSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/NewResourceHelper/ResourceSlot.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceChangedEventHandler.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceDropRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceDropRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceFolder.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceItem.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceObjectUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceObjectUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/ResourceRemoveFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/ResourceRemoveFlags.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Resources/InvalidImagePathEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Resources/InvalidImagePathEntry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Resources/ResourceColour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Resources/ResourceColour.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Resources/ResourceComposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Resources/ResourceComposition.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/Resources/ResourceImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/Resources/ResourceImage.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/IResourceListElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/IResourceListElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/IResourceListItemElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/IResourceListItemElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/IResourceManagerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/IResourceManagerElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/IResourceTreeElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/IResourceTreeElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/IResourceTreeNodeElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/IResourceTreeNodeElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/ResourceManaging/UI/TreePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/ResourceManaging/UI/TreePath.cs -------------------------------------------------------------------------------- /FramePFX/Editing/SnapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/SnapHelper.cs -------------------------------------------------------------------------------- /FramePFX/Editing/StartupConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/StartupConfigurationOptions.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/ClipDropRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/ClipDropRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Audio/AudioClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Audio/AudioClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Clip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Clip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/ClipGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/ClipGroup.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Core/CompositionVideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Core/CompositionVideoClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Core/ImageVideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Core/ImageVideoClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Core/TextVideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Core/TextVideoClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Core/TimecodeClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Core/TimecodeClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Core/VideoClipShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Core/VideoClipShape.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/IClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/IClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Video/VideoClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Video/VideoClip.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Video/VideoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Video/VideoSource.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Clips/Video/VideoSourceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Clips/Video/VideoSourceContext.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/AddClipCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/AddClipCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/DeleteClipOwnerTrackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/DeleteClipOwnerTrackCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/DeleteClipsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/DeleteClipsCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/DeleteSelectedTracksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/DeleteSelectedTracksCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/DeleteSpecificTrackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/DeleteSpecificTrackCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/NewAudioTrackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/NewAudioTrackCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/NewVideoTrackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/NewVideoTrackCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/SelectAllClipsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/SelectAllClipsCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/SelectClipsInTracksCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/SelectClipsInTracksCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/SplitClipsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/SplitClipsCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/ToggleClipAutomationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/ToggleClipAutomationCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/ToggleLoopTimelineRegionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/ToggleLoopTimelineRegionCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/ToggleTrackAutomationCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/ToggleTrackAutomationCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Commands/TrimStartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Commands/TrimStartCommand.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Effects/BaseEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Effects/BaseEffect.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Effects/CPUPixelateEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Effects/CPUPixelateEffect.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Effects/VideoEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Effects/VideoEffect.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/FrameSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/FrameSpan.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/IHaveEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/IHaveEffects.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/IStrictFrameRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/IStrictFrameRange.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/SelectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/SelectionType.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Timeline.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/TimelineDropManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/TimelineDropManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/TrackFrameSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/TrackFrameSpan.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/TrackPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/TrackPoint.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/AudioTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/AudioTrack.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/ClipCloneOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/ClipCloneOptions.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/ClipRangeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/ClipRangeCache.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/Track.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/TrackCloneOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/TrackCloneOptions.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/Tracks/VideoTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/Tracks/VideoTrack.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Timelines/ZoomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Timelines/ZoomType.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Toolbars/ControlSurfaceListToolBarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Toolbars/ControlSurfaceListToolBarManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Toolbars/SimpleCommandToolBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Toolbars/SimpleCommandToolBarButton.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Toolbars/TimelineToolBarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Toolbars/TimelineToolBarManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Toolbars/ViewPortToolBarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Toolbars/ViewPortToolBarManager.cs -------------------------------------------------------------------------------- /FramePFX/Editing/UI/IClipElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/UI/IClipElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/UI/ITimelineElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/UI/ITimelineElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/UI/ITrackElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/UI/ITrackElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/UI/IVideoEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/UI/IVideoEditorWindow.cs -------------------------------------------------------------------------------- /FramePFX/Editing/UI/IViewPortElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/UI/IViewPortElement.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Utils/ItemCacheStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Utils/ItemCacheStack.cs -------------------------------------------------------------------------------- /FramePFX/Editing/Utils/SKUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/Utils/SKUtils.cs -------------------------------------------------------------------------------- /FramePFX/Editing/VideoEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/VideoEditor.cs -------------------------------------------------------------------------------- /FramePFX/Editing/VideoEditorListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Editing/VideoEditorListener.cs -------------------------------------------------------------------------------- /FramePFX/FractionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/FractionUtils.cs -------------------------------------------------------------------------------- /FramePFX/FramePFX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/FramePFX.csproj -------------------------------------------------------------------------------- /FramePFX/Natives/PFXNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Natives/PFXNative.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/NumericParameterPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/NumericParameterPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterBoolPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterBoolPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterDoublePropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterDoublePropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterFloatPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterFloatPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterLongPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterLongPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterPropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterPropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/Automation/ParameterVector2PropertyEditorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/Automation/ParameterVector2PropertyEditorSlot.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/EffectListPropertyEditorGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/EffectListPropertyEditorGroup.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/EffectPropertyEditorGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/EffectPropertyEditorGroup.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/VideoEditorPropertyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/VideoEditorPropertyEditor.cs -------------------------------------------------------------------------------- /FramePFX/PropertyEditing/VideoEditorPropertyEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/PropertyEditing/VideoEditorPropertyEditorHelper.cs -------------------------------------------------------------------------------- /FramePFX/Serialisation/SerialisationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Serialisation/SerialisationContext.cs -------------------------------------------------------------------------------- /FramePFX/Serialisation/SerialisationRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Serialisation/SerialisationRegistry.cs -------------------------------------------------------------------------------- /FramePFX/Services/VideoEditors/IVideoEditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Services/VideoEditors/IVideoEditorService.cs -------------------------------------------------------------------------------- /FramePFX/SimpleIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/SimpleIcons.cs -------------------------------------------------------------------------------- /FramePFX/TimelineUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/TimelineUtils.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEArray.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEDictionary.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEGuid.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEList.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEPrimitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEPrimitive.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEStruct.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEType.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BTEUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BTEUtils.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BinaryTreeElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BinaryTreeElement.cs -------------------------------------------------------------------------------- /FramePFX/Utils/BTE/BinaryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/FramePFX/Utils/BTE/BinaryUtils.cs -------------------------------------------------------------------------------- /LIVETEMPLATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/LIVETEMPLATES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/README.md -------------------------------------------------------------------------------- /docs/Automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Automation.md -------------------------------------------------------------------------------- /docs/Command System and Shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Command System and Shortcuts.md -------------------------------------------------------------------------------- /docs/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Plugins.md -------------------------------------------------------------------------------- /docs/Projects and Codebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Projects and Codebase.md -------------------------------------------------------------------------------- /docs/Rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Rendering.md -------------------------------------------------------------------------------- /docs/Shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/docs/Shortcuts.md -------------------------------------------------------------------------------- /icons/FramePFX-128.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-128.psd -------------------------------------------------------------------------------- /icons/FramePFX-256-old-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-256-old-black.png -------------------------------------------------------------------------------- /icons/FramePFX-256-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-256-old.png -------------------------------------------------------------------------------- /icons/FramePFX-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-256.ico -------------------------------------------------------------------------------- /icons/FramePFX-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-256.png -------------------------------------------------------------------------------- /icons/FramePFX-64.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX-64.psd -------------------------------------------------------------------------------- /icons/FramePFX.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX.ico -------------------------------------------------------------------------------- /icons/FramePFX.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/FramePFX/HEAD/icons/FramePFX.psd --------------------------------------------------------------------------------