├── .github └── workflows │ ├── compile_test.yml │ └── release_build.yml ├── .gitignore ├── .tgitconfig ├── Assets ├── Editor.png └── Vixen3-Logo.png ├── Build ├── CreateGithubRelease.ps1 ├── CreateReleaseNotes.ps1 ├── dotnet-setversion │ ├── CommandLine.dll │ ├── dotnet-setversion.deps.json │ ├── dotnet-setversion.dll │ ├── dotnet-setversion.exe │ ├── dotnet-setversion.runtimeconfig.dev.json │ └── dotnet-setversion.runtimeconfig.json └── github-release.exe ├── Directory.Packages.props ├── Installer ├── README.md ├── Redist │ ├── VC_redist.x64.exe │ └── VC_redist.x86.exe ├── vixen.bmp └── vixen.ico ├── License.txt ├── README.md ├── Release Notes.txt ├── Vixen.sln ├── Vixen.sln.DotSettings ├── sandbox ├── README.md ├── sandbox.wsb └── scripts │ ├── patch-sandbox.ps1 │ └── startup.bat └── src ├── .editorconfig ├── Directory.Build.props ├── Vixen.Application ├── AboutVixen.Designer.cs ├── AboutVixen.cs ├── AboutVixen.resx ├── CheckForUpdates.Designer.cs ├── CheckForUpdates.cs ├── CheckForUpdates.resx ├── ConfigPreviews.Designer.cs ├── ConfigPreviews.cs ├── ConfigPreviews.resx ├── CpuUsage.cs ├── DataProfileForm.Designer.cs ├── DataProfileForm.cs ├── DataProfileForm.resx ├── DataZipForm.Designer.cs ├── DataZipForm.cs ├── DataZipForm.resx ├── GraphicalPatching │ ├── ConnectionTool.cs │ ├── ControllerShape.cs │ ├── DataFlowConnectionLine.cs │ ├── ElementNodeShape.cs │ ├── FilterSetupShapeBase.cs │ ├── FilterShape.cs │ ├── NShapeLibraryInitializer.cs │ ├── NestingSetupShape.cs │ └── OutputShape.cs ├── InstalledModules.Designer.cs ├── InstalledModules.cs ├── InstalledModules.resx ├── NLog.config ├── NLog.xsd ├── NLogListener.cs ├── OptionsDialog.Designer.cs ├── OptionsDialog.cs ├── OptionsDialog.resx ├── ProfileItem.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReleaseNotes.Designer.cs ├── ReleaseNotes.cs ├── ReleaseNotes.resx ├── Resources │ ├── HandCursor.cur │ ├── MovePointCursor.cur │ ├── MoveShapeCursor.cur │ └── V3Logo.png ├── SelectProfile.Designer.cs ├── SelectProfile.cs ├── SelectProfile.resx ├── Setup │ ├── DisplaySetup.Designer.cs │ ├── DisplaySetup.cs │ ├── DisplaySetup.resx │ ├── ElementTemplates │ │ ├── Arch.cs │ │ ├── Arch.resx │ │ ├── CandyCane.cs │ │ ├── CandyCane.resx │ │ ├── ElementTemplateBase.cs │ │ ├── Icicles.Designer.cs │ │ ├── Icicles.cs │ │ ├── Icicles.resx │ │ ├── IntelligentFixtureTemplate.cs │ │ ├── LipSync.Designer.cs │ │ ├── LipSync.cs │ │ ├── LipSync.resx │ │ ├── Megatree.Designer.cs │ │ ├── Megatree.cs │ │ ├── Megatree.resx │ │ ├── NumberedGroup.Designer.cs │ │ ├── NumberedGroup.cs │ │ ├── NumberedGroup.resx │ │ ├── PixelGrid.Designer.cs │ │ ├── PixelGrid.cs │ │ ├── PixelGrid.resx │ │ ├── SingleItem.cs │ │ ├── Star.cs │ │ ├── StarBurst.Designer.cs │ │ ├── StarBurst.cs │ │ ├── StarBurst.resx │ │ └── StartLocation.cs │ ├── ElementsChangedEventArgs.cs │ ├── ISetupControllersControl.cs │ ├── ISetupElementsControl.cs │ ├── ISetupPatchingControl.cs │ ├── SetupControllersSimple.Designer.cs │ ├── SetupControllersSimple.cs │ ├── SetupControllersSimple.resx │ ├── SetupElementsTree.Designer.cs │ ├── SetupElementsTree.cs │ ├── SetupElementsTree.resx │ ├── SetupPatchingGraphical.Designer.cs │ ├── SetupPatchingGraphical.cs │ ├── SetupPatchingGraphical.resx │ ├── SetupPatchingSimple.Designer.cs │ ├── SetupPatchingSimple.cs │ └── SetupPatchingSimple.resx ├── Vixen.Application.csproj ├── Vixen3.ico ├── VixenApplication.Designer.cs ├── VixenApplication.cs ├── VixenApplication.resx ├── VixenApplicationData.cs └── app.config ├── Vixen.Common ├── AudioPlayer │ ├── AudioDevice.cs │ ├── AudioOutputManager.cs │ ├── AudioOutputMode.cs │ ├── AudioOutputProxy.cs │ ├── AudioPlayer.csproj │ ├── AudioPreferences.cs │ ├── CoreAudioPlayer.cs │ ├── DefaultDeviceChangedEventArgs.cs │ ├── DeviceNotificationEventArgs.cs │ ├── DevicePropertyChangedEventArgs.cs │ ├── DeviceStateChangedEventArgs.cs │ ├── Extensions.cs │ ├── FileReader │ │ └── AudioFileReader.cs │ ├── IPlayer.cs │ ├── MMNotificationClient.cs │ ├── PlayerFactory.cs │ ├── SampleProvider │ │ ├── CachedSampleSource.cs │ │ ├── CachedSoundSampleProvider.cs │ │ └── SoundTouchSource.cs │ ├── SoundTouch │ │ ├── SoundTouch.cs │ │ ├── SoundTouchInterop32.cs │ │ ├── SoundTouchInterop64.cs │ │ ├── SoundTouchProfile.cs │ │ └── SoundTouchSettings.cs │ ├── Source │ │ └── CachedSoundSource.cs │ └── VolumeEventArgs.cs ├── BaseSequence │ ├── BaseSequence.csproj │ ├── File │ │ └── XmlFileLoader.cs │ ├── IFileLoader.cs │ ├── Sequence.cs │ ├── SequenceCache.cs │ ├── SequenceData.cs │ └── SequenceExecutor.cs ├── Box2D │ ├── Box2D.h │ ├── Box2D.vcxproj │ ├── Collision │ │ ├── Shapes │ │ │ ├── b2ChainShape.cpp │ │ │ ├── b2ChainShape.h │ │ │ ├── b2CircleShape.cpp │ │ │ ├── b2CircleShape.h │ │ │ ├── b2EdgeShape.cpp │ │ │ ├── b2EdgeShape.h │ │ │ ├── b2PolygonShape.cpp │ │ │ ├── b2PolygonShape.h │ │ │ └── b2Shape.h │ │ ├── b2BroadPhase.cpp │ │ ├── b2BroadPhase.h │ │ ├── b2CollideCircle.cpp │ │ ├── b2CollideEdge.cpp │ │ ├── b2CollidePolygon.cpp │ │ ├── b2Collision.cpp │ │ ├── b2Collision.h │ │ ├── b2Distance.cpp │ │ ├── b2Distance.h │ │ ├── b2DynamicTree.cpp │ │ ├── b2DynamicTree.h │ │ ├── b2TimeOfImpact.cpp │ │ └── b2TimeOfImpact.h │ ├── Common │ │ ├── b2BlockAllocator.cpp │ │ ├── b2BlockAllocator.h │ │ ├── b2Draw.cpp │ │ ├── b2Draw.h │ │ ├── b2FreeList.cpp │ │ ├── b2FreeList.h │ │ ├── b2GrowableBuffer.h │ │ ├── b2GrowableStack.h │ │ ├── b2IntrusiveList.h │ │ ├── b2Math.cpp │ │ ├── b2Math.h │ │ ├── b2Settings.cpp │ │ ├── b2Settings.h │ │ ├── b2SlabAllocator.h │ │ ├── b2StackAllocator.cpp │ │ ├── b2StackAllocator.h │ │ ├── b2Stat.cpp │ │ ├── b2Stat.h │ │ ├── b2Timer.cpp │ │ ├── b2Timer.h │ │ ├── b2TrackedBlock.cpp │ │ └── b2TrackedBlock.h │ ├── Dynamics │ │ ├── Contacts │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ ├── b2ChainAndCircleContact.h │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ ├── b2CircleContact.cpp │ │ │ ├── b2CircleContact.h │ │ │ ├── b2Contact.cpp │ │ │ ├── b2Contact.h │ │ │ ├── b2ContactSolver.cpp │ │ │ ├── b2ContactSolver.h │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ ├── b2PolygonContact.cpp │ │ │ └── b2PolygonContact.h │ │ ├── Joints │ │ │ ├── b2DistanceJoint.cpp │ │ │ ├── b2DistanceJoint.h │ │ │ ├── b2FrictionJoint.cpp │ │ │ ├── b2FrictionJoint.h │ │ │ ├── b2GearJoint.cpp │ │ │ ├── b2GearJoint.h │ │ │ ├── b2Joint.cpp │ │ │ ├── b2Joint.h │ │ │ ├── b2MotorJoint.cpp │ │ │ ├── b2MotorJoint.h │ │ │ ├── b2MouseJoint.cpp │ │ │ ├── b2MouseJoint.h │ │ │ ├── b2PrismaticJoint.cpp │ │ │ ├── b2PrismaticJoint.h │ │ │ ├── b2PulleyJoint.cpp │ │ │ ├── b2PulleyJoint.h │ │ │ ├── b2RevoluteJoint.cpp │ │ │ ├── b2RevoluteJoint.h │ │ │ ├── b2RopeJoint.cpp │ │ │ ├── b2RopeJoint.h │ │ │ ├── b2WeldJoint.cpp │ │ │ ├── b2WeldJoint.h │ │ │ ├── b2WheelJoint.cpp │ │ │ └── b2WheelJoint.h │ │ ├── b2Body.cpp │ │ ├── b2Body.h │ │ ├── b2ContactManager.cpp │ │ ├── b2ContactManager.h │ │ ├── b2Fixture.cpp │ │ ├── b2Fixture.h │ │ ├── b2Island.cpp │ │ ├── b2Island.h │ │ ├── b2TimeStep.h │ │ ├── b2World.cpp │ │ ├── b2World.h │ │ ├── b2WorldCallbacks.cpp │ │ └── b2WorldCallbacks.h │ ├── Particle │ │ ├── b2Particle.cpp │ │ ├── b2Particle.h │ │ ├── b2ParticleAssembly.cpp │ │ ├── b2ParticleAssembly.h │ │ ├── b2ParticleAssembly.neon.s │ │ ├── b2ParticleGroup.cpp │ │ ├── b2ParticleGroup.h │ │ ├── b2ParticleSystem.cpp │ │ ├── b2ParticleSystem.h │ │ ├── b2StackQueue.h │ │ ├── b2VoronoiDiagram.cpp │ │ └── b2VoronoiDiagram.h │ └── Rope │ │ ├── b2Rope.cpp │ │ └── b2Rope.h ├── Broadcast │ ├── Broadcast.cs │ └── Broadcast.csproj ├── Controls │ ├── BaseForm.Designer.cs │ ├── BaseForm.cs │ ├── BaseForm.resx │ ├── BaseUserControl.cs │ ├── ColorPicker │ │ ├── ColorBgra.cs │ │ ├── ColorLabel.cs │ │ ├── ColorLabel.resx │ │ ├── ColorPicker.cs │ │ ├── ColorPicker.cur │ │ ├── ColorPicker.resx │ │ ├── ColorSelectionFader.cs │ │ ├── ColorSelectionFader.resx │ │ ├── ColorSelectionModules.cs │ │ ├── ColorSelectionModules_HSV.cs │ │ ├── ColorSelectionModules_LAB.cs │ │ ├── ColorSelectionModules_RGB.cs │ │ ├── ColorSelectionPlane.cs │ │ ├── ColorSelectionPlane.resx │ │ ├── ColorUtility.cs │ │ └── GDI32.cs │ ├── ComboBoxItem.cs │ ├── ConfigureElements │ │ ├── AddMegatree.Designer.cs │ │ ├── AddMegatree.cs │ │ ├── AddMegatree.resx │ │ ├── AddPixelGrid.cs │ │ ├── AddPixelGrid.designer.cs │ │ └── AddPixelGrid.resx │ ├── ControllerTree.Designer.cs │ ├── ControllerTree.cs │ ├── ControllerTree.resx │ ├── Controls.csproj │ ├── ControlsEx │ │ ├── BorderedControl.cs │ │ ├── BorderedControl.resx │ │ ├── BorderedScrollableControl.cs │ │ ├── BorderedScrollableControl.resx │ │ ├── CollectionBase.cs │ │ ├── ExtendsList.cs │ │ ├── GraphicsEx.cs │ │ ├── ListControls │ │ │ ├── ActionList.cs │ │ │ ├── DisplayItems.cs │ │ │ ├── DisplayList.cs │ │ │ ├── DisplayListDesigner.cs │ │ │ ├── Layout.cs │ │ │ ├── SingleLineDisplayList.cs │ │ │ └── TableDisplayList.cs │ │ ├── ScaleFactor.cs │ │ ├── UltimateWin32.cs │ │ ├── ValueControls │ │ │ ├── FloatingContainer.cs │ │ │ ├── FloatingContainer.resx │ │ │ ├── MiniTracker.cs │ │ │ ├── ValueControl.cs │ │ │ ├── ValueControl.resx │ │ │ ├── ValueScrollbar.cs │ │ │ ├── ValueScrollbar.resx │ │ │ ├── ValueUpDown.cs │ │ │ └── ValueUpDown.resx │ │ ├── ZoomBar.cs │ │ ├── ZoomBar.resx │ │ ├── std_zoomin.png │ │ └── std_zoomout.png │ ├── DragAndDropListView.cs │ ├── DragDropListView │ │ ├── CancelListViewItemDragEventArgs.cs │ │ ├── DragDropListView.cs │ │ ├── InsertionMode.cs │ │ └── ListViewItemDragEventArgs.cs │ ├── EffectParameterPickerControl.Designer.cs │ ├── EffectParameterPickerControl.cs │ ├── EffectParameterPickerControl.resx │ ├── ElementTree.Designer.cs │ ├── ElementTree.cs │ ├── ElementTree.resx │ ├── ListSelectDialog.Designer.cs │ ├── ListSelectDialog.cs │ ├── ListSelectDialog.resx │ ├── MenuStripEx.cs │ ├── MessageBoxForm.Designer.cs │ ├── MessageBoxForm.cs │ ├── MessageBoxForm.resx │ ├── MultiSelectTreeview.cs │ ├── NameGeneration │ │ ├── LetterCounterEditor.Designer.cs │ │ ├── LetterCounterEditor.cs │ │ ├── LetterCounterEditor.resx │ │ ├── LetterIteratorEditor.Designer.cs │ │ ├── LetterIteratorEditor.cs │ │ ├── LetterIteratorEditor.resx │ │ ├── NameGenerator.Designer.cs │ │ ├── NameGenerator.cs │ │ ├── NameGenerator.resx │ │ ├── NameGeneratorEditor.cs │ │ ├── NumericCounterEditor.Designer.cs │ │ ├── NumericCounterEditor.cs │ │ ├── NumericCounterEditor.resx │ │ ├── SubstitutionRenamer.Designer.cs │ │ ├── SubstitutionRenamer.cs │ │ ├── SubstitutionRenamer.resx │ │ ├── WordIteratorEditor.Designer.cs │ │ ├── WordIteratorEditor.cs │ │ └── WordIteratorEditor.resx │ ├── NumberDialog.Designer.cs │ ├── NumberDialog.cs │ ├── NumberDialog.resx │ ├── NumericTextBox.cs │ ├── NumericalTextBoxLicense.rtf │ ├── ParallelPortConfig.Designer.cs │ ├── ParallelPortConfig.cs │ ├── ParallelPortConfig.resx │ ├── PictureComboBox.Designer.cs │ ├── PictureComboBox.cs │ ├── PictureComboBoxItem.cs │ ├── RoundButton.cs │ ├── Scaling │ │ └── ScalingTools.cs │ ├── SerialPortConfig.Designer.cs │ ├── SerialPortConfig.cs │ ├── SerialPortConfig.resx │ ├── TablessTabControl.Designer.cs │ ├── TablessTabControl.cs │ ├── TextDialog.Designer.cs │ ├── TextDialog.cs │ ├── TextDialog.resx │ ├── TextProgressBar.cs │ ├── Theme │ │ ├── ThemeColorTable.cs │ │ ├── ThemeComboBoxRenderer.cs │ │ ├── ThemeGroupBoxRenderer.cs │ │ ├── ThemePropertyGridRenderer.cs │ │ ├── ThemeToolStripRenderer.cs │ │ └── ThemeUpdateControls.cs │ ├── TimeControl.cs │ ├── TimeControl.resx │ ├── TimeLineControl │ │ ├── AlignmentEventArgs.cs │ │ ├── BlockingCollectionExtensions.cs │ │ ├── DelegateBasedObserver.cs │ │ ├── DragState.cs │ │ ├── Element.cs │ │ ├── ElementMoveType.cs │ │ ├── EventArgs.cs │ │ ├── ExtensionMethods.cs │ │ ├── Grid.cs │ │ ├── Grid_Mouse.cs │ │ ├── LabeledMarks │ │ │ ├── MarkTimeInfo.cs │ │ │ ├── MarksBulkChangeInfo.cs │ │ │ ├── MarksDeletedEventArgs.cs │ │ │ ├── MarksMoveResizeInfo.cs │ │ │ ├── MarksMovedEventArgs.cs │ │ │ ├── MarksMovingEventArgs.cs │ │ │ ├── MarksPastedEventArgs.cs │ │ │ ├── MarksSelectionManager.cs │ │ │ ├── MarksTextChangedEventArgs.cs │ │ │ ├── PhonemeBreakdownEventArgs.cs │ │ │ ├── PlayRangeEventArgs.cs │ │ │ ├── SelectedMarkMoveEventArgs.cs │ │ │ └── TimeLineGlobalEventManager.cs │ │ ├── MarkRow.cs │ │ ├── MarksBar.cs │ │ ├── ResizeZone.cs │ │ ├── Row.cs │ │ ├── RowLabel.cs │ │ ├── RowList.cs │ │ ├── Ruler.cs │ │ ├── TimeInfo.cs │ │ ├── TimeLineGlobalStateManager.cs │ │ ├── TimelineControl.cs │ │ ├── TimelineControl.resx │ │ ├── TimelineControlBase.cs │ │ └── Waveform.cs │ ├── ToolStripEx.cs │ ├── Undo │ │ ├── AddToListUndoAction.cs │ │ ├── ModifyItemUndoAction.cs │ │ ├── RemoveFromListUndoAction.cs │ │ ├── UndoAction.cs │ │ ├── UndoButton.cs │ │ ├── UndoDropDownControl.Designer.cs │ │ ├── UndoDropDownControl.cs │ │ ├── UndoDropDownControl.resx │ │ └── UndoManager.cs │ ├── Wizard │ │ ├── Wizard.cs │ │ ├── WizardForm.Designer.cs │ │ ├── WizardForm.cs │ │ ├── WizardForm.resx │ │ ├── WizardStage.cs │ │ └── WizardStage.resx │ ├── XMLProfileSettings.cs │ └── cEventHelper.cs ├── Directory.Build.props ├── DiscreteColorPicker │ ├── DiscreteColorPicker.csproj │ ├── ViewModels │ │ ├── ColorItems │ │ │ ├── ColorItem.cs │ │ │ └── MultiSelectColorItem.cs │ │ ├── DiscreteColorPickerViewModelBase.cs │ │ ├── MultipleDiscreteColorPickerViewModel.cs │ │ └── SingleDiscreteColorPickerViewModel.cs │ └── Views │ │ ├── DiscreteColorPickerViewBase.cs │ │ ├── MultipleDiscreteColorPickerView.xaml │ │ ├── MultipleDiscreteColorPickerView.xaml.cs │ │ ├── SingleDiscreteColorPickerView.xaml │ │ └── SingleDiscreteColorPickerView.xaml.cs ├── FastPixel │ ├── FastPixel.cs │ └── FastPixel.csproj ├── Help │ ├── Help.cs │ └── Help.csproj ├── Libraries │ ├── Libraries.csproj │ ├── OpenTK.WinForms.deps.json │ ├── OpenTK.WinForms.dll │ ├── QuickFont.dll │ ├── SharpFont.dll │ ├── SoundTouch.dll │ ├── SoundTouch_x64.dll │ └── freetype6.dll ├── NShape │ ├── AdoNetStore.bmp │ ├── AdoNetStore.cs │ ├── Advanced.CachedRepository.bmp │ ├── Buffers.cs │ ├── CachedRepository.cs │ ├── Caption.cs │ ├── CircularArcBase.cs │ ├── Collections.cs │ ├── Command.cs │ ├── Controllers.DesignController.bmp │ ├── Controllers.DiagramSetController.bmp │ ├── Controllers.LayerController.bmp │ ├── Controllers.LayerPresenter.bmp │ ├── Controllers.ModelController.bmp │ ├── Controllers.PropertyController.bmp │ ├── Controllers.TemplateController.bmp │ ├── Controllers.ToolSetController.bmp │ ├── Core.cs │ ├── CursorProvider.cs │ ├── Dataweb.NShape.snk │ ├── Design.cs │ ├── DesignController.cs │ ├── Diagram.cs │ ├── DiagramController.cs │ ├── DiagramPresenter.cs │ ├── DiagramSetController.cs │ ├── DiameterShape.cs │ ├── EmfHelper.cs │ ├── Entity.cs │ ├── Exceptions.cs │ ├── FlowLayouter.cs │ ├── FreeHandTool.cs │ ├── FuzzyLogic.cs │ ├── GdiHelpers.cs │ ├── Geometry.cs │ ├── GridLayouter.cs │ ├── History.cs │ ├── ImageBasedShape.cs │ ├── Layer.cs │ ├── LayerController.cs │ ├── LayerPresenter.cs │ ├── Layouter.cs │ ├── LinearShape.cs │ ├── MenuItemDef.cs │ ├── Model.cs │ ├── ModelController.cs │ ├── MultiHashList.cs │ ├── NShape.csproj │ ├── Optimizer.cs │ ├── PathBasedShape.cs │ ├── PolyLineBase.cs │ ├── Polygone.cs │ ├── Project.bmp │ ├── Project.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── PropertyController.cs │ ├── PropertyMappings.cs │ ├── RectangleShape.cs │ ├── RectangularLineBase.cs │ ├── Repository.cs │ ├── Resources.cs │ ├── Resources │ │ ├── ActionDeniedCursor.cur │ │ ├── AddToLayer.bmp │ │ ├── AggregateShapeBtn.bmp │ │ ├── CopyBtn.bmp │ │ ├── CrossCursor.cur │ │ ├── CutBtn.bmp │ │ ├── DefaultBitmapLarge.bmp │ │ ├── DefaultBitmapSmall.bmp │ │ ├── DeleteBtn.bmp │ │ ├── DesignEditorBtn.bmp │ │ ├── DiagramPropertiesBtn.bmp │ │ ├── Disabled.bmp │ │ ├── EditTextCursor.cur │ │ ├── Enabled.bmp │ │ ├── FindShapes.bmp │ │ ├── FreehandIconLarge.bmp │ │ ├── FreehandIconSmall.bmp │ │ ├── GroupBtn.bmp │ │ ├── HandCursor.cur │ │ ├── Invisible.bmp │ │ ├── LibrariesBtn.bmp │ │ ├── LockIcon.bmp │ │ ├── MovePointCursor.cur │ │ ├── MoveShapeCursor.cur │ │ ├── NewLayer.bmp │ │ ├── PasteBtn.bmp │ │ ├── PenCursor.cur │ │ ├── PenPlusCursor.cur │ │ ├── PointerIconLarge.bmp │ │ ├── PointerIconSmall.bmp │ │ ├── RedoBtn.bmp │ │ ├── RemoveFromLayer.bmp │ │ ├── RenameBtn.bmp │ │ ├── RotateCursor.cur │ │ ├── SplitShapeAggregationBtn.bmp │ │ ├── ToBackground.bmp │ │ ├── ToForeground.bmp │ │ ├── UndoBtn.bmp │ │ ├── UngroupBtn.bmp │ │ ├── UnlockIcon.bmp │ │ └── Visible.bmp │ ├── Security.cs │ ├── Shape.cs │ ├── ShapeAggregation.cs │ ├── ShapeBase.cs │ ├── ShapeCollection.cs │ ├── ShapeDuplicator.cs │ ├── ShapeGroup.cs │ ├── ShapeType.cs │ ├── ShapeUtils.cs │ ├── Shaper.cs │ ├── SqlStore.bmp │ ├── SqlStore.cs │ ├── Store.cs │ ├── Styles.cs │ ├── Template.cs │ ├── TemplateController.cs │ ├── TextMeasurer.cs │ ├── TextShape.cs │ ├── Tool.cs │ ├── ToolCache.cs │ ├── ToolSetController.cs │ ├── TriangleBase.cs │ ├── TypeDescriptionProviders.cs │ ├── XmlStore.bmp │ └── XmlStore.cs ├── NShapeGeneralShapes │ ├── Dataweb.NShape.snk │ ├── Initializer.cs │ ├── LinearShapes.cs │ ├── MiscShapes.cs │ ├── NShapeGeneralShapes.csproj │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── QuadrangleShapes.cs │ ├── Resources │ │ ├── BitmapShapeIconLarge.bmp │ │ ├── BitmapShapeIconSmall.bmp │ │ ├── ShaperReferenceCircle.bmp │ │ ├── ShaperReferenceDiamond.bmp │ │ ├── ShaperReferenceQuadrangle.bmp │ │ └── ShaperReferenceTriangle.bmp │ ├── RoundShapes.cs │ ├── TextShapes.cs │ └── TriangleShapes.cs ├── NShapeWinFormsUI │ ├── Dataweb.NShape.snk │ ├── DesignEditorDialog.cs │ ├── DesignEditorDialog.designer.cs │ ├── DesignEditorDialog.resx │ ├── DesignPresenter.bmp │ ├── DesignPresenter.cs │ ├── DesignPresenter.designer.cs │ ├── DesignPresenter.resx │ ├── Designers.cs │ ├── Display.bmp │ ├── Display.cs │ ├── Display.designer.cs │ ├── Display.resx │ ├── ExportDiagramDialog.Designer.cs │ ├── ExportDiagramDialog.cs │ ├── ExportDiagramDialog.resx │ ├── FontFamilyListBox.cs │ ├── FontFamilyListBox.designer.cs │ ├── ImageEditor.cs │ ├── ImageEditor.designer.cs │ ├── ImageEditor.resx │ ├── InplaceTextBox.cs │ ├── InplaceTextBox.designer.cs │ ├── InplaceTextBox.resx │ ├── LayerEditor.Designer.cs │ ├── LayerEditor.bmp │ ├── LayerEditor.cs │ ├── LayerEditor.resx │ ├── LayerListView.Designer.cs │ ├── LayerListView.bmp │ ├── LayerListView.cs │ ├── LayerListView.resx │ ├── LayoutDialog.cs │ ├── LayoutDialog.designer.cs │ ├── LayoutDialog.resx │ ├── LibraryManagementDialog.cs │ ├── LibraryManagementDialog.designer.cs │ ├── LibraryManagementDialog.resx │ ├── ModelTreeViewPresenter.bmp │ ├── ModelTreeViewPresenter.cs │ ├── ModelTreeViewPresenter.designer.cs │ ├── ModelTreeViewPresenter.resx │ ├── NShapeWinFormsUI.csproj │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── PropertyPresenter.bmp │ ├── PropertyPresenter.cs │ ├── Resources │ │ ├── ActivateDesign.bmp │ │ ├── AddToLayer.bmp │ │ ├── AggregateShapeBtn.bmp │ │ ├── AssignToLayer.bmp │ │ ├── Checked.bmp │ │ ├── CopyAsImage.bmp │ │ ├── CopyBtn.bmp │ │ ├── CutBtn.bmp │ │ ├── DeleteBtn.bmp │ │ ├── DiagramPropertiesBtn3.bmp │ │ ├── Disabled.bmp │ │ ├── Enabled.bmp │ │ ├── FreehandIconLarge.bmp │ │ ├── FreehandIconSmall.bmp │ │ ├── GroupBtn.bmp │ │ ├── Information.bmp │ │ ├── Invisible.bmp │ │ ├── Layers.bmp │ │ ├── ModelObjectAttached.bmp │ │ ├── ModelObjectDetached.bmp │ │ ├── NewBtn.bmp │ │ ├── NewItemsBtn.bmp │ │ ├── NewLayer.bmp │ │ ├── PasteBtn.bmp │ │ ├── PointerIconLarge.bmp │ │ ├── PointerIconSmall.bmp │ │ ├── RedoBtn.bmp │ │ ├── RemoveFromAllLayers.bmp │ │ ├── RemoveFromLayer.bmp │ │ ├── RenameBtn.bmp │ │ ├── SplitShapeAggregationBtn.bmp │ │ ├── ToBackground.bmp │ │ ├── ToForeground.bmp │ │ ├── Unchecked.bmp │ │ ├── UndoBtn.bmp │ │ ├── UngroupBtn.bmp │ │ └── Visible.bmp │ ├── ShapeInfoDialog.Designer.cs │ ├── ShapeInfoDialog.cs │ ├── ShapeInfoDialog.resx │ ├── StyleListBox.cs │ ├── StyleListBox.designer.cs │ ├── StyleListBox.resx │ ├── TemplateEditorDialog.cs │ ├── TemplateEditorDialog.designer.cs │ ├── TemplateEditorDialog.resx │ ├── TemplatePresenter.bmp │ ├── TemplatePresenter.cs │ ├── TemplatePresenter.designer.cs │ ├── TemplatePresenter.resx │ ├── TextEditorDialog.cs │ ├── TextEditorDialog.designer.cs │ ├── TextEditorDialog.resx │ ├── ToolSetListViewPresenter.bmp │ ├── ToolSetListViewPresenter.cs │ ├── ToolSetListViewPresenter.designer.cs │ ├── ToolSetListViewPresenter.resx │ ├── ToolSetToolStripPresenter.Designer.cs │ ├── ToolSetToolStripPresenter.bmp │ ├── ToolSetToolStripPresenter.cs │ ├── UITypeEditors.cs │ ├── VerticalTabControl.cs │ ├── VerticalTabControl.designer.cs │ ├── VerticalTabControl.resx │ └── WinFormHelpers.cs ├── Preferences │ ├── IPreference.cs │ ├── PreferenceBase.cs │ └── Preferences.csproj ├── Resources │ ├── BlueBall.png │ ├── ButtonBackgroundImage.jpg │ ├── ButtonBackgroundImageHover.jpg │ ├── Close_6519.png │ ├── GreenBall.png │ ├── GreyBall.png │ ├── LipSync │ │ ├── AI.jpg │ │ ├── AI_LightGray.jpg │ │ ├── AI_Transparent.png │ │ ├── E.jpg │ │ ├── E_LightGray.jpg │ │ ├── E_Transparent.png │ │ ├── FV.jpg │ │ ├── FV_LightGray.jpg │ │ ├── FV_Transparent.png │ │ ├── L.jpg │ │ ├── L_LightGray.jpg │ │ ├── L_Transparent.png │ │ ├── MBP.jpg │ │ ├── MBP_LightGray.jpg │ │ ├── MBP_Transparent.png │ │ ├── NoImage.png │ │ ├── O.jpg │ │ ├── O_LightGray.jpg │ │ ├── O_Transparent.png │ │ ├── Preview.jpg │ │ ├── Tools.cs │ │ ├── U.jpg │ │ ├── U_LightGray.jpg │ │ ├── U_Transparent.png │ │ ├── WQ.jpg │ │ ├── WQ_LightGray.jpg │ │ ├── WQ_Transparent.png │ │ ├── etc.jpg │ │ ├── etc_LightGray.jpg │ │ ├── etc_Transparent.png │ │ ├── rest.jpg │ │ ├── rest_LightGray.jpg │ │ ├── rest_Transparent.png │ │ └── standard_dictionary │ ├── MarkBarVisible.png │ ├── MarkLineVisible.png │ ├── MarkTailLineVisible.png │ ├── NewFile_6276.png │ ├── Open_6529.png │ ├── Prop_Add.png │ ├── Prop_Edit.png │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RedBall.png │ ├── Resources.csproj │ ├── Resources │ │ ├── Audio_Devices.png │ │ ├── Auto_Save.png │ │ ├── ButtonBackgroundImage.jpg │ │ ├── ButtonBackgroundImageHover.jpg │ │ ├── Color.png │ │ ├── ColorGradient.png │ │ ├── Curve.png │ │ ├── Exit.png │ │ ├── HeadingBackgroundImage.jpg │ │ ├── HeadingBackgroundImageHover.jpg │ │ ├── LibraryLink.png │ │ ├── Lipsync.png │ │ ├── Reset.png │ │ ├── Save.png │ │ ├── SaveAs.png │ │ ├── Save_6530.png │ │ ├── VixenImage.png │ │ ├── add_Collection.png │ │ ├── alignBothMark.png │ │ ├── alignEndMark.png │ │ ├── alignStartEnd.png │ │ ├── alignStartMark.png │ │ ├── boldLine.png │ │ ├── check-mark.png │ │ ├── check-markMedium.png │ │ ├── clock_go.png │ │ ├── delete_32.png │ │ ├── distribute.png │ │ ├── dottedLine.png │ │ ├── layers.bmp │ │ ├── locked.png │ │ ├── marks.png │ │ ├── matchDuration.png │ │ ├── open.png │ │ ├── openMarkManager.png │ │ ├── paste_invert.png │ │ ├── paste_marks.png │ │ ├── paste_special.png │ │ ├── unlocked.png │ │ ├── unlockedAll.png │ │ ├── zoom_row_in.png │ │ ├── zoom_row_out.png │ │ ├── zoom_time_in.png │ │ └── zoom_time_out.png │ ├── Save_6530.png │ ├── Saveall_6518.png │ ├── Split.png │ ├── StarBurst.png │ ├── Templates │ │ ├── blue_button.png │ │ └── blue_button.psd │ ├── Tools.cs │ ├── TriangleExclamation.png │ ├── Vixen3.ico │ ├── WhiteBall.png │ ├── YellowBall.png │ ├── accept.png │ ├── add.png │ ├── alignBoth.png │ ├── alignCenter.png │ ├── alignEnd.png │ ├── alignStart.png │ ├── alignment.png │ ├── arrow_branch.png │ ├── arrow_divide.png │ ├── arrow_down.png │ ├── arrow_in.png │ ├── arrow_inout.png │ ├── arrow_join.png │ ├── arrow_left.png │ ├── arrow_merge.png │ ├── arrow_out.png │ ├── arrow_redo.png │ ├── arrow_refresh.png │ ├── arrow_refresh_small.png │ ├── arrow_repeat.png │ ├── arrow_repeat_once.png │ ├── arrow_right.png │ ├── arrow_rotate_anticlockwise.png │ ├── arrow_rotate_clockwise.png │ ├── arrow_switch.png │ ├── arrow_turn_left.png │ ├── arrow_turn_right.png │ ├── arrow_undo.png │ ├── arrow_up.png │ ├── attributes_display.png │ ├── bullet_black.png │ ├── bullet_blue.png │ ├── bullet_green.png │ ├── bullet_orange.png │ ├── bullet_pink.png │ ├── bullet_purple.png │ ├── bullet_toggle_minus.png │ ├── bullet_toggle_minus_16px.png │ ├── bullet_toggle_minus_active_16px.png │ ├── bullet_toggle_plus.png │ ├── bullet_toggle_plus_16px.png │ ├── bullet_toggle_plus_active_16px.png │ ├── bullet_white.png │ ├── bullet_yellow.png │ ├── buttonAlignBottom.BackgroundImage.png │ ├── buttonAlignHorizMid.BackgroundImage.png │ ├── buttonAlignLeft.BackgroundImage.png │ ├── buttonAlignRight.BackgroundImage.png │ ├── buttonAlignTop.BackgroundImage.png │ ├── buttonAlignVertMid.BackgroundImage.png │ ├── buttonBulbBigger.png │ ├── buttonBulbEqual.png │ ├── buttonBulbSmaller.png │ ├── buttonDistributeHorizontal.BackgroundImage.png │ ├── buttonDistributeVertical.BackgroundImage.png │ ├── buttonMatchProperties.BackgroundImage.png │ ├── check-mark.png │ ├── clipboard_empty.png │ ├── clipboard_invoice.png │ ├── clipboard_sign.png │ ├── clipboard_sign_out.png │ ├── clock_.png │ ├── clock_15.png │ ├── clock_45.png │ ├── clock_add.png │ ├── clock_delete.png │ ├── clock_edit.png │ ├── clock_error.png │ ├── clock_go.png │ ├── clock_history_frame.png │ ├── clock_link.png │ ├── clock_moon_phase.png │ ├── clock_pause.png │ ├── clock_play.png │ ├── clock_red.png │ ├── clock_select_remain.png │ ├── clock_stop.png │ ├── cog.png │ ├── cog_add.png │ ├── cog_delete.png │ ├── cog_edit.png │ ├── cog_error.png │ ├── cog_error_red.png │ ├── cog_go.png │ ├── collection.png │ ├── colors.png │ ├── control_end.png │ ├── control_end_blue.png │ ├── control_fastforward.png │ ├── control_fastforward_blue.png │ ├── control_pause.png │ ├── control_pause_blue.png │ ├── control_play.png │ ├── control_play_blue.png │ ├── control_rewind.png │ ├── control_rewind_blue.png │ ├── control_start.png │ ├── control_start_blue.png │ ├── control_stop.png │ ├── control_stop_blue.png │ ├── controlbar.png │ ├── copySelect.png │ ├── cursor_arrow.png │ ├── cut.png │ ├── data_chooser.png │ ├── data_field.png │ ├── data_grid.png │ ├── data_sort.png │ ├── data_table.png │ ├── delete.png │ ├── disk.png │ ├── divide.png │ ├── document_comment_above.png │ ├── document_comment_behind.png │ ├── document_comment_below.png │ ├── document_comments.png │ ├── document_copies.png │ ├── document_editing.png │ ├── document_empty.png │ ├── document_export.png │ ├── document_font.png │ ├── document_green.png │ ├── document_image.png │ ├── document_image_hor.png │ ├── document_image_ver.png │ ├── document_index.png │ ├── document_info.png │ ├── document_insert.png │ ├── document_inspect.png │ ├── document_inspector.png │ ├── document_layout.png │ ├── document_margins.png │ ├── document_move.png │ ├── document_next.png │ ├── document_notes.png │ ├── document_num.png │ ├── document_red.png │ ├── document_shred.png │ ├── document_signature.png │ ├── document_spacing.png │ ├── document_yellow.png │ ├── effects.png │ ├── fill_gaps.png │ ├── filter.png │ ├── filter_add.png │ ├── filter_delete.png │ ├── folder.png │ ├── folder_add.png │ ├── folder_delete.png │ ├── folder_edit.png │ ├── folder_error.png │ ├── folder_explore.png │ ├── folder_go.png │ ├── folder_open.png │ ├── group.png │ ├── help.png │ ├── hourglass.png │ ├── hourglass_add.png │ ├── hourglass_delete.png │ ├── hourglass_go.png │ ├── hourglass_link.png │ ├── layers.png │ ├── lightbulb.png │ ├── lightbulb_add.png │ ├── lightbulb_delete.png │ ├── lightbulb_off.png │ ├── lightning.png │ ├── lightning_add.png │ ├── lightning_delete.png │ ├── lightning_go.png │ ├── magnet.png │ ├── magnifier.png │ ├── magnifier_zoom_in.png │ ├── magnifier_zoom_out.png │ ├── menu.png │ ├── menu_item.png │ ├── menubar.png │ ├── messenger.png │ ├── minus.png │ ├── music.png │ ├── page_copy.png │ ├── page_white_copy.png │ ├── page_white_paste.png │ ├── paste_plain.png │ ├── pencil.png │ ├── pencil_add.png │ ├── pencil_delete.png │ ├── pencil_go.png │ ├── pencil_ruler.png │ ├── plus.png │ ├── randomColors.png │ ├── sequentialColors.png │ ├── sound.png │ ├── sound_add.png │ ├── sound_delete.png │ ├── sound_low.png │ ├── sound_mute.png │ ├── sound_none.png │ ├── tab.png │ ├── tab_add.png │ ├── tab_content.png │ ├── tab_content_vertical.png │ ├── tab_delete.png │ ├── tab_edit.png │ ├── tab_go.png │ ├── tab_side.png │ ├── tabbar.png │ ├── table.png │ ├── table_add.png │ ├── table_chart.png │ ├── table_chart_left.png │ ├── table_delete.png │ ├── table_edit.png │ ├── table_error.png │ ├── table_excel.png │ ├── table_export.png │ ├── table_gear.png │ ├── table_go.png │ ├── table_heatmap.png │ ├── table_heatmap2.png │ ├── table_import.png │ ├── table_insert.png │ ├── table_key.png │ ├── table_lightning.png │ ├── table_link.png │ ├── table_money.png │ ├── table_multiple.png │ ├── table_paint_can.png │ ├── table_refresh.png │ ├── table_relationship.png │ ├── table_replace.png │ ├── table_row_delete.png │ ├── table_row_insert.png │ ├── table_save.png │ ├── table_select.png │ ├── table_select_all.png │ ├── table_select_big.png │ ├── table_select_column.png │ ├── table_select_row.png │ ├── table_sheet.png │ ├── table_sort.png │ ├── table_split.png │ ├── table_sum.png │ ├── table_tab.png │ ├── table_tab_resize.png │ ├── table_tab_search.png │ ├── table_torn.png │ ├── timeline_marker.png │ ├── toolbar.png │ ├── toolbar_add.png │ ├── toolbar_bookmark.png │ ├── toolbar_delete.png │ ├── toolbar_edit.png │ ├── toolbar_error.png │ ├── toolbar_go.png │ ├── zoom.png │ ├── zoom_actual.png │ ├── zoom_actual_equal.png │ ├── zoom_extend.png │ ├── zoom_fit.png │ ├── zoom_in.png │ ├── zoom_last.png │ ├── zoom_out.png │ ├── zoom_refresh.png │ └── zoom_selection.png ├── Utilities │ ├── ElementTemplateHelper.cs │ └── Utilities.csproj ├── ValueTypes │ ├── FilePath.cs │ ├── Percentage.cs │ ├── PercentageTypeConverter.cs │ └── ValueTypes.csproj ├── WPFCommon │ ├── Behaviors │ │ ├── IgnoreMouseWheelBehavior.cs │ │ ├── ListViewItemBehavior.cs │ │ ├── ListViewScrollToSelectedBehavior.cs │ │ ├── TreeViewMultipleSelectionBehavior.cs │ │ └── TreeViewSelectedItemBehavior.cs │ ├── Command │ │ └── RelayCommand.cs │ ├── Controls │ │ ├── IndexingStackPanel.cs │ │ ├── NavigatableHyperLink.cs │ │ └── SearchTextBox.cs │ ├── Converters │ │ ├── AdditionConverter.cs │ │ ├── BitmapImageConverter.cs │ │ ├── BooleanConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── ColorToSolidBrushConverter.cs │ │ ├── CompositeCollectionConverter.cs │ │ ├── IndexOfConverter.cs │ │ ├── InverseBooleanConverter.cs │ │ ├── NotNullToVisibilityConverter.cs │ │ ├── NullConverter.cs │ │ ├── NullToBooleanConverter.cs │ │ ├── NullToVisibilityConverter.cs │ │ ├── PercentageConverter.cs │ │ └── SingleItemToCollectionConverter.cs │ ├── Extensions │ │ └── Extensions.cs │ ├── Input │ │ ├── DragDropManager.cs │ │ ├── DragDropTargetType.cs │ │ ├── DropPreviewAdorner.cs │ │ ├── IDragSourceAdvisor.cs │ │ └── IDropTargetAdvisor.cs │ ├── Services │ │ ├── DownloadService.cs │ │ ├── IDownloadService.cs │ │ ├── IMessageBoxService.cs │ │ ├── MessageBoxResponse.cs │ │ └── MessageBoxService.cs │ ├── Styles │ │ └── DefaultHiddenStyleResourceDictionary.cs │ ├── Theme │ │ ├── Brushes.xaml │ │ ├── DefaultHiddenStyle.xaml │ │ ├── ExpressionDark.xaml │ │ ├── ExpressionDarkBrushes.xaml │ │ ├── Menu.xaml │ │ └── Theme.xaml │ ├── Utils │ │ ├── AsyncImageLoader.cs │ │ ├── DependencyObjectExtensions.cs │ │ ├── DialogResultBehavior.cs │ │ ├── TextBoxExtender.cs │ │ ├── TransformedCollection.cs │ │ └── TreeViewSelectionHelper.cs │ ├── ViewModel │ │ └── BindableBase.cs │ └── WPFCommon.csproj ├── WpfPropertyGrid.Themes │ ├── Kaxaml.cs │ ├── Kaxaml │ │ ├── IndexingStackPanel.cs │ │ ├── Reveal.cs │ │ └── Theme.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ └── WpfPropertyGrid.Themes.csproj ├── WpfPropertyGrid │ ├── CategoryEditor.cs │ ├── CategoryItem.cs │ ├── Controls │ │ ├── DoubleEditor.cs │ │ ├── EnumDropdown.cs │ │ ├── SearchTextBox.cs │ │ └── SliderEditorBase.cs │ ├── Converters │ │ ├── DebugConverter.cs │ │ ├── EnumValueConverter.cs │ │ ├── ExpanderHeaderWidthConverter.cs │ │ ├── FontConverterDecorator.cs │ │ ├── FontStretchConverterDecorator.cs │ │ ├── FontStyleConverterDecorator.cs │ │ ├── FontWeightConverterDecorator.cs │ │ ├── MultiBooleanToVisibilityConverter.cs │ │ └── NullValueConverter.cs │ ├── DataResource.cs │ ├── Design │ │ ├── AlphabeticalLayout.cs │ │ ├── AlphabeticalLayout.xaml │ │ ├── CategorizedLayout.cs │ │ ├── CategorizedLayout.xaml │ │ ├── CategoryContainer.cs │ │ ├── CategoryEditorContentPresenter.cs │ │ ├── CategoryItemsLayout.cs │ │ ├── ExtendedPropertyEditorTab.cs │ │ ├── GridEntryContainer.cs │ │ ├── GridEntryLayout.cs │ │ ├── PropertyContainer.cs │ │ ├── PropertyEditorContentPresenter.cs │ │ ├── PropertyItemsLayout.cs │ │ ├── PropertyNameTextBlock.cs │ │ ├── TabbedLayout.cs │ │ ├── TabbedLayout.xaml │ │ ├── TabbedLayoutItem.cs │ │ └── TabbedLayoutTemplateSelector.cs │ ├── Editor.cs │ ├── EditorCollection.cs │ ├── EditorKeys.cs │ ├── GridEntry.cs │ ├── GridEntryCollection.cs │ ├── Input │ │ ├── PropertyEditorCommands.cs │ │ └── PropertyGridCommands.cs │ ├── Internal │ │ ├── MathUtil.cs │ │ └── MergedPropertyDescriptor.cs │ ├── KnownTypes.cs │ ├── License.txt │ ├── Metadata │ │ ├── AttributesContainer.cs │ │ ├── BrowsableCategoryAttribute.cs │ │ ├── BrowsablePropertyAttribute.cs │ │ ├── CategoryEditorAttribute.cs │ │ ├── CategoryOrderAttribute.cs │ │ ├── FlatternHierarchyAttribute.cs │ │ ├── NumberRangeAttribute.cs │ │ ├── PropertyEditorAttribute.cs │ │ └── PropertyOrderAttribute.cs │ ├── MetadataRepository.cs │ ├── ObjectServices.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── PropertyDisplayMode.cs │ ├── PropertyEditing │ │ ├── CategoryItemComparer.cs │ │ ├── Filters │ │ │ ├── IPropertyFilterTarget.cs │ │ │ ├── PropertyFilter.cs │ │ │ ├── PropertyFilterAppliedEventArgs.cs │ │ │ └── PropertyFilterPredicate.cs │ │ ├── NamedColor.cs │ │ ├── NamedColorList.cs │ │ ├── PropertyItemComparer.cs │ │ ├── ValueExceptionEventArgs.cs │ │ └── ValueExceptionSource.cs │ ├── PropertyEditingEventArgs.cs │ ├── PropertyEditor.cs │ ├── PropertyGrid.Commands.cs │ ├── PropertyGrid.cs │ ├── PropertyGridUtils.cs │ ├── PropertyItem.cs │ ├── PropertyItemValue.cs │ ├── PropertyValueChangedEventArgs.cs │ ├── ResourceLocator.cs │ ├── Themes │ │ ├── DoubleEditor.xaml │ │ ├── EditorResources.xaml │ │ ├── Generic.xaml │ │ ├── Images │ │ │ ├── clear.png │ │ │ └── search.png │ │ ├── PropertyGrid.xaml │ │ └── SearchTextBox.xaml │ ├── TypeEditor.cs │ ├── Utils │ │ └── PasswordBoxExtender.cs │ ├── ValueEditors │ │ └── EditorResources.xaml │ └── WpfPropertyGrid.csproj └── ffmpeg │ ├── ffmpeg.cs │ ├── ffmpeg.csproj │ └── ffmpeg.exe ├── Vixen.Core ├── Annotations.cs ├── Attributes │ ├── BoolDescriptionAttribute.cs │ ├── BrowsableCategoryAttribute.cs │ ├── BrowsablePropertyAttribute.cs │ ├── CategoryEditorAttribute.cs │ ├── CategoryOrderAttribute.cs │ ├── ExpandableObjectAttribute.cs │ ├── FlatternHierarchyAttribute.cs │ ├── IOrderableAttribute.cs │ ├── NumberRangeAttribute.cs │ ├── OffsetAttribute.cs │ ├── PropertyEditorAttribute.cs │ └── PropertyOrderAttribute.cs ├── Cache │ ├── Event │ │ ├── CacheEventArgs.cs │ │ └── CacheStartedEventArgs.cs │ └── Sequence │ │ ├── FixedIntervalManualTiming.cs │ │ ├── ISequenceCache.cs │ │ └── SequenceIntervalGenerator.cs ├── Commands │ ├── 16BitCommand.cs │ ├── 32BitCommand.cs │ ├── 64BitCommand.cs │ ├── 8BitCommand.cs │ ├── ColorCommand.cs │ ├── CommandExtensions.cs │ ├── FixtureIndexType.cs │ ├── ICommand.cs │ ├── Named8BitCommand.cs │ ├── StringCommand.cs │ └── UnknownValueCommand.cs ├── Common │ ├── ColorSpaceTypeConverter.cs │ ├── ColorSpaces.cs │ └── Graphics.cs ├── Data │ ├── Combinator │ │ ├── Color │ │ │ └── NaiveColorCombinator.cs │ │ ├── Combinator.cs │ │ ├── DiscardExcessCombinator.cs │ │ ├── _16Bit │ │ │ ├── 16BitAverageCombinator.cs │ │ │ └── 16BitHighestWinsCombinator.cs │ │ ├── _32Bit │ │ │ └── 32BitHighestWinsCombinator.cs │ │ ├── _64Bit │ │ │ └── 64BitHighestWinsCombinator.cs │ │ └── _8Bit │ │ │ ├── 8BitAverageCombinator.cs │ │ │ └── 8BitHighestWinsCombinator.cs │ ├── Evaluator │ │ ├── 16BitEvaluator.cs │ │ ├── 32BitEvaluator.cs │ │ ├── 64BitEvaluator.cs │ │ ├── 8BitEvaluator.cs │ │ ├── ColorEvaluator.cs │ │ ├── CommandLookup16BitEvaluator.cs │ │ ├── CommandLookup8BitEvaluator.cs │ │ └── Evaluator.cs │ ├── Flow │ │ ├── CommandDataFlowData.cs │ │ ├── CommandOutputDataFlowAdapter.cs │ │ ├── CommandsDataFlowData.cs │ │ ├── DataFlowComponentEventArgs.cs │ │ ├── DataFlowComponentReference.cs │ │ ├── DataFlowPatch.cs │ │ ├── DataFlowType.cs │ │ ├── ElementDataFlowAdapter.cs │ │ ├── ElementDataFlowOutputAdapter.cs │ │ ├── IDataFlowComponent.cs │ │ ├── IDataFlowComponentReference.cs │ │ ├── IDataFlowData.cs │ │ ├── IDataFlowOutput.cs │ │ ├── IntentDataFlowData.cs │ │ ├── IntentOutputDataFlowAdapter.cs │ │ └── IntentsDataFlowData.cs │ ├── Policy │ │ ├── ControllerDataPolicy.cs │ │ ├── DataFlowDataDispatchingDataPolicy.cs │ │ └── SmartControllerDataPolicy.cs │ ├── StateCombinator │ │ ├── LayeredStateCombinator.cs │ │ └── StateCombinator.cs │ └── Value │ │ ├── CommandValue.cs │ │ ├── DiscreteValue.cs │ │ ├── FunctionIdentity.cs │ │ ├── IIntentDataType.cs │ │ ├── IntensityValue.cs │ │ ├── LightingValue.cs │ │ ├── RGBValue.cs │ │ └── RangeValue.cs ├── Delegates │ └── Delegates.cs ├── Directory.Build.props ├── Execution │ ├── Context │ │ ├── ContextBase.cs │ │ ├── IProgramContext.cs │ │ ├── ISequenceContext.cs │ │ ├── LiveContext.cs │ │ ├── NonCachingSequenceContext.cs │ │ ├── PreCachingSequenceContext.cs │ │ ├── PreviewContext.cs │ │ ├── ProgramContext.cs │ │ └── SequenceContext.cs │ ├── ContextCaching.cs │ ├── ContextCurrentEffectsFull.cs │ ├── ContextCurrentEffectsIncremental.cs │ ├── ContextFeatures.cs │ ├── ContextTargetType.cs │ ├── ControllerUpdateAdjudicator.cs │ ├── DataSource │ │ ├── EffectNodeBuffer.cs │ │ ├── EffectNodeDataPump.cs │ │ ├── IDataSource.cs │ │ ├── IMutableDataSource.cs │ │ ├── LiveDataSource.cs │ │ └── SequenceDataPump.cs │ ├── EffectNodeQueue.cs │ ├── IContext.cs │ ├── IContextCurrentEffects.cs │ ├── IElementStateBuilder.cs │ ├── IExecutionControl.cs │ ├── IExecutor.cs │ ├── IProgramExecutor.cs │ ├── ISequenceExecutor.cs │ ├── ITimingProvider.cs │ ├── IntentStateBuilder.cs │ ├── MediaTimingProvider.cs │ ├── ProgramExecutor.cs │ ├── QueuingSequenceEnumerator.cs │ ├── SelectedTimingProvider.cs │ ├── TimingModuleTimingProvider.cs │ └── TimingProviders.cs ├── Export │ ├── CSVWriter.cs │ ├── ESEQWriter.cs │ ├── Export.cs │ ├── ExportCommandHandler.cs │ ├── ExportProgressStatus.cs │ ├── ExportWriterBase.cs │ ├── FPP │ │ ├── BoolConverter.cs │ │ ├── ChannelOutputs.cs │ │ ├── ConfigWriter.cs │ │ ├── FppOutputConfiguration.cs │ │ ├── OutputTypes.cs │ │ ├── Universe.cs │ │ ├── UniverseTypes.cs │ │ └── VariableHeader.cs │ ├── FSEQCompressedWriter.cs │ ├── FSEQWriter.cs │ ├── HelixWriter.cs │ ├── IExport.cs │ ├── Vir2Writer.cs │ └── Vix2Writer.cs ├── Extensions │ ├── CollectionExtensions.cs │ └── Extensions.cs ├── Factory │ ├── CommandOutputFactory.cs │ ├── ControllerFactory.cs │ ├── IOutputFactory.cs │ ├── IntentOutputFactory.cs │ ├── PreviewFactory.cs │ └── SmartControllerFactory.cs ├── Fonts │ ├── DigitalDream.ttf │ └── RadioLand.ttf ├── IO │ ├── Binary │ │ ├── BinaryFileReader.cs │ │ ├── BinaryFileWriter.cs │ │ └── SequenceCache │ │ │ ├── SequenceCacheBinaryReader.cs │ │ │ └── SequenceCacheBinaryWriter.cs │ ├── EmptyMigrator.cs │ ├── Factory │ │ ├── ContentMigratorFactory.cs │ │ ├── FileReaderFactory.cs │ │ ├── FileWriterFactory.cs │ │ ├── IContentMigratorFactory.cs │ │ ├── IFileReaderFactory.cs │ │ ├── ILoaderFactory.cs │ │ ├── IObjectContentReaderFactory.cs │ │ ├── IObjectContentWriterFactory.cs │ │ ├── IPersistorFactory.cs │ │ ├── LoaderFactory.cs │ │ ├── ObjectContentReaderFactory.cs │ │ ├── ObjectContentWriterFactory.cs │ │ └── PersistorFactory.cs │ ├── FileCompressor.cs │ ├── IContentMigrator.cs │ ├── IFileReader.cs │ ├── IFileWriter.cs │ ├── IMigratingObjectLoaderService.cs │ ├── IMigrationSegment.cs │ ├── IModuleDataModelCollectionSerializer.cs │ ├── IObjectContentReader.cs │ ├── IObjectContentWriter.cs │ ├── IObjectLoader.cs │ ├── IObjectMigratorService.cs │ ├── IObjectPersistor.cs │ ├── IObjectPersistorService.cs │ ├── ISerializer.cs │ ├── JSON │ │ ├── CustomContrractResolver.cs │ │ ├── ElementTreeReader.cs │ │ └── ElementTreeWriter.cs │ ├── Loader │ │ ├── ElementNodeTemplateLoader.cs │ │ ├── FixtureSpecificationLoader.cs │ │ ├── ModuleStoreLoader.cs │ │ ├── ProgramLoader.cs │ │ ├── SequenceCacheLoader.cs │ │ ├── SequenceLoader.cs │ │ ├── SystemConfigLoader.cs │ │ └── SystemContextLoader.cs │ ├── MigratingObjectLoaderService.cs │ ├── MigrationPath.cs │ ├── MigrationSegment.cs │ ├── ObjectMigratorService.cs │ ├── ObjectPersistorService.cs │ ├── ObjectVersion.cs │ ├── Persistor │ │ ├── ElementNodeTemplatePersistor.cs │ │ ├── ModuleStorePersistor.cs │ │ ├── ProgramPersistor.cs │ │ ├── SequenceCachePersister.cs │ │ ├── SequencePersistor.cs │ │ ├── SystemConfigPersistor.cs │ │ └── SystemContextPersistor.cs │ ├── Policy │ │ ├── ElementNodeTemplateFilePolicy.cs │ │ ├── IFilePolicy.cs │ │ ├── ModuleStoreFilePolicy.cs │ │ ├── OutputFilterTemplatePolicy.cs │ │ ├── ProgramFilePolicy.cs │ │ ├── ScriptSequenceFilePolicy.cs │ │ ├── SequenceFilePolicy.cs │ │ ├── SystemConfigFilePolicy.cs │ │ └── SystemContextFilePolicy.cs │ └── Xml │ │ ├── ChannelNodeTemplate │ │ ├── ElementNodeTemplateXElementMigrator.cs │ │ ├── ElementNodeTemplateXElementReader.cs │ │ ├── ElementNodeTemplateXElementWriter.cs │ │ └── XmlElementNodeTemplateFilePolicy.cs │ │ ├── FixtureSpecification │ │ ├── FixtureSpecificationXElementMigrator.cs │ │ └── FixtureSpecificationXElementWriter.cs │ │ ├── ModuleStore │ │ ├── ModuleStoreXElementMigrator.cs │ │ ├── ModuleStoreXElementReader.cs │ │ ├── ModuleStoreXElementWriter.cs │ │ └── XmlModuleStoreFilePolicy.cs │ │ ├── Program │ │ ├── ProgramXElementMigrator.cs │ │ ├── ProgramXElementReader.cs │ │ ├── ProgramXElementWriter.cs │ │ └── XmlProgramFilePolicy.cs │ │ ├── Sequence │ │ ├── SequenceXElementReader.cs │ │ └── SequenceXElementWriter.cs │ │ ├── Serializer │ │ ├── IXmlSerializer.cs │ │ ├── XmlCompressedFileCollectionSerializer.cs │ │ ├── XmlCompressedFileSerializer.cs │ │ ├── XmlControllerCollectionSerializer.cs │ │ ├── XmlControllerSerializer.cs │ │ ├── XmlDataFlowPatchCollectionSerializer.cs │ │ ├── XmlDataFlowPatchSerializer.cs │ │ ├── XmlDisabledControllerCollectionSerializer.cs │ │ ├── XmlElementCollectionSerializer.cs │ │ ├── XmlElementNodeCollectionSerializer.cs │ │ ├── XmlElementNodeSerializer.cs │ │ ├── XmlElementSerializer.cs │ │ ├── XmlModuleDataModelCollectionSerializer.cs │ │ ├── XmlModuleDataModelSerializer.cs │ │ ├── XmlModuleDataSetSerializer.cs │ │ ├── XmlModuleLocalDataSetSerializer.cs │ │ ├── XmlModuleStaticDataSetSerializer.cs │ │ ├── XmlOutputFilterCollectionSerializer.cs │ │ ├── XmlOutputFilterSerializer.cs │ │ ├── XmlPreviewCollectionSerializer.cs │ │ ├── XmlPreviewSerializer.cs │ │ ├── XmlPropertyCollectionSerializer.cs │ │ ├── XmlSequenceListSerializer.cs │ │ ├── XmlSmartControllerCollectionSerializer.cs │ │ └── XmlSmartControllerSerializer.cs │ │ ├── SystemConfig │ │ ├── SystemConfigXElementMigrator.cs │ │ ├── SystemConfigXElementReader.cs │ │ ├── SystemConfigXElementWriter.cs │ │ └── XmlSystemConfigFilePolicy.cs │ │ ├── SystemContext │ │ ├── SystemContextXElementMigrator.cs │ │ ├── SystemContextXElementReader.cs │ │ ├── SystemContextXElementWriter.cs │ │ └── XmlSystemContextFilePolicy.cs │ │ ├── XElementFileReader.cs │ │ ├── XElementFileWriter.cs │ │ └── XmlRootAttributeVersion.cs ├── Instrumentation │ ├── AveragePerCountValue.cs │ ├── AveragePerSecondValue.cs │ ├── CountValue.cs │ ├── DoubleValue.cs │ ├── IInstrumentation.cs │ ├── IInstrumentationValue.cs │ ├── InstrumentationValue.cs │ ├── MillisecondsValue.cs │ ├── PercentValue.cs │ └── RateValue.cs ├── Intent │ ├── CommandIntent.cs │ ├── DiscreteLightingIntent.cs │ ├── IntentBuilder.cs │ ├── IntentHelpers.cs │ ├── LightingIntent.cs │ ├── NonSegmentedLinearIntent.cs │ ├── RGBIntent.cs │ ├── RangeIntent.cs │ ├── StaticArrayIntent.cs │ ├── StaticDiscreteLightingIntent.cs │ ├── StaticIntent.cs │ ├── StaticIntentState.cs │ └── StaticLightingIntent.cs ├── Interpolator │ ├── DiscreteValueInterpolator.cs │ ├── Interpolator.cs │ ├── LightingValueInterpolator.cs │ ├── RGBValueInterpolator.cs │ ├── RangeValueInterpolator.cs │ ├── StaticDiscreteValueInterpolator.cs │ ├── StaticLightingValueInterpolator.cs │ └── StaticValueInterpolator.cs ├── Marks │ ├── IMark.cs │ ├── IMarkCollection.cs │ ├── IMarkDecorator.cs │ └── IMarkType.cs ├── Module │ ├── Analysis │ │ ├── AnalysisModuleDescriptorBase.cs │ │ ├── AnalysisModuleImplementation.cs │ │ ├── AnalysisModuleInstanceBase.cs │ │ ├── AnalysisModuleManagement.cs │ │ ├── AnalysisModuleRepository.cs │ │ ├── IAnalysis.cs │ │ ├── IAnalysisModuleDescriptor.cs │ │ └── IAnalysisModuleInstance.cs │ ├── App │ │ ├── AppModuleDescriptorBase.cs │ │ ├── AppModuleImplementation.cs │ │ ├── AppModuleInstanceBase.cs │ │ ├── AppModuleManagement.cs │ │ ├── AppModuleRepository.cs │ │ ├── IApp.cs │ │ ├── IAppModuleDescriptor.cs │ │ └── IAppModuleInstance.cs │ ├── Controller │ │ ├── ControllerModuleDescriptorBase.cs │ │ ├── ControllerModuleImplementation.cs │ │ ├── ControllerModuleInstanceBase.cs │ │ ├── ControllerModuleManagement.cs │ │ ├── ControllerModuleRepository.cs │ │ ├── ControllerNetworkConfiguration.cs │ │ ├── ControllerProtocolTypes.cs │ │ ├── ControllerTransmissionMethods.cs │ │ ├── IController.cs │ │ ├── IControllerModuleDescriptor.cs │ │ └── IControllerModuleInstance.cs │ ├── Editor │ │ ├── EditorModuleDescriptorBase.cs │ │ ├── EditorModuleImplementation.cs │ │ ├── EditorModuleInstanceBase.cs │ │ ├── EditorModuleManagement.cs │ │ ├── EditorModuleRepository.cs │ │ ├── IEditor.cs │ │ ├── IEditorModuleDescriptor.cs │ │ ├── IEditorModuleInstance.cs │ │ ├── IEditorUserInterface.cs │ │ └── ISelection.cs │ ├── Effect │ │ ├── EffectModuleDescriptorBase.cs │ │ ├── EffectModuleImplementation.cs │ │ ├── EffectModuleInstanceBase.cs │ │ ├── EffectModuleManagement.cs │ │ ├── EffectModuleRepository.cs │ │ ├── IEffect.cs │ │ ├── IEffectModuleDescriptor.cs │ │ └── IEffectModuleInstance.cs │ ├── EffectEditor │ │ ├── EffectEditorModuleDescriptorBase.cs │ │ ├── EffectEditorModuleImplementation.cs │ │ ├── EffectEditorModuleInstanceBase.cs │ │ ├── EffectEditorModuleManagement.cs │ │ ├── EffectEditorModuleRepository.cs │ │ ├── IEffectEditor.cs │ │ ├── IEffectEditorControl.cs │ │ ├── IEffectEditorModuleDescriptor.cs │ │ └── IEffectEditorModuleInstance.cs │ ├── GenericModuleManagement.cs │ ├── GenericModuleRepository.cs │ ├── IModuleConsumer.cs │ ├── IModuleDataModel.cs │ ├── IModuleDataRetriever.cs │ ├── IModuleDataSet.cs │ ├── IModuleDescriptor.cs │ ├── IModuleInstance.cs │ ├── IModuleManagement.cs │ ├── IModuleRepository.cs │ ├── Input │ │ ├── IInput.cs │ │ ├── IInputEffectMap.cs │ │ ├── IInputInput.cs │ │ ├── IInputModuleDescriptor.cs │ │ ├── IInputModuleInstance.cs │ │ ├── InputEffectMap.cs │ │ ├── InputInputBase.cs │ │ ├── InputModuleDescriptorBase.cs │ │ ├── InputModuleImplementation.cs │ │ ├── InputModuleInstanceBase.cs │ │ ├── InputModuleManagement.cs │ │ ├── InputModuleRepository.cs │ │ └── InputValueChangedEventArgs.cs │ ├── Media │ │ ├── IMedia.cs │ │ ├── IMediaModuleDescriptor.cs │ │ ├── IMediaModuleInstance.cs │ │ ├── MediaModuleDescriptorBase.cs │ │ ├── MediaModuleImplementation.cs │ │ ├── MediaModuleInstanceBase.cs │ │ ├── MediaModuleManagement.cs │ │ └── MediaModuleRepository.cs │ ├── MediaRenderer │ │ ├── IMediaRenderer.cs │ │ ├── IMediaRendererModuleDescriptor.cs │ │ ├── IMediaRendererModuleInstance.cs │ │ ├── MediaRendererModuleDescriptorBase.cs │ │ ├── MediaRendererModuleImplementation.cs │ │ ├── MediaRendererModuleInstanceBase.cs │ │ ├── MediaRendererModuleManagement.cs │ │ └── MediaRendererModuleRepository.cs │ ├── MixingFilter │ │ ├── ILayerMixingFilter.cs │ │ ├── ILayerMixingFilterInstance.cs │ │ ├── ILayerMixingFilterModuleDescriptor.cs │ │ ├── LayerMixingFilterModuleDescriptorBase.cs │ │ ├── LayerMixingFilterModuleImplementation.cs │ │ ├── LayerMixingFilterModuleInstanceBase.cs │ │ ├── LayerMixingFilterModuleManagement.cs │ │ └── LayerMixingFilterModuleRepository.cs │ ├── ModuleConsumer.cs │ ├── ModuleDataModelBase.cs │ ├── ModuleDataSet.cs │ ├── ModuleDescriptorBase.cs │ ├── ModuleImplementation.cs │ ├── ModuleImplementationMethod.cs │ ├── ModuleInstanceBase.cs │ ├── ModuleInstanceDataRetriever.cs │ ├── ModuleLocalDataSet.cs │ ├── ModuleManagement.cs │ ├── ModuleRepository.cs │ ├── ModuleStaticDataSet.cs │ ├── ModuleTemplate │ │ ├── IModuleTemplate.cs │ │ ├── IModuleTemplateModuleDescriptor.cs │ │ ├── IModuleTemplateModuleInstance.cs │ │ ├── ModuleTemplateModuleDescriptorBase.cs │ │ ├── ModuleTemplateModuleImplementation.cs │ │ ├── ModuleTemplateModuleInstanceBase.cs │ │ ├── ModuleTemplateModuleManagement.cs │ │ └── ModuleTemplateModuleRepository.cs │ ├── ModuleTypeDataRetriever.cs │ ├── OutputFilter │ │ ├── IOutputFilter.cs │ │ ├── IOutputFilterModuleDescriptor.cs │ │ ├── IOutputFilterModuleInstance.cs │ │ ├── OutputFilterModuleDescriptorBase.cs │ │ ├── OutputFilterModuleImplementation.cs │ │ ├── OutputFilterModuleInstanceBase.cs │ │ ├── OutputFilterModuleManagement.cs │ │ └── OutputFilterModuleRepository.cs │ ├── Preview │ │ ├── FormPreviewModuleInstanceBase.cs │ │ ├── IPreview.cs │ │ ├── IPreviewModuleDescriptor.cs │ │ ├── IPreviewModuleInstance.cs │ │ ├── IThreadBehavior.cs │ │ ├── MultiThreadBehavior.cs │ │ ├── PreviewElementIntentStates.cs │ │ ├── PreviewModuleDescriptorBase.cs │ │ ├── PreviewModuleImplementation.cs │ │ ├── PreviewModuleInstanceBase.cs │ │ ├── PreviewModuleManagement.cs │ │ ├── PreviewModuleRepository.cs │ │ └── SingleThreadBehavior.cs │ ├── Property │ │ ├── IProperty.cs │ │ ├── IPropertyModuleDescriptor.cs │ │ ├── IPropertyModuleInstance.cs │ │ ├── PropertyModuleDescriptorBase.cs │ │ ├── PropertyModuleImplementation.cs │ │ ├── PropertyModuleInstanceBase.cs │ │ ├── PropertyModuleManagement.cs │ │ └── PropertyModuleRepository.cs │ ├── RuntimeBehavior │ │ ├── IRuntimeBehavior.cs │ │ ├── IRuntimeBehaviorModuleDescriptor.cs │ │ ├── IRuntimeBehaviorModuleInstance.cs │ │ ├── RuntimeBehaviorModuleDescriptorBase.cs │ │ ├── RuntimeBehaviorModuleImplementation.cs │ │ ├── RuntimeBehaviorModuleInstanceBase.cs │ │ ├── RuntimeBehaviorModuleManagement.cs │ │ └── RuntimeBehaviorModuleRepository.cs │ ├── SequenceFilter │ │ ├── ISequenceFilter.cs │ │ ├── ISequenceFilterModuleDescriptor.cs │ │ ├── ISequenceFilterModuleInstance.cs │ │ ├── SequenceFilterModuleDescriptorBase.cs │ │ ├── SequenceFilterModuleImplementation.cs │ │ ├── SequenceFilterModuleInstanceBase.cs │ │ ├── SequenceFilterModuleManagement.cs │ │ └── SequenceFilterModuleRepository.cs │ ├── SequenceType │ │ ├── ISequenceType.cs │ │ ├── ISequenceTypeModuleDescriptor.cs │ │ ├── ISequenceTypeModuleInstance.cs │ │ ├── SequenceTypeDataModelBase.cs │ │ ├── SequenceTypeModuleDescriptorBase.cs │ │ ├── SequenceTypeModuleImplementation.cs │ │ ├── SequenceTypeModuleInstanceBase.cs │ │ ├── SequenceTypeModuleManagement.cs │ │ ├── SequenceTypeModuleRepository.cs │ │ └── Surrogate │ │ │ ├── ChannelNodeReferenceSurrogate.cs │ │ │ ├── EffectNodeSurrogate.cs │ │ │ ├── FilterNodeSurrogate.cs │ │ │ ├── LayerMixingFilterSurrogate.cs │ │ │ ├── MediaSurrogate.cs │ │ │ ├── NodeSurrogate.cs │ │ │ └── SelectedTimingProviderSurrogate.cs │ ├── Service │ │ ├── IService.cs │ │ ├── IServiceModuleDescriptor.cs │ │ ├── IServiceModuleInstance.cs │ │ ├── ServiceModuleDescriptorBase.cs │ │ ├── ServiceModuleImplementation.cs │ │ ├── ServiceModuleInstanceBase.cs │ │ ├── ServiceModuleManagement.cs │ │ └── ServiceModuleRepository.cs │ ├── SingletonRepository.cs │ ├── SmartController │ │ ├── ISmartController.cs │ │ ├── ISmartControllerModuleDescriptor.cs │ │ ├── ISmartControllerModuleInstance.cs │ │ ├── SmartControllerModuleDescriptorBase.cs │ │ ├── SmartControllerModuleImplementation.cs │ │ ├── SmartControllerModuleInstanceBase.cs │ │ ├── SmartControllerModuleManagement.cs │ │ └── SmartControllerModuleRepository.cs │ ├── Timing │ │ ├── ITiming.cs │ │ ├── ITimingModuleDescriptor.cs │ │ ├── ITimingModuleInstance.cs │ │ ├── TimingModuleDescriptorBase.cs │ │ ├── TimingModuleImplementation.cs │ │ ├── TimingModuleInstanceBase.cs │ │ ├── TimingModuleManagement.cs │ │ └── TimingModuleRepository.cs │ └── Trigger │ │ ├── AnalogInputTriggerCondition.cs │ │ ├── AnalogTriggerInput.cs │ │ ├── DigitalInputTriggerCondition.cs │ │ ├── DigitalTriggerInput.cs │ │ ├── ITrigger.cs │ │ ├── ITriggerInput.cs │ │ ├── ITriggerModuleDescriptor.cs │ │ ├── ITriggerModuleInstance.cs │ │ ├── TriggerInput.cs │ │ ├── TriggerInputType.cs │ │ ├── TriggerModuleDescriptorBase.cs │ │ ├── TriggerModuleImplementation.cs │ │ ├── TriggerModuleInstanceBase.cs │ │ ├── TriggerModuleManagement.cs │ │ ├── TriggerModuleRepository.cs │ │ └── TriggerSetEventArgs.cs ├── Rule │ ├── IElementSetupHelper.cs │ ├── IElementTemplate.cs │ ├── INamingGenerator.cs │ ├── INamingTemplate.cs │ ├── IPatchingRule.cs │ ├── Name │ │ ├── LetterCounter.cs │ │ ├── LetterIterator.cs │ │ ├── NumberedNamingTemplate.cs │ │ ├── NumericCounter.cs │ │ └── WordIterator.cs │ └── Patch │ │ └── ElementsToSingleController.cs ├── Services │ ├── ApplicationServices.cs │ ├── EditorService.cs │ ├── EffectService.cs │ ├── ElementNodeService.cs │ ├── FileService.cs │ ├── FixtureSpecificationService.cs │ ├── IFileService.cs │ ├── LayerMixingFilterService.cs │ ├── MediaService.cs │ ├── ModuleTemplateService.cs │ ├── OutputFilterService.cs │ ├── SequenceFilterService.cs │ ├── SequenceService.cs │ ├── SequenceTypeService.cs │ └── TimingService.cs ├── Sys │ ├── AppCommand.cs │ ├── Attribute │ │ ├── ContextAttribute.cs │ │ ├── DataPathAttribute.cs │ │ ├── ExecutorAttribute.cs │ │ ├── InterpolatorAttribute.cs │ │ ├── ModuleDataPathAttribute.cs │ │ ├── TypeOfModuleAttribute.cs │ │ └── ValueAttribute.cs │ ├── CommandOutputDataFlowAdapterFactory.cs │ ├── ContextEventArgs.cs │ ├── DataNodeCollection.cs │ ├── DataStream.cs │ ├── DataStreams.cs │ ├── DefaultValueArrayMember.cs │ ├── DelegateFactory.cs │ ├── Dispatch │ │ ├── CommandDispatch.cs │ │ ├── DataFlowDataDispatch.cs │ │ ├── IAnyCombinatorHandler.cs │ │ ├── IAnyCommandHandler.cs │ │ ├── IAnyDataFlowDataHandler.cs │ │ ├── IAnyEvaluatorHandler.cs │ │ ├── IAnyIntentHandler.cs │ │ ├── IAnyIntentSegmentHandler.cs │ │ ├── IAnyIntentStateHandler.cs │ │ ├── IntentDispatch.cs │ │ ├── IntentSegmentDispatch.cs │ │ └── IntentStateDispatch.cs │ ├── Dispatchable.cs │ ├── EffectIntents.cs │ ├── EffectNode.cs │ ├── Element.cs │ ├── ElementContextSource.cs │ ├── ElementDataFlowAdapterFactory.cs │ ├── ElementIntentStates.cs │ ├── ElementIntents.cs │ ├── ElementNode.cs │ ├── ElementNodeProxy.cs │ ├── ElementNodeTemplate.cs │ ├── ElementProxy.cs │ ├── ElementStateSource.cs │ ├── ElementStateSourceCollection.cs │ ├── Enumerator │ │ ├── ConcurrentQueueLiveEnumerator.cs │ │ ├── ExecutorEffectEnumerator.cs │ │ ├── LiveEnumerator.cs │ │ ├── LiveListEnumerator.cs │ │ ├── MultiStateTimedEnumerator.cs │ │ └── SingleTimedEnumerator.cs │ ├── Execution.cs │ ├── ExecutorMessageEventArgs.cs │ ├── Extensions.cs │ ├── FilePackage.cs │ ├── FilterChildren.cs │ ├── GroupNode.cs │ ├── Helper.cs │ ├── IApplication.cs │ ├── ICombinator.cs │ ├── IDataModel.cs │ ├── IDataNode.cs │ ├── IDataPolicy.cs │ ├── IDataPolicyFactory.cs │ ├── IElementNode.cs │ ├── IElementStateSource.cs │ ├── IEvaluator.cs │ ├── IGroupNode.cs │ ├── IHardware.cs │ ├── IHardwareModule.cs │ ├── IHasLayers.cs │ ├── IHasMarks.cs │ ├── IHasMedia.cs │ ├── IHasOutputs.cs │ ├── IHasSequenceFilterNodes.cs │ ├── IHasSetup.cs │ ├── IIntent.cs │ ├── IIntentSegment.cs │ ├── IIntentState.cs │ ├── IIntentStates.cs │ ├── IOutputStateSource.cs │ ├── IPackageFileContent.cs │ ├── IProgram.cs │ ├── IRuns.cs │ ├── ISegmentCreator.cs │ ├── ISequence.cs │ ├── ISequenceTypeDataModel.cs │ ├── IStateCombinator.cs │ ├── IStateSource.cs │ ├── IStateSourceCollection.cs │ ├── IStateSourceCollectionAdapter.cs │ ├── ITypeAffector.cs │ ├── InsertDataStack.cs │ ├── Instrumentation │ │ ├── BufferSizeInSecondsValue.cs │ │ ├── CacheHitPercentValue.cs │ │ ├── CommandsExpiredCountValue.cs │ │ ├── CommandsExpiredPercentValue.cs │ │ ├── CommandsQualifiedCountValue.cs │ │ ├── CommandsQualifiedPercentValue.cs │ │ ├── ContextUpdateTimeValue.cs │ │ ├── EffectsPerSecondValue.cs │ │ ├── ElementCommandsPerSecondValue.cs │ │ ├── ElementUpdateTimeValue.cs │ │ ├── Instrumentation.cs │ │ ├── OutputDeviceRefreshRateValue.cs │ │ ├── OutputDeviceSleepTimeActualValue.cs │ │ ├── OutputDeviceSleepTimeRequestedValue.cs │ │ ├── OutputDeviceUpdateTimeValue.cs │ │ ├── TotalCommandsPulledValue.cs │ │ ├── TotalEffectsValue.cs │ │ └── TotalElementCommandsValue.cs │ ├── IntentChangeCollection.cs │ ├── IntentNode.cs │ ├── IntentNodeCollection.cs │ ├── IntentOutputDataFlowAdapterFactory.cs │ ├── IntentSegment.cs │ ├── IntentSegmentNode.cs │ ├── IntentStateList.cs │ ├── LatchedAppCommand.cs │ ├── LatchedEventArgs.cs │ ├── LayerMixing │ │ ├── DefaultLayer.cs │ │ ├── ILayer.cs │ │ ├── Layer.cs │ │ ├── SequenceLayers.cs │ │ └── StandardLayer.cs │ ├── LinearInterpolatedIntentSegmentCollection.cs │ ├── LinearInterpolatedSegmentCreator.cs │ ├── Managers │ │ ├── ContextManager.cs │ │ ├── ControllerFacade.cs │ │ ├── DataFlowManager.cs │ │ ├── ElementManager.cs │ │ ├── ExecutionState.cs │ │ ├── FilterManager.cs │ │ ├── HardwareUpdateThread.cs │ │ ├── IControllerFacadeParticipant.cs │ │ ├── IControllerLinkManager.cs │ │ ├── IControllerManager.cs │ │ ├── IOutputDeviceCollection.cs │ │ ├── IOutputDeviceExecution.cs │ │ ├── IOutputDeviceFacadeParticipant.cs │ │ ├── IOutputDeviceManager.cs │ │ ├── NodeManager.cs │ │ ├── OrderedDeviceDictionary.cs │ │ ├── OutputControllerManager.cs │ │ ├── OutputDeviceCollection.cs │ │ ├── OutputDeviceCollectionExecutionMediator.cs │ │ ├── OutputDeviceExecution.cs │ │ ├── OutputDeviceFacade.cs │ │ ├── PreviewManager.cs │ │ └── SmartOutputControllerManager.cs │ ├── MediaCollection.cs │ ├── ModuleInstanceSpecification.cs │ ├── ModuleStore.cs │ ├── Modules.cs │ ├── Output │ │ ├── BasicOutputModuleExecutionControl.cs │ │ ├── CommandOutput.cs │ │ ├── IControllerDevice.cs │ │ ├── IOutputDataPolicyProvider.cs │ │ ├── IOutputDevice.cs │ │ ├── IOutputDeviceUpdateSignaler.cs │ │ ├── IOutputMediator.cs │ │ ├── IOutputModule.cs │ │ ├── IOutputModuleConsumer.cs │ │ ├── IOutputModuleDescriptor.cs │ │ ├── IOutputter.cs │ │ ├── IPreviewDevice.cs │ │ ├── ISmartControllerDevice.cs │ │ ├── IUpdatableOutputCount.cs │ │ ├── IntentOutput.cs │ │ ├── IntentOutputStates.cs │ │ ├── IntervalUpdateSignaler.cs │ │ ├── Output.cs │ │ ├── OutputCollection.cs │ │ ├── OutputCollectionEventArgs.cs │ │ ├── OutputController.cs │ │ ├── OutputDataPolicyCache.cs │ │ ├── OutputMediator.cs │ │ ├── OutputModuleConsumer.cs │ │ ├── OutputModuleInstanceBase.cs │ │ ├── OutputPreview.cs │ │ └── SmartOutputController.cs │ ├── OutputFilterCollection.cs │ ├── OutputIntentStateList.cs │ ├── OutputStateList.cs │ ├── OutputStateListAggregator.cs │ ├── ParameterSignature.cs │ ├── ParameterSpecification.cs │ ├── Paths.cs │ ├── Program.cs │ ├── ProgramContextEventArgs.cs │ ├── ProgramEventArgs.cs │ ├── PropertyManager.cs │ ├── ProxyElementNode.cs │ ├── SequenceEventArgs.cs │ ├── SequenceFilterLookup.cs │ ├── SequenceFilterNode.cs │ ├── SequenceStartedEventArgs.cs │ ├── State │ │ └── Execution │ │ │ ├── Behavior │ │ │ ├── StandardClosedBehavior.cs │ │ │ ├── StandardClosingBehavior.cs │ │ │ ├── StandardOpenBehavior.cs │ │ │ └── StandardOpeningBehavior.cs │ │ │ ├── ClosedState.cs │ │ │ ├── ClosingState.cs │ │ │ ├── ExecutionStateEngine.cs │ │ │ ├── OpenState.cs │ │ │ ├── OpeningState.cs │ │ │ ├── State.cs │ │ │ ├── TestOpenState.cs │ │ │ └── TestOpeningState.cs │ ├── SystemClock.cs │ ├── SystemConfig.cs │ ├── SystemContext.cs │ ├── TimeNode.cs │ ├── UIThread.cs │ ├── VixenSystem.cs │ ├── WindowsMultimedia.cs │ └── XmlHelper.cs ├── TypeConverters │ ├── BooleanStringTypeConverter.cs │ ├── EnumDescriptionTypeConverter.cs │ ├── IMarkCollectionNameConverter.cs │ └── TargetElementDepthConverter.cs ├── Utility │ ├── HighResolutionTimer.cs │ ├── NamingUtilities.cs │ └── PathUtility.cs └── Vixen.Core.csproj ├── Vixen.DeployBundle ├── ASPNetCorePackage.wxs ├── NetCorePackage.wxs ├── Package.en-us.wxl ├── SetupMsiPackage.wxs ├── VCRedistPackage.wxs ├── Vixen.DeployBundle.wixproj ├── VixenBundles.wxs └── VixenTheme.xml ├── Vixen.Installer ├── EnvironmentInclude.wxi ├── ExcludeVixenExeFile.xslt ├── Package.en-us.wxl ├── Vixen.Installer.wixproj ├── VixenFolders.wxs └── VixenReleasePackage.wxs └── Vixen.Modules ├── Analysis ├── BeatsAndBars │ ├── BeatsAndBars.cs │ ├── BeatsAndBars.csproj │ ├── BeatsAndBarsDescriptor.cs │ ├── BeatsAndBarsProgress.Designer.cs │ ├── BeatsAndBarsProgress.cs │ ├── BeatsAndBarsProgress.resx │ ├── BeatsAndBarsSettings.Designer.cs │ ├── BeatsAndBarsSettings.cs │ ├── BeatsAndBarsSettings.resx │ ├── MusicStaff.Designer.cs │ ├── MusicStaff.cs │ ├── MusicStaff.resx │ ├── PreviewWaveform.Designer.cs │ ├── PreviewWaveform.cs │ ├── PreviewWaveform.resx │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ └── Resources │ │ ├── 32ndNote.png │ │ ├── HeadingBackgroundImage.jpg │ │ ├── HeadingBackgroundImageHover.jpg │ │ ├── eigthnote.png │ │ ├── fullstaff.png │ │ ├── halfnote.png │ │ ├── quarternote.png │ │ └── sixteenthnote.png ├── Directory.Build.props └── QMLibrary │ ├── QMBarBeatTrack.cpp │ ├── QMBarBeatTrack.h │ ├── QMFiles │ ├── BarBeatTrack.cpp │ ├── BarBeatTrack.h │ ├── alloca.h │ ├── base │ │ ├── Pitch.cpp │ │ ├── Pitch.h │ │ └── Window.h │ ├── dsp │ │ ├── chromagram │ │ │ ├── CQprecalc.cpp │ │ │ ├── Chromagram.cpp │ │ │ ├── Chromagram.h │ │ │ ├── ConstantQ.cpp │ │ │ └── ConstantQ.h │ │ ├── keydetection │ │ │ ├── GetKeyMode.cpp │ │ │ └── GetKeyMode.h │ │ ├── mfcc │ │ │ ├── MFCC.cpp │ │ │ └── MFCC.h │ │ ├── onsets │ │ │ ├── DetectionFunction.cpp │ │ │ ├── DetectionFunction.h │ │ │ ├── PeakPicking.cpp │ │ │ └── PeakPicking.h │ │ ├── phasevocoder │ │ │ ├── PhaseVocoder.cpp │ │ │ └── PhaseVocoder.h │ │ ├── rateconversion │ │ │ ├── Decimator.cpp │ │ │ └── Decimator.h │ │ ├── rhythm │ │ │ ├── BeatSpectrum.cpp │ │ │ └── BeatSpectrum.h │ │ ├── segmentation │ │ │ ├── ClusterMeltSegmenter.cpp │ │ │ ├── ClusterMeltSegmenter.h │ │ │ ├── Segmenter.cpp │ │ │ ├── Segmenter.h │ │ │ ├── cluster_melt.c │ │ │ ├── cluster_melt.h │ │ │ ├── cluster_segmenter.c │ │ │ ├── cluster_segmenter.h │ │ │ └── segment.h │ │ ├── signalconditioning │ │ │ ├── DFProcess.cpp │ │ │ ├── DFProcess.h │ │ │ ├── FiltFilt.cpp │ │ │ ├── FiltFilt.h │ │ │ ├── Filter.cpp │ │ │ ├── Filter.h │ │ │ ├── Framer.cpp │ │ │ └── Framer.h │ │ ├── tempotracking │ │ │ ├── DownBeat.cpp │ │ │ ├── DownBeat.h │ │ │ ├── TempoTrack.cpp │ │ │ ├── TempoTrack.h │ │ │ ├── TempoTrackV2.cpp │ │ │ └── TempoTrackV2.h │ │ ├── tonal │ │ │ ├── ChangeDetectionFunction.cpp │ │ │ ├── ChangeDetectionFunction.h │ │ │ ├── TCSgram.cpp │ │ │ ├── TCSgram.h │ │ │ ├── TonalEstimator.cpp │ │ │ └── TonalEstimator.h │ │ ├── transforms │ │ │ ├── FFT.cpp │ │ │ └── FFT.h │ │ └── wavelet │ │ │ ├── Wavelet.cpp │ │ │ └── Wavelet.h │ ├── maths │ │ ├── Correlation.cpp │ │ ├── Correlation.h │ │ ├── CosineDistance.cpp │ │ ├── CosineDistance.h │ │ ├── KLDivergence.cpp │ │ ├── KLDivergence.h │ │ ├── MathAliases.h │ │ ├── MathUtilities.cpp │ │ ├── MathUtilities.h │ │ ├── Polyfit.h │ │ ├── nan-inf.h │ │ └── pca │ │ │ ├── data.txt │ │ │ ├── pca.c │ │ │ └── pca.h │ └── vamp-plugin-sdk-2.5 │ │ ├── .hg_archival.txt │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── Makefile.in │ │ ├── README │ │ ├── README.compat │ │ ├── configure │ │ ├── configure.ac │ │ ├── examples │ │ ├── AmplitudeFollower.cpp │ │ ├── AmplitudeFollower.h │ │ ├── FixedTempoEstimator.cpp │ │ ├── FixedTempoEstimator.h │ │ ├── PercussionOnsetDetector.cpp │ │ ├── PercussionOnsetDetector.h │ │ ├── PowerSpectrum.cpp │ │ ├── PowerSpectrum.h │ │ ├── SpectralCentroid.cpp │ │ ├── SpectralCentroid.h │ │ ├── ZeroCrossing.cpp │ │ ├── ZeroCrossing.h │ │ ├── plugins.cpp │ │ ├── vamp-example-plugins.cat │ │ └── vamp-example-plugins.n3 │ │ ├── host │ │ ├── system.h │ │ └── vamp-simple-host.cpp │ │ ├── pkgconfig │ │ ├── vamp-hostsdk.pc.in │ │ ├── vamp-sdk.pc.in │ │ └── vamp.pc.in │ │ ├── rdf │ │ ├── README │ │ ├── ToDo │ │ ├── doc │ │ │ ├── glance.htm │ │ │ ├── vamp.html │ │ │ └── vamp.pl │ │ ├── generator │ │ │ └── vamp-rdf-template-generator.cpp │ │ ├── vamp.n3 │ │ └── vamp.rdf │ │ ├── skeleton │ │ ├── Makefile.skeleton │ │ ├── MyPlugin.cpp │ │ ├── MyPlugin.h │ │ ├── plugins.cpp │ │ ├── vamp-plugin.list │ │ └── vamp-plugin.map │ │ ├── src │ │ ├── doc-overview │ │ ├── vamp-hostsdk │ │ │ ├── PluginBufferingAdapter.cpp │ │ │ ├── PluginChannelAdapter.cpp │ │ │ ├── PluginHostAdapter.cpp │ │ │ ├── PluginInputDomainAdapter.cpp │ │ │ ├── PluginLoader.cpp │ │ │ ├── PluginSummarisingAdapter.cpp │ │ │ ├── PluginWrapper.cpp │ │ │ ├── RealTime.cpp │ │ │ ├── Window.h │ │ │ └── acsymbols.c │ │ └── vamp-sdk │ │ │ ├── FFT.cpp │ │ │ ├── FFTimpl.cpp │ │ │ ├── PluginAdapter.cpp │ │ │ ├── RealTime.cpp │ │ │ └── acsymbols.c │ │ ├── vamp-hostsdk │ │ ├── Plugin.h │ │ ├── PluginBase.h │ │ ├── PluginBufferingAdapter.h │ │ ├── PluginChannelAdapter.h │ │ ├── PluginHostAdapter.h │ │ ├── PluginInputDomainAdapter.h │ │ ├── PluginLoader.h │ │ ├── PluginSummarisingAdapter.h │ │ ├── PluginWrapper.h │ │ ├── RealTime.h │ │ ├── hostguard.h │ │ └── vamp-hostsdk.h │ │ ├── vamp-sdk │ │ ├── FFT.h │ │ ├── Plugin.h │ │ ├── PluginAdapter.h │ │ ├── PluginBase.h │ │ ├── RealTime.h │ │ ├── plugguard.h │ │ └── vamp-sdk.h │ │ └── vamp │ │ └── vamp.h │ ├── QMLibrary.vcxproj │ ├── QMLibrary.vcxproj.filters │ ├── VampOutputCtrl.cpp │ ├── VampOutputCtrl.h │ ├── VampOutputCtrl.resx │ ├── VampParamCtrl.cpp │ ├── VampParamCtrl.h │ ├── VampParamCtrl.resx │ ├── WrapperFiles │ ├── ManagedFeature.h │ ├── ManagedOutput.h │ ├── ManagedParameter.h │ ├── ManagedPlugin.cpp │ ├── ManagedPlugin.h │ ├── ManagedRealtime.cpp │ └── ManagedRealtime.h │ ├── qm-vamp-plugins-1.7 │ ├── .hg_archival.txt │ ├── .hgtags │ ├── COPYING │ ├── INSTALL_linux.txt │ ├── INSTALL_osx.txt │ ├── INSTALL_win32.txt │ ├── README.txt │ ├── build │ │ ├── general │ │ │ └── Makefile.inc │ │ ├── linux │ │ │ ├── Makefile.linux │ │ │ └── Makefile.linux64 │ │ └── osx │ │ │ ├── Makefile.osx │ │ │ └── qm-vamp-plugins.pro │ ├── g2cstubs.c │ ├── libmain.cpp │ ├── plugins │ │ ├── AdaptiveSpectrogram.cpp │ │ ├── AdaptiveSpectrogram.h │ │ ├── BarBeatTrack.cpp │ │ ├── BarBeatTrack.h │ │ ├── BeatTrack.cpp │ │ ├── BeatTrack.h │ │ ├── ChromagramPlugin.cpp │ │ ├── ChromagramPlugin.h │ │ ├── ConstantQSpectrogram.cpp │ │ ├── ConstantQSpectrogram.h │ │ ├── DWT.cpp │ │ ├── DWT.h │ │ ├── KeyDetect.cpp │ │ ├── KeyDetect.h │ │ ├── MFCCPlugin.cpp │ │ ├── MFCCPlugin.h │ │ ├── OnsetDetect.cpp │ │ ├── OnsetDetect.h │ │ ├── SegmenterPlugin.cpp │ │ ├── SegmenterPlugin.h │ │ ├── SimilarityPlugin.cpp │ │ ├── SimilarityPlugin.h │ │ ├── TonalChangeDetect.cpp │ │ ├── TonalChangeDetect.h │ │ ├── Transcription.cpp │ │ └── Transcription.h │ ├── qm-vamp-plugins.cat │ ├── qm-vamp-plugins.n3 │ ├── qm-vamp-plugins.pro │ ├── valgrinder.sh │ ├── vamp-plugin.list │ └── vamp-plugin.map │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── App ├── ColorGradients │ ├── ColorGradient.cs │ ├── ColorGradientEditor.Designer.cs │ ├── ColorGradientEditor.cs │ ├── ColorGradientEditor.resx │ ├── ColorGradientLibrary.cs │ ├── ColorGradientLibraryDescriptor.cs │ ├── ColorGradientLibrarySelector.Designer.cs │ ├── ColorGradientLibrarySelector.cs │ ├── ColorGradientLibrarySelector.resx │ ├── ColorGradientLibraryStaticData.cs │ ├── ColorGradients.csproj │ ├── GradientEdit.cs │ ├── GradientEditPanel.cs │ ├── GradientEditPanel.designer.cs │ ├── GradientEditPanel.resx │ ├── GradientLevelPair.cs │ └── GradientTypeConverter.cs ├── Curves │ ├── Curve.cs │ ├── CurveEditor.Designer.cs │ ├── CurveEditor.cs │ ├── CurveEditor.resx │ ├── CurveLibrary.cs │ ├── CurveLibraryDescriptor.cs │ ├── CurveLibrarySelector.Designer.cs │ ├── CurveLibrarySelector.cs │ ├── CurveLibrarySelector.resx │ ├── CurveLibraryStaticData.cs │ ├── CurveType.cs │ ├── CurveTypeConverter.cs │ ├── Curves.csproj │ ├── FunctionGenerator.Designer.cs │ ├── FunctionGenerator.cs │ ├── FunctionGenerator.resx │ └── ZedGraph │ │ ├── ArrowObj.cs │ │ ├── Axis.cs │ │ ├── AxisLabel.cs │ │ ├── Bar.cs │ │ ├── BarItem.cs │ │ ├── BarSettings.cs │ │ ├── BasicArrayPointList.cs │ │ ├── Border.cs │ │ ├── BoxObj.cs │ │ ├── Chart.cs │ │ ├── CollectionPlus.cs │ │ ├── ColorSymbolRotator.cs │ │ ├── CurveItem.cs │ │ ├── CurveList.cs │ │ ├── DataSourcePointList.cs │ │ ├── DateAsOrdinalScale.cs │ │ ├── DateScale.cs │ │ ├── EllipseObj.cs │ │ ├── ErrorBar.cs │ │ ├── ErrorBarItem.cs │ │ ├── ExponentScale.cs │ │ ├── Fill.cs │ │ ├── FilteredPointList.cs │ │ ├── FontSpec.cs │ │ ├── GapLabel.cs │ │ ├── GasGaugeNeedle.cs │ │ ├── GasGaugeRegion.cs │ │ ├── GraphObj.cs │ │ ├── GraphObjList.cs │ │ ├── GraphPane.cs │ │ ├── HSBColor.cs │ │ ├── HiLowBar.cs │ │ ├── HiLowBarItem.cs │ │ ├── IPointList.cs │ │ ├── IPointListEdit.cs │ │ ├── ImageObj.cs │ │ ├── JapaneseCandleStick.cs │ │ ├── JapaneseCandleStickItem.cs │ │ ├── Label.cs │ │ ├── Legend.cs │ │ ├── License-LGPL.txt │ │ ├── Line.cs │ │ ├── LineBase.cs │ │ ├── LineItem.cs │ │ ├── LineObj.cs │ │ ├── LinearAsOrdinalScale.cs │ │ ├── LinearScale.cs │ │ ├── Link.cs │ │ ├── Location.cs │ │ ├── LogScale.cs │ │ ├── MajorGrid.cs │ │ ├── MajorTic.cs │ │ ├── Margin.cs │ │ ├── MasterPane.cs │ │ ├── MinorGrid.cs │ │ ├── MinorTic.cs │ │ ├── NoDupePointList.cs │ │ ├── OHLCBar.cs │ │ ├── OHLCBarItem.cs │ │ ├── OrdinalScale.cs │ │ ├── PaneBase.cs │ │ ├── PaneLayoutMgr.cs │ │ ├── PaneList.cs │ │ ├── PieItem.cs │ │ ├── PointD.cs │ │ ├── PointPair.cs │ │ ├── PointPair4.cs │ │ ├── PointPairBase.cs │ │ ├── PointPairCV.cs │ │ ├── PointPairList.cs │ │ ├── PolyObj.cs │ │ ├── RadarPointList.cs │ │ ├── Revision_History.txt │ │ ├── RollingPointPairList.cs │ │ ├── SampleMultiPointList.cs │ │ ├── SamplePointList.cs │ │ ├── Scale.cs │ │ ├── ScaleState.cs │ │ ├── ScaleStateList.cs │ │ ├── ScrollRange.cs │ │ ├── ScrollRangeList.cs │ │ ├── Selection.cs │ │ ├── StickItem.cs │ │ ├── StockPointList.cs │ │ ├── StockPt.cs │ │ ├── Symbol.cs │ │ ├── TextObj.cs │ │ ├── TextScale.cs │ │ ├── Types.cs │ │ ├── ValueHandler.cs │ │ ├── X2Axis.cs │ │ ├── XAxis.cs │ │ ├── XDate.cs │ │ ├── Y2Axis.cs │ │ ├── Y2AxisList.cs │ │ ├── YAxis.cs │ │ ├── YAxisList.cs │ │ ├── ZedGraphControl.ContextMenu.cs │ │ ├── ZedGraphControl.Designer.cs │ │ ├── ZedGraphControl.Events.cs │ │ ├── ZedGraphControl.Printing.cs │ │ ├── ZedGraphControl.Properties.cs │ │ ├── ZedGraphControl.ScrollBars.cs │ │ ├── ZedGraphControl.cs │ │ ├── ZedGraphException.cs │ │ ├── ZedGraphLocale.resx │ │ ├── ZoomState.cs │ │ └── ZoomStateStack.cs ├── CustomPropEditor │ ├── Adorners │ │ ├── ResizeAdorner.cs │ │ └── RubberbandAdorner.cs │ ├── Behaviors │ │ └── MultiSelectionBehavior.cs │ ├── Controls │ │ ├── IGroupable.cs │ │ ├── PropDesigner.cs │ │ ├── SliderMenuItem.xaml │ │ └── SliderMenuItem.xaml.cs │ ├── Converters │ │ ├── BoolToGridRowHeightConverter.cs │ │ ├── BrushToColorConverter.cs │ │ ├── BulbTypeConverter.cs │ │ ├── LightNodeToPathConverter.cs │ │ ├── PointMappingConverter.cs │ │ └── RootNodeToCollectionMapping.cs │ ├── CustomPropEditor.csproj │ ├── CustomPropEditorData.cs │ ├── CustomPropEditorDescriptor.cs │ ├── CustomPropEditorModule.cs │ ├── Extensions │ │ └── Extensions.cs │ ├── Images │ │ ├── BackgroundImage.png │ │ ├── buttonAlignBottom.png │ │ ├── buttonAlignHorizMid.png │ │ ├── buttonAlignLeft.png │ │ ├── buttonAlignRight.png │ │ ├── buttonAlignTop.png │ │ ├── buttonAlignVertMid.png │ │ ├── buttonBulbBigger.png │ │ ├── buttonBulbEqual.png │ │ ├── buttonBulbSmaller.png │ │ ├── buttonDistributeHorizontal.png │ │ ├── buttonDistributeVertical.png │ │ ├── buttonDrawPixel.png │ │ ├── buttonFlipHorizontal.png │ │ ├── buttonFlipVertical.png │ │ ├── buttonSelect.png │ │ ├── copy.png │ │ ├── cut.png │ │ └── paste.png │ ├── Import │ │ ├── IModelImport.cs │ │ └── XLights │ │ │ ├── CustomModel.cs │ │ │ ├── Faces │ │ │ ├── FaceInfo.cs │ │ │ └── FaceItem.cs │ │ │ ├── ModelNode.cs │ │ │ ├── ModelType.cs │ │ │ ├── Ranges │ │ │ ├── NodeRange.cs │ │ │ ├── Range.cs │ │ │ └── RangeGroup.cs │ │ │ ├── StateInfo.cs │ │ │ ├── StateItem.cs │ │ │ ├── SubModel.cs │ │ │ ├── XModelImport.cs │ │ │ ├── XModelInventoryImporter.cs │ │ │ └── XModelInventoryMapper.cs │ ├── Model │ │ ├── ColorMode.cs │ │ ├── Configuration.cs │ │ ├── ElementModel.cs │ │ ├── ElementType.cs │ │ ├── ExternalVendorInventory │ │ │ ├── Category.cs │ │ │ ├── Model.cs │ │ │ ├── Vendor.cs │ │ │ ├── VendorLink.cs │ │ │ ├── Wiring.cs │ │ │ └── XModelInventory.cs │ │ ├── FaceComponent.cs │ │ ├── FaceDefinition.cs │ │ ├── InformationMetadata.cs │ │ ├── InternalVendorInventory │ │ │ ├── Category.cs │ │ │ ├── ModelInventory.cs │ │ │ ├── ModelLink.cs │ │ │ ├── ModelType.cs │ │ │ ├── Product.cs │ │ │ ├── Vendor.cs │ │ │ └── WebLink.cs │ │ ├── Light.cs │ │ ├── PhysicalMetadata.cs │ │ ├── Prop.cs │ │ ├── StateDefinition.cs │ │ └── VendorMetadata.cs │ ├── Services │ │ ├── ConfigurationService.cs │ │ ├── ElementModelLookUpService.cs │ │ ├── PropModelPersistenceService.cs │ │ └── PropModelServices.cs │ ├── Themes │ │ └── Theme.xaml │ ├── ViewModels │ │ ├── ConfigurationWindowViewModel.cs │ │ ├── DrawingPanelViewModel.cs │ │ ├── ElementModelViewModel.cs │ │ ├── ElementOrderViewModel.cs │ │ ├── ElementTreeViewModel.cs │ │ ├── ElementViewModelCollection.cs │ │ ├── IExpandable.cs │ │ ├── ISelectable.cs │ │ ├── ISelectableExpander.cs │ │ ├── LightViewModel.cs │ │ ├── LightViewModelCollection.cs │ │ ├── PhysicalMetadataViewModel.cs │ │ ├── PropEditorViewModel.cs │ │ ├── VendorInventoryWindowViewModel.cs │ │ └── VendorMetadataViewModel.cs │ └── Views │ │ ├── ConfigurationWindow.xaml │ │ ├── ConfigurationWindow.xaml.cs │ │ ├── CustomPropEditorWindow.xaml │ │ ├── CustomPropEditorWindow.xaml.cs │ │ ├── ElementTree.xaml │ │ ├── ElementTree.xaml.cs │ │ ├── ModelInventoryTree.xaml │ │ ├── ModelInventoryTree.xaml.cs │ │ ├── PhysicalMetadataView.xaml │ │ ├── PhysicalMetadataView.xaml.cs │ │ ├── VendorInventoryWindow.xaml │ │ ├── VendorInventoryWindow.xaml.cs │ │ ├── VendorMetadataView.xaml │ │ └── VendorMetadataView.xaml.cs ├── Directory.Build.props ├── ExportWizard │ ├── BulkExportConfigStage.Designer.cs │ ├── BulkExportConfigStage.cs │ ├── BulkExportConfigStage.resx │ ├── BulkExportControllersStage.Designer.cs │ ├── BulkExportControllersStage.cs │ ├── BulkExportControllersStage.resx │ ├── BulkExportCreateOrSelectStage.Designer.cs │ ├── BulkExportCreateOrSelectStage.cs │ ├── BulkExportCreateOrSelectStage.resx │ ├── BulkExportFinishedStage.Designer.cs │ ├── BulkExportFinishedStage.cs │ ├── BulkExportFinishedStage.resx │ ├── BulkExportOutputFormatStage.Designer.cs │ ├── BulkExportOutputFormatStage.cs │ ├── BulkExportOutputFormatStage.resx │ ├── BulkExportSourcesStage.Designer.cs │ ├── BulkExportSourcesStage.cs │ ├── BulkExportSourcesStage.resx │ ├── BulkExportSummaryStage.Designer.cs │ ├── BulkExportSummaryStage.cs │ ├── BulkExportSummaryStage.resx │ ├── BulkExportWizard.cs │ ├── BulkExportWizardData.cs │ ├── ExportProfile.cs │ ├── ExportWizard.csproj │ ├── ExportWizardDescriptor.cs │ └── ExportWizardModule.cs ├── Fixture │ ├── Fixture.csproj │ ├── FixtureChannel.cs │ ├── FixtureColorWheel.cs │ ├── FixtureFunction.cs │ ├── FixtureIndex.cs │ ├── FixtureIndexBase.cs │ ├── FixtureItem.cs │ ├── FixtureRotationLimits.cs │ └── FixtureSpecification.cs ├── FixtureSpecificationManager │ ├── FixtureSpecificationManager.cs │ ├── FixtureSpecificationManager.csproj │ └── IFixtureSpecificationManager.cs ├── Instrumentation │ ├── .vs │ │ └── Instrumentation │ │ │ ├── FileContentIndex │ │ │ ├── 09cc1a1f-3abe-4a6a-bc3f-747ef5b0e675.vsidx │ │ │ ├── cade59b0-b7fc-49b5-a6d0-55edc2ce2fb9.vsidx │ │ │ └── read.lock │ │ │ └── v17 │ │ │ └── .futdcache.v2 │ ├── Instrumentation.csproj │ ├── InstrumentationDescriptor.cs │ ├── InstrumentationForm.Designer.cs │ ├── InstrumentationForm.cs │ ├── InstrumentationForm.resx │ └── InstrumentationModule.cs ├── LipSyncApp │ ├── LipSyncApp.csproj │ ├── LipSyncColorEditor.resx │ ├── LipSyncMapColorCtrl.Designer.cs │ ├── LipSyncMapColorCtrl.cs │ ├── LipSyncMapColorCtrl.resx │ ├── LipSyncMapColorSelect.Designer.cs │ ├── LipSyncMapColorSelect.cs │ ├── LipSyncMapColorSelect.resx │ ├── LipSyncMapData.cs │ ├── LipSyncMapDescriptor.cs │ ├── LipSyncMapItem.cs │ ├── LipSyncMapLibrary.cs │ ├── LipSyncMapMatrixEditor.Designer.cs │ ├── LipSyncMapMatrixEditor.cs │ ├── LipSyncMapMatrixEditor.resx │ ├── LipSyncMapSelector.Designer.cs │ ├── LipSyncMapSelector.cs │ ├── LipSyncMapSelector.resx │ ├── LipSyncMapStaticData.cs │ ├── LipSyncMultiPicSelect.Designer.cs │ ├── LipSyncMultiPicSelect.cs │ ├── LipSyncMultiPicSelect.resx │ ├── LipSyncNodeSelect.Designer.cs │ ├── LipSyncNodeSelect.cs │ ├── LipSyncNodeSelect.resx │ ├── LipSyncPhonemeUtils.cs │ ├── LipSyncResources.Designer.cs │ ├── LipSyncResources.resx │ ├── LipSyncTextConvertFailForm.Designer.cs │ ├── LipSyncTextConvertFailForm.cs │ ├── LipSyncTextConvertFailForm.resx │ ├── LipSyncTextConvertForm.Designer.cs │ ├── LipSyncTextConvertForm.cs │ ├── LipSyncTextConvertForm.resx │ └── Resources │ │ └── standard_dictionary ├── Marks │ ├── Annotations.cs │ ├── BindableBase.cs │ ├── Mark.cs │ ├── MarkCollection.cs │ ├── MarkDecorator.cs │ ├── Marks.csproj │ └── Mode.cs ├── Modeling │ ├── ElementModeling.cs │ └── Modeling.csproj ├── Polygon │ ├── Ellipse.cs │ ├── Line.cs │ ├── PointBasedShape.cs │ ├── Polygon.cs │ ├── Polygon.csproj │ ├── PolygonContainer.cs │ ├── PolygonEditorCapabilities.cs │ ├── PolygonPoint.cs │ └── Shape.cs ├── Shows │ ├── Actions │ │ ├── Action.cs │ │ ├── LaunchAction.cs │ │ ├── PauseAction.cs │ │ └── SequenceAction.cs │ ├── Editors │ │ ├── LaunchTypeEditor.Designer.cs │ │ ├── LaunchTypeEditor.cs │ │ ├── LaunchTypeEditor.resx │ │ ├── LaunchTypeTester.Designer.cs │ │ ├── LaunchTypeTester.cs │ │ ├── LaunchTypeTester.resx │ │ ├── PauseTypeEditor.Designer.cs │ │ ├── PauseTypeEditor.cs │ │ ├── PauseTypeEditor.resx │ │ ├── SequenceTypeEditor.Designer.cs │ │ ├── SequenceTypeEditor.cs │ │ ├── SequenceTypeEditor.resx │ │ ├── ShowTypeEditor.Designer.cs │ │ ├── ShowTypeEditor.cs │ │ ├── ShowTypeEditor.resx │ │ ├── TypeEditorBase.Designer.cs │ │ ├── TypeEditorBase.cs │ │ ├── WebPageTypeEditor.Designer.cs │ │ ├── WebPageTypeEditor.cs │ │ ├── WebPageTypeEditor.resx │ │ ├── WebPageTypeTester.Designer.cs │ │ ├── WebPageTypeTester.cs │ │ └── WebPageTypeTester.resx │ ├── ObjectCopier.cs │ ├── SequenceManager.cs │ ├── Show.cs │ ├── ShowEditorForm.Designer.cs │ ├── ShowEditorForm.cs │ ├── ShowEditorForm.resx │ ├── ShowItem.cs │ ├── ShowListForm.Designer.cs │ ├── ShowListForm.cs │ ├── ShowListForm.resx │ ├── Shows.csproj │ ├── ShowsData.cs │ ├── ShowsDescriptor.cs │ └── ShowsModule.cs ├── SuperScheduler │ ├── ScheduleExecutor.cs │ ├── ScheduleItem.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── SetupScheduleForm.Designer.cs │ ├── SetupScheduleForm.cs │ ├── SetupScheduleForm.resx │ ├── StatusForm.Designer.cs │ ├── StatusForm.cs │ ├── StatusForm.resx │ ├── SuperScheduler.csproj │ ├── SuperSchedulerData.cs │ ├── SuperSchedulerDescriptor.cs │ └── SuperSchedulerModule.cs ├── TimedSequenceMapper │ ├── Constants.cs │ ├── SequenceElementMapper │ │ ├── Models │ │ │ ├── ElementMap.cs │ │ │ └── ElementMapping.cs │ │ ├── Services │ │ │ ├── ElementMapService.cs │ │ │ ├── IElementMapService.cs │ │ │ ├── IModelPersistenceService.cs │ │ │ └── ModelPersistenceService.cs │ │ ├── ViewModels │ │ │ ├── ElementMapperViewModel.cs │ │ │ ├── ElementNodeProxyViewModel.cs │ │ │ └── SourceTreeViewModel.cs │ │ └── Views │ │ │ ├── ElementMapperView.xaml │ │ │ ├── ElementMapperView.xaml.cs │ │ │ ├── ElementNodeProxyView.xaml │ │ │ ├── ElementNodeProxyView.xaml.cs │ │ │ ├── SourceTreeView.xaml │ │ │ └── SourceTreeView.xaml.cs │ ├── SequencePackageExport │ │ ├── SequencePackageExportFinishedStage.Designer.cs │ │ ├── SequencePackageExportFinishedStage.cs │ │ ├── SequencePackageExportFinishedStage.resx │ │ ├── SequencePackageExportOutputStage.Designer.cs │ │ ├── SequencePackageExportOutputStage.cs │ │ ├── SequencePackageExportOutputStage.resx │ │ ├── SequencePackageExportSourcesStage.Designer.cs │ │ ├── SequencePackageExportSourcesStage.cs │ │ ├── SequencePackageExportSourcesStage.resx │ │ ├── SequencePackageExportSummaryStage.Designer.cs │ │ ├── SequencePackageExportSummaryStage.cs │ │ ├── SequencePackageExportSummaryStage.resx │ │ └── SequencePackageExportWizard.cs │ ├── SequencePackageImport │ │ ├── ImportConfig.cs │ │ ├── SequencePackageImportFinishedStage.Designer.cs │ │ ├── SequencePackageImportFinishedStage.cs │ │ ├── SequencePackageImportFinishedStage.resx │ │ ├── SequencePackageImportInputStage.Designer.cs │ │ ├── SequencePackageImportInputStage.cs │ │ ├── SequencePackageImportInputStage.resx │ │ ├── SequencePackageImportSequencesStage.Designer.cs │ │ ├── SequencePackageImportSequencesStage.cs │ │ ├── SequencePackageImportSequencesStage.resx │ │ ├── SequencePackageImportSummaryStage.Designer.cs │ │ ├── SequencePackageImportSummaryStage.cs │ │ ├── SequencePackageImportSummaryStage.resx │ │ └── SequencePackageImportWizard.cs │ ├── TimedSequenceMapper.csproj │ ├── TimedSequencePackagerData.cs │ ├── TimedSequencePackagerDescriptor.cs │ └── TimedSequencePackagerModule.cs ├── TimingTrackBrowser │ ├── Import │ │ └── XLights │ │ │ ├── XTimingLyricInventoryImporter.cs │ │ │ └── XTimingSongInventoryMapper.cs │ ├── Model │ │ ├── ExternalVendorInventory │ │ │ ├── Category.cs │ │ │ ├── MusicVendorInventory.cs │ │ │ ├── Song.cs │ │ │ ├── Vendor.cs │ │ │ └── VendorLink.cs │ │ ├── InformationMetadata.cs │ │ ├── InternalVendorInventory │ │ │ ├── Category.cs │ │ │ ├── Song.cs │ │ │ ├── SongInventory.cs │ │ │ ├── SongLink.cs │ │ │ └── Vendor.cs │ │ └── VendorMetadata.cs │ ├── TimingTrackBrowser.csproj │ ├── ViewModels │ │ ├── VendorInventoryWindowViewModel.cs │ │ └── VendorMetadataViewModel.cs │ └── Views │ │ ├── SongInventoryTree.xaml │ │ ├── SongInventoryTree.xaml.cs │ │ ├── VendorInventoryWindow.xaml │ │ ├── VendorInventoryWindow.xaml.cs │ │ ├── VendorMetadataView.xaml │ │ └── VendorMetadataView.xaml.cs └── WebServer │ ├── Controllers │ ├── BaseApiController.cs │ ├── ElementController.cs │ ├── PlayController.cs │ └── SystemController.cs │ ├── Data.cs │ ├── Descriptor.cs │ ├── Filter │ └── ArgumentExceptionFilterAttribute.cs │ ├── Hubs │ └── ContextHub.cs │ ├── Model │ ├── ContextStatus.cs │ ├── Controller.cs │ ├── ControllerState.cs │ ├── Element.cs │ ├── ElementEffect.cs │ ├── ElementState.cs │ ├── Sequence.cs │ └── Status.cs │ ├── Module.cs │ ├── Properties │ └── launchSettings.json │ ├── RequestLogger.cs │ ├── Service │ ├── ContextBroadcaster.cs │ ├── ContextsHelper.cs │ ├── ElementsHelper.cs │ ├── SequenceHelper.cs │ └── SystemHelper.cs │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.resx │ ├── Startup.cs │ ├── WebHost.cs │ ├── WebServer.csproj │ ├── WebSettingsEventArgs.cs │ └── wwwroot │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── V3Logo.png │ └── ajax-loader.gif │ ├── index.htm │ ├── js │ ├── amplify.min.js │ ├── bootstrap-slider.min.js │ ├── bootstrap.min.js │ ├── jquery-1.11.2.min.js │ ├── jquery-1.11.2.min.map │ ├── jquery.easing.min.js │ ├── jquery.signalr-2.1.0.min.js │ ├── knockout-3.2.0.js │ ├── knockout.mapping.min.js │ ├── moment-duration-format.js │ ├── moment.min.js │ ├── npm.js │ ├── signalr.js │ ├── spectrum.js │ └── vixen.js │ └── style │ ├── bootstrap-slider.css │ ├── bootstrap-slider.min.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── images │ └── ajax-loader.gif │ ├── jqm-icon-pack-fa.css │ ├── jquery.mobile-1.4.5.min.css │ ├── jquery.mobile.external-png-1.4.5.min.css │ ├── jquery.mobile.icons-1.4.5.min.css │ ├── jquery.mobile.inline-png-1.4.5.min.css │ ├── jquery.mobile.inline-svg-1.4.5.min.css │ ├── jquery.mobile.structure-1.4.5.min.css │ ├── jquery.mobile.theme-1.4.5.min.css │ ├── spectrum.css │ └── vixen.css ├── Controller ├── DDP │ ├── DDP Reference Information.txt │ ├── DDP.cs │ ├── DDP.csproj │ ├── DDPData.cs │ ├── DDPDescriptor.cs │ ├── DDPSetup.Designer.cs │ ├── DDPSetup.cs │ ├── DDPSetup.resx │ ├── DataPolicy.cs │ └── DataPolicyFactory.cs ├── DMXUsbPro │ ├── DMXUsbPro.csproj │ ├── Data.cs │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── Descriptor.cs │ ├── DmxUsbProSender.cs │ ├── Message.cs │ ├── MessageType.cs │ └── Module.cs ├── DebugController │ ├── DebugController.cs │ ├── DebugController.csproj │ ├── DebugControllerOutputForm.Designer.cs │ ├── DebugControllerOutputForm.cs │ └── DebugControllerOutputForm.resx ├── Directory.Build.props ├── DummyLighting │ ├── CommandHandler.cs │ ├── DummyLighting.cs │ ├── DummyLighting.csproj │ ├── DummyLightingData.cs │ ├── DummyLightingDescriptor.cs │ ├── DummyLightingOutputForm.Designer.cs │ ├── DummyLightingOutputForm.cs │ ├── DummyLightingOutputForm.resx │ ├── DummyLightingSetup.Designer.cs │ ├── DummyLightingSetup.cs │ ├── DummyLightingSetup.resx │ ├── MonochromeDataPolicy.cs │ ├── MonochromeDataPolicyFactory.cs │ ├── OneChannelColorDataPolicy.cs │ ├── OneChannelColorDataPolicyFactory.cs │ ├── ThreeChannelColorDataPolicy.cs │ └── ThreeChannelColorDataPolicyFactory.cs ├── E131 │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── Controls │ │ ├── DataGridViewNumbered.cs │ │ └── IPTextBox.cs │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── E131.cs │ ├── E131.csproj │ ├── E131DeviceManagementProtocol.cs │ ├── E131Framing.cs │ ├── E131ModuleDataModel.cs │ ├── E131ModuleDescriptor.cs │ ├── E131OutputPlugin.cs │ ├── E131Packet.cs │ ├── E131Root.cs │ ├── Extensions.cs │ ├── Help.cs │ ├── J1Sys │ │ ├── J1MsgBox.cs │ │ ├── J1MsgBox.resx │ │ ├── MessageBeepClass.cs │ │ └── MessageBoxIcons │ │ │ ├── exclamation.ico │ │ │ ├── information.ico │ │ │ ├── question.ico │ │ │ └── stop.ico │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── UnicastForm.Designer.cs │ ├── UnicastForm.cs │ ├── UnicastForm.resx │ └── UniverseEntry.cs ├── ElexolEtherIO │ ├── ElexolEtherIO.csproj │ ├── ElexolEtherIOCommandHandler.cs │ ├── ElexolEtherIOData.cs │ ├── ElexolEtherIODataPolicy.cs │ ├── ElexolEtherIODataPolicyFactory.cs │ ├── ElexolEtherIODescriptor.cs │ ├── ElexolEtherIOModule.cs │ ├── SetupDialog.Designer.cs │ ├── SetupDialog.cs │ └── SetupDialog.resx ├── GenericSerial │ ├── CommandHandler.cs │ ├── Data.cs │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── Descriptor.cs │ ├── GenericSerial.csproj │ ├── Module.cs │ ├── SetupDialog.Designer.cs │ ├── SetupDialog.cs │ └── SetupDialog.resx ├── LauncherController │ ├── CommandHandler.cs │ ├── Data.cs │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── Descriptor.cs │ ├── LauncherController.csproj │ ├── Module.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ └── mrds1322.pdf ├── OpenDMX │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── Device.cs │ ├── OpenDMX.cs │ ├── OpenDMX.csproj │ ├── OpenDMXData.cs │ ├── OpenDMXDescriptor.cs │ ├── OpenDMXInstance.cs │ ├── SetupDialog.Designer.cs │ ├── SetupDialog.cs │ └── SetupDialog.resx ├── RDSController │ ├── CommandHandler.cs │ ├── Data.cs │ ├── DataPolicy.cs │ ├── DataPolicyFactory.cs │ ├── Descriptor.cs │ ├── Module.cs │ ├── NativeMethods.cs │ ├── RDSController.csproj │ ├── RdsSerialPort.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── TData.cs │ ├── mrds1322.pdf │ └── rds logo.png └── Renard │ ├── CommandHandler.cs │ ├── Data.cs │ ├── Descriptor.cs │ ├── IRenardProtocolFormatter.cs │ ├── Module.cs │ ├── Protocol1.cs │ ├── Protocol2.cs │ ├── ProtocolFormatterService.cs │ ├── ProtocolVersionAttribute.cs │ ├── Renard.csproj │ ├── RenardDataPolicy.cs │ ├── RenardDataPolicyFactory.cs │ ├── SetupDialog.Designer.cs │ ├── SetupDialog.cs │ └── SetupDialog.resx ├── Editor ├── Directory.Build.props ├── EffectEditor │ ├── CategoryEditor.cs │ ├── CategoryItem.cs │ ├── Controls │ │ ├── BaseInlineCurveEditor.cs │ │ ├── BaseInlineGradientEditor.cs │ │ ├── CollectionView.cs │ │ ├── DoubleEditor.cs │ │ ├── EnumDropdown.cs │ │ ├── IndexingStackPanel.cs │ │ ├── InlineCurveEditor.cs │ │ ├── InlineGradientEditor.cs │ │ ├── InlineGradientPairCurveEditor.cs │ │ ├── InlineGradientPairGradientEditor.cs │ │ ├── IntegerEditor.cs │ │ ├── RepeatEditor.cs │ │ ├── Reveal.cs │ │ ├── SliderEditorBase.cs │ │ ├── SliderPoint.cs │ │ └── ToggleSwitch.cs │ ├── Converters │ │ ├── BitmapImageConverter.cs │ │ ├── ColorGradientIsLibraryToVisibilityConverter.cs │ │ ├── ColorGradientToImageConverter.cs │ │ ├── CurveIsLibraryToVisibilityConverter.cs │ │ ├── CurveToDoubleConverter.cs │ │ ├── CurveToImageConverter.cs │ │ ├── DebugConverter.cs │ │ ├── DoubleToIntConverter.cs │ │ ├── EnumValueConverter.cs │ │ ├── ExpanderHeaderWidthConverter.cs │ │ ├── FontConverterDecorator.cs │ │ ├── FontStretchConverterDecorator.cs │ │ ├── FontStyleConverterDecorator.cs │ │ ├── FontWeightConverterDecorator.cs │ │ ├── IntToDoubleConverter.cs │ │ ├── LevelToIntConverter.cs │ │ ├── LevelValueConverter.cs │ │ ├── MultiBooleanToVisibilityConverter.cs │ │ ├── NullToVisibilityConverter.cs │ │ ├── NullValueConverter.cs │ │ ├── PercentageToIntConverter.cs │ │ ├── PercentageValueConverter.cs │ │ ├── StringNullOrEmptyToVisibilityConverter.cs │ │ ├── SystemColorToSolidBrushConverter.cs │ │ ├── ToolTipVisibilityConverter.cs │ │ └── WidthToVisibilityConverter.cs │ ├── Design │ │ ├── AlphabeticalLayout.cs │ │ ├── AlphabeticalLayout.xaml │ │ ├── CategorizedLayout.cs │ │ ├── CategorizedLayout.xaml │ │ ├── CategoryContainer.cs │ │ ├── CategoryEditorContentPresenter.cs │ │ ├── CategoryItemsLayout.cs │ │ ├── GridEntryContainer.cs │ │ ├── GridEntryLayout.cs │ │ ├── PropertyContainer.cs │ │ ├── PropertyEditorContentPresenter.cs │ │ ├── PropertyItemsLayout.cs │ │ └── PropertyNameTextBlock.cs │ ├── Editors │ │ ├── BaseColorTypeEditor.cs │ │ ├── ColorTypeEditor.cs │ │ ├── CurveEditor.cs │ │ ├── Editor.cs │ │ ├── EditorCollection.cs │ │ ├── EditorKeys.cs │ │ ├── FilePathEditor.cs │ │ ├── FontEditor.cs │ │ ├── GledPathEditor.cs │ │ ├── GradientTypeEditor.cs │ │ ├── ImagePathEditor.cs │ │ ├── LevelEditor.cs │ │ ├── PolygonContainerTypeEditor.cs │ │ ├── PropertyEditor.cs │ │ ├── SelectionEditor.cs │ │ ├── SliderDoubleEditor.cs │ │ ├── SliderEditor.cs │ │ ├── SliderPercentageEditor.cs │ │ ├── SvgPathEditor.cs │ │ ├── TypeEditor.cs │ │ └── VideoPathEditor.cs │ ├── EffectEditor.csproj │ ├── EffectPropertyEditorGrid.cs │ ├── GridEntry.cs │ ├── GridEntryCollection.cs │ ├── Input │ │ ├── DragDropManager.cs │ │ ├── DragDropTargetType.cs │ │ ├── DropPreviewAdorner.cs │ │ ├── IDragSourceAdvisor.cs │ │ ├── IDropTargetAdvisor.cs │ │ ├── PropertyEditorCommands.cs │ │ └── PropertyGridCommands.cs │ ├── Internal │ │ ├── CollectionItemValue.cs │ │ ├── CollectionItems.cs │ │ ├── CollectionPropertyDescriptor.cs │ │ ├── MathUtil.cs │ │ ├── MergedPropertyDescriptor.cs │ │ └── Util.cs │ ├── KnownTypes.cs │ ├── License.txt │ ├── Metadata │ │ └── AttributesContainer.cs │ ├── MetadataRepository.cs │ ├── ObjectServices.cs │ ├── PreviewStateChanged.cs │ ├── PropertyDisplayMode.cs │ ├── PropertyEditing │ │ ├── CategoryItemComparer.cs │ │ ├── CollectionChangedEventArgs.cs │ │ ├── Filters │ │ │ ├── IPropertyFilterTarget.cs │ │ │ ├── PropertyFilter.cs │ │ │ ├── PropertyFilterAppliedEventArgs.cs │ │ │ └── PropertyFilterPredicate.cs │ │ ├── PropertyItemComparer.cs │ │ ├── ValueExceptionEventArgs.cs │ │ └── ValueExceptionSource.cs │ ├── PropertyEditingEventArgs.cs │ ├── PropertyGrid.Commands.cs │ ├── PropertyGridUtils.cs │ ├── PropertyItem.cs │ ├── PropertyItemValue.cs │ ├── PropertyValueChangedEventArgs.cs │ ├── ResourceLocator.cs │ ├── Themes │ │ ├── ColorGradientEditor.xaml │ │ ├── ColorGradientPaletteEditor.xaml │ │ ├── ColorPaletteEditor.xaml │ │ ├── Converters.xaml │ │ ├── CurveEditor.xaml │ │ ├── DoubleEditor.xaml │ │ ├── EditorResources.xaml │ │ ├── EnumEditor.xaml │ │ ├── FontEditor.xaml │ │ ├── Generic.xaml │ │ ├── GradientLevelPairEditor.xaml │ │ ├── Images │ │ │ ├── clear.png │ │ │ ├── librarylink.png │ │ │ └── search.png │ │ ├── IntegerEditor.xaml │ │ ├── PolygonEditor.xaml │ │ ├── PropertyGrid.xaml │ │ ├── SliderEditor.xaml │ │ ├── SliderPoint.xaml │ │ ├── SystemColorEditor.xaml │ │ ├── TextEditor.xaml │ │ └── ToggleSwitch.xaml │ └── Utils │ │ ├── ClipBorder.cs │ │ └── GeometryHelper.cs ├── FixtureGraphics │ ├── FixtureGraphics.csproj │ ├── Geometry │ │ ├── IMovingHeadGeometryConstants.cs │ │ └── MovingHeadGeometryConstants.cs │ ├── IMovingHead.cs │ ├── MovingHeadSettings.cs │ ├── OpenGL │ │ ├── IRenderMovingHeadOpenGL.cs │ │ ├── MovingHeadOpenGL.cs │ │ ├── MovingHeadRenderStrategy.cs │ │ ├── Primitives │ │ │ ├── AttributeInfo.cs │ │ │ ├── MetaDataInfo.cs │ │ │ └── UniformInfo.cs │ │ ├── Shaders │ │ │ ├── ColorVolumeShader.cs │ │ │ ├── ColorVolumeShader1.cs │ │ │ ├── ColorVolumeShader2.cs │ │ │ ├── GrayVolumeShader.cs │ │ │ ├── ISpecifyVolumeIntensity.cs │ │ │ ├── IVolumeShader.cs │ │ │ └── VolumeShader.cs │ │ └── Volumes │ │ │ ├── BeamCylinderWithEndCaps.cs │ │ │ ├── Cylinder.cs │ │ │ ├── CylinderBase.cs │ │ │ ├── CylinderWithEndCaps.cs │ │ │ ├── IRotatableCylinder.cs │ │ │ ├── ISpecifyVolumeColor.cs │ │ │ ├── ISpecifyVolumeTransparency.cs │ │ │ ├── IUpdateCylinder.cs │ │ │ ├── IVolume.cs │ │ │ ├── Rectangle.cs │ │ │ ├── RotatingCylinderWithEndCaps.cs │ │ │ ├── TaperedRectangle.cs │ │ │ └── VolumeBase.cs │ └── WPF │ │ ├── BitmapSourceHelper.cs │ │ └── MovingHeadWPF.cs ├── FixturePropertyEditor │ ├── FixturePropertyEditor.csproj │ ├── ViewModels │ │ ├── ChannelItemViewModel.cs │ │ ├── ColorWheelItemViewModel.cs │ │ ├── ColorWheelViewModel.cs │ │ ├── FixturePropertyEditorViewModel.cs │ │ ├── FixturePropertyEditorWindowViewModel.cs │ │ ├── FixturePropertyWindowViewModelBase.cs │ │ ├── FixtureViewModelBase.cs │ │ ├── FunctionItemViewModel.cs │ │ ├── FunctionTypeViewModel.cs │ │ ├── FunctionTypeWindowViewModel.cs │ │ ├── IFixtureSaveable.cs │ │ ├── IndexedItemViewModel.cs │ │ ├── IndexedViewModel.cs │ │ ├── ItemViewModel.cs │ │ ├── ItemsViewModel.cs │ │ ├── PanTiltViewModel.cs │ │ ├── SelectFixtureSpecificationViewModel.cs │ │ └── ZoomViewModel.cs │ └── Views │ │ ├── BindingProxy.cs │ │ ├── ColorWheelView.xaml │ │ ├── ColorWheelView.xaml.cs │ │ ├── FixturePropertyEditorView.xaml │ │ ├── FixturePropertyEditorView.xaml.cs │ │ ├── FixturePropertyEditorWindowView.xaml │ │ ├── FixturePropertyEditorWindowView.xaml.cs │ │ ├── FunctionTypeView.xaml │ │ ├── FunctionTypeView.xaml.cs │ │ ├── FunctionTypeWindowView.xaml │ │ ├── FunctionTypeWindowView.xaml.cs │ │ ├── IRefreshGrid.cs │ │ ├── IndexedView.xaml │ │ ├── IndexedView.xaml.cs │ │ ├── PanTiltView.xaml │ │ ├── PanTiltView.xaml.cs │ │ ├── SelectFixtureSpecificationView.xaml │ │ ├── SelectFixtureSpecificationView.xaml.cs │ │ ├── VixenDataGrid.cs │ │ ├── ZoomView.xaml │ │ └── ZoomView.xaml.cs ├── FixtureWizard │ ├── FixtureWizard.csproj │ ├── FodyWeavers.xml │ ├── ModuleInitializer.cs │ └── Wizard │ │ ├── FixtureWizardNavigationController.cs │ │ ├── Models │ │ ├── AutomationWizardPage.cs │ │ ├── ColorSupportWizardPage.cs │ │ ├── DimmingCurveSelection.cs │ │ ├── DimmingCurveWizardPage.cs │ │ ├── EditProfileFunctionsWizardPage.cs │ │ ├── EditProfileWizardPage.cs │ │ ├── FixtureWizardPageBase.cs │ │ ├── GroupingWizardPage.cs │ │ ├── IntelligentFixtureWizard.cs │ │ ├── Interfaces │ │ │ └── IFixtureWizard.cs │ │ ├── SelectProfileWizardPage.cs │ │ └── SummaryWizardPageBase.cs │ │ ├── ViewModels │ │ ├── AutomationWizardPageViewModel.cs │ │ ├── ColorSupportWizardPageViewModel.cs │ │ ├── DimmingCurveWizardPageViewModel.cs │ │ ├── EditProfileFunctionsWizardPageViewModel.cs │ │ ├── EditProfileWizardPageViewModel.cs │ │ ├── EditWizardPageViewModelBase.cs │ │ ├── FixtureWizardTreeItem.cs │ │ ├── GroupingWizardPageViewModel.cs │ │ ├── IIntelligentFixtureWizardPageViewModel.cs │ │ └── SelectProfileWizardPageViewModel.cs │ │ └── Views │ │ ├── AutomationWizardPageView.xaml │ │ ├── AutomationWizardPageView.xaml.cs │ │ ├── ColorSupportWizardPageView.xaml │ │ ├── ColorSupportWizardPageView.xaml.cs │ │ ├── DimmingCurveWizardPageView.xaml │ │ ├── DimmingCurveWizardPageView.xaml.cs │ │ ├── EditProfileFunctionsWizardPageView.xaml │ │ ├── EditProfileFunctionsWizardPageView.xaml.cs │ │ ├── EditProfileWizardPageView.xaml │ │ ├── EditProfileWizardPageView.xaml.cs │ │ ├── GroupingWizardPageView.xaml │ │ ├── GroupingWizardPageView.xaml.cs │ │ ├── SelectProfileWizardPageView.xaml │ │ ├── SelectProfileWizardPageView.xaml.cs │ │ └── WizardUserControlBase.cs ├── LayerEditor │ ├── Converters │ │ ├── DebugConverter.cs │ │ ├── DefaultLayerVisibilityConverter.cs │ │ └── HasSetupVisibilityConverter.cs │ ├── Input │ │ └── LayerEditorCommands.cs │ ├── LayerEditor.csproj │ ├── LayerEditorView.cs │ └── Themes │ │ └── Generic.xaml ├── PolygonEditor │ ├── Adorners │ │ ├── IResizeable.cs │ │ ├── ResizeAdorner.cs │ │ └── RubberbandAdorner.cs │ ├── Converters │ │ ├── MathConverter.cs │ │ ├── PointCollectionConverter.cs │ │ ├── PolygonPointXConverter.cs │ │ └── PolygonPointYConverter.cs │ ├── Cursors │ │ └── cursor_arrow_dragbox.cur │ ├── Images │ │ ├── AddPoint.png │ │ ├── ConvertToEllipse.png │ │ ├── Label.png │ │ ├── LineToPolygon.png │ │ ├── PolygonToLine.png │ │ ├── SnapToGrid.png │ │ ├── ToggleStartPoint.png │ │ ├── ToggleStartSide.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── buttonDrawEllipse.png │ │ ├── buttonDrawLine.png │ │ ├── buttonDrawPolygon.png │ │ ├── buttonSelect.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── delete_32.png │ │ └── paste.png │ ├── PolygonEditor.csproj │ ├── Themes │ │ └── Theme.xaml │ ├── ValidationRules │ │ ├── XValidationRule.cs │ │ └── YValidationRule.cs │ ├── ViewModels │ │ ├── EllipseViewModel.cs │ │ ├── LineSegmentViewModel.cs │ │ ├── LineViewModel.cs │ │ ├── PointBasedViewModel.cs │ │ ├── PolygonEditorViewModel.cs │ │ ├── PolygonLineSegment.cs │ │ ├── PolygonPointViewModel.cs │ │ ├── PolygonSnapShotViewModel.cs │ │ ├── PolygonViewModel.cs │ │ └── ShapeViewModel.cs │ └── Views │ │ ├── BindingProxy.cs │ │ ├── PolygonCanvas.cs │ │ ├── PolygonControl.xaml │ │ ├── PolygonControl.xaml.cs │ │ ├── PolygonEditorView.xaml │ │ ├── PolygonEditorView.xaml.cs │ │ ├── PolygonTimeBar.xaml │ │ ├── PolygonTimeBar.xaml.cs │ │ ├── PolygonTimeBarCanvas.cs │ │ └── SizeObserver.cs └── TimedSequenceEditor │ ├── AsyncHelpers.cs │ ├── AutomaticMusicDetection.Designer.cs │ ├── AutomaticMusicDetection.cs │ ├── AutomaticMusicDetection.resx │ ├── BeatDetection.resx │ ├── BeatMarkExportDialog.Designer.cs │ ├── BeatMarkExportDialog.cs │ ├── BeatMarkExportDialog.resx │ ├── BulkEffectMoveForm.Designer.cs │ ├── BulkEffectMoveForm.cs │ ├── BulkEffectMoveForm.resx │ ├── CreateEvenMarksForm.Designer.cs │ ├── CreateEvenMarksForm.cs │ ├── CreateEvenMarksForm.resx │ ├── EffectDistributionDialog.Designer.cs │ ├── EffectDistributionDialog.cs │ ├── EffectDistributionDialog.resx │ ├── EffectModelCandidate.cs │ ├── EffectRasterizer.cs │ ├── EffectTimeEditor.Designer.cs │ ├── EffectTimeEditor.cs │ ├── EffectTimeEditor.resx │ ├── ExportDialog.Designer.cs │ ├── ExportDialog.cs │ ├── ExportDialog.resx │ ├── Forms │ ├── ColorCollectionLibrary_Form.Designer.cs │ ├── ColorCollectionLibrary_Form.cs │ ├── ColorCollectionLibrary_Form.resx │ ├── FindEffectForm.Designer.cs │ ├── FindEffectForm.cs │ ├── FindEffectForm.resx │ ├── FormEffectEditor.Designer.cs │ ├── FormEffectEditor.cs │ ├── FormEffectEditor.resx │ ├── FormParameterPicker.Designer.cs │ ├── FormParameterPicker.cs │ ├── FormParameterPicker.resx │ ├── Form_AddMultipleEffects.Designer.cs │ ├── Form_AddMultipleEffects.cs │ ├── Form_AddMultipleEffects.resx │ ├── Form_ColorLibrary.Designer.cs │ ├── Form_ColorLibrary.cs │ ├── Form_ColorLibrary.resx │ ├── Form_CurveLibrary.Designer.cs │ ├── Form_CurveLibrary.cs │ ├── Form_CurveLibrary.resx │ ├── Form_Effects.Designer.cs │ ├── Form_Effects.cs │ ├── Form_Effects.resx │ ├── Form_GradientLibrary.Designer.cs │ ├── Form_GradientLibrary.cs │ ├── Form_GradientLibrary.resx │ ├── Form_Grid.Designer.cs │ ├── Form_Grid.cs │ ├── Form_Grid.resx │ ├── Form_Marks.Designer.cs │ ├── Form_Marks.cs │ ├── Form_Marks.resx │ └── WPF │ │ └── MarksDocker │ │ ├── Services │ │ └── MarkImportExportService.cs │ │ ├── ViewModels │ │ ├── CheckBoxStateBase.cs │ │ ├── CollectionTypeCheckBoxState.cs │ │ ├── LevelCheckBoxState.cs │ │ ├── LinkedToCheckBoxState.cs │ │ ├── MarkCollectionViewModel.cs │ │ └── MarkDockerViewModel.cs │ │ └── Views │ │ ├── MarkCollectionView.xaml │ │ ├── MarkCollectionView.xaml.cs │ │ ├── MarkDockerView.xaml │ │ └── MarkDockerView.xaml.cs │ ├── IntentRasterizer.cs │ ├── InvalidAudioPathDialog.Designer.cs │ ├── InvalidAudioPathDialog.cs │ ├── InvalidAudioPathDialog.resx │ ├── LayerEditor.Designer.cs │ ├── LayerEditor.cs │ ├── LayerEditor.resx │ ├── MarkCollectionImportDialog.Designer.cs │ ├── MarkCollectionImportDialog.cs │ ├── MarkCollectionImportDialog.resx │ ├── MarkTapper.Designer.cs │ ├── MarkTapper.cs │ ├── MarkTapper.resx │ ├── PapagayoDoc.cs │ ├── ParameterEditor.Designer.cs │ ├── ParameterEditor.cs │ ├── ParameterEditor.resx │ ├── PastingMode.cs │ ├── Properties │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ └── magnet.png │ ├── SetSequenceLength.Designer.cs │ ├── SetSequenceLength.cs │ ├── SetSequenceLength.resx │ ├── Shell32.cs │ ├── TimeFormats.cs │ ├── TimedSequenceEditor.cs │ ├── TimedSequenceEditor.csproj │ ├── TimedSequenceEditorDescriptor.cs │ ├── TimedSequenceEditorEffectEditor.Designer.cs │ ├── TimedSequenceEditorEffectEditor.cs │ ├── TimedSequenceEditorEffectEditor.resx │ ├── TimedSequenceEditorForm.Designer.cs │ ├── TimedSequenceEditorForm.cs │ ├── TimedSequenceEditorForm.resx │ ├── TimedSequenceEditorForm_ContextMenu.cs │ ├── TimedSequenceEditorForm_Hotkeys.cs │ ├── TimedSequenceEditorForm_Menu.cs │ ├── TimedSequenceEditorForm_Toolstrip.cs │ ├── TimedSequenceElement.cs │ ├── TimedSequenceRowLabel.cs │ ├── Undo │ ├── EffectsAddedRemovedUndoAction.cs │ ├── EffectsAddedUndoAction.cs │ ├── EffectsCutUndoAction.cs │ ├── EffectsLayerChangedUndoAction.cs │ ├── EffectsModifiedUndoAction.cs │ ├── EffectsPastedUndoAction.cs │ ├── EffectsPropertyModifiedUndoAction.cs │ ├── EffectsRemovedUndoAction.cs │ ├── ElementsTimeChangedUndoAction.cs │ ├── MarksAddedRemovedUndoAction.cs │ ├── MarksAddedUndoAction .cs │ ├── MarksBulkChangeUndoAction.cs │ ├── MarksRemovedUndoAction.cs │ └── MarksTimeChangedUndoAction.cs │ ├── User32.cs │ └── app.config ├── Effect ├── Alternating │ ├── Alternating.cs │ ├── Alternating.csproj │ ├── AlternatingData.cs │ ├── AlternatingDescriptor.cs │ ├── AlternatingMode.cs │ └── Images │ │ └── EffectImage.png ├── AudioHelper │ ├── AudioHelper.csproj │ ├── AudioPluginBase.cs │ └── AudioPluginData.cs ├── Balls │ ├── BallData.cs │ ├── BallDescriptor.cs │ ├── BallFill.cs │ ├── BallType.cs │ ├── Balls.cs │ ├── Balls.csproj │ └── Images │ │ └── EffectImage.png ├── Bars │ ├── BarDescriptor.cs │ ├── BarDirection.cs │ ├── BarType.cs │ ├── Bars.cs │ ├── Bars.csproj │ ├── BarsData.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── Border │ ├── Border.cs │ ├── Border.csproj │ ├── BorderData.cs │ ├── BorderDescriptor.cs │ ├── BorderMode.cs │ ├── BorderType.cs │ ├── GradientMode.cs │ ├── Images │ │ └── EffectImage.png │ └── RenderLevel.cs ├── Butterfly │ ├── Butterfly.cs │ ├── Butterfly.csproj │ ├── ButterflyData.cs │ ├── ButterflyDescriptor.cs │ ├── ButterflyType.cs │ ├── ColorScheme.cs │ ├── Direction.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── Candle │ ├── Candle.csproj │ ├── CandleData.cs │ ├── CandleDescriptor.cs │ ├── CandleModule.cs │ └── Images │ │ └── EffectImage.png ├── Chase │ ├── Chase.cs │ ├── Chase.csproj │ ├── ChaseColorHandling.cs │ ├── ChaseData.cs │ ├── ChaseDescriptor.cs │ └── Images │ │ └── EffectImage.png ├── Circles │ ├── CircleFill.cs │ ├── CircleRadialDirection.cs │ ├── Circles.cs │ ├── Circles.csproj │ ├── CirclesData.cs │ ├── CirclesDescriptor.cs │ └── Images │ │ └── EffectImage.png ├── ColorWash │ ├── ColorWash.cs │ ├── ColorWash.csproj │ ├── ColorWashData.cs │ ├── ColorWashDescriptor.cs │ ├── ColorWashType.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── CountDown │ ├── CountDown.cs │ ├── CountDown.csproj │ ├── CountDownData.cs │ ├── CountDownDescriptor.cs │ ├── CountDownDirection.cs │ ├── CountDownFade.cs │ ├── CountDownType.cs │ ├── GradientMode.cs │ ├── Images │ │ └── EffectImage.png │ ├── SerializableFont.cs │ ├── SpinnerGradientMode.cs │ └── TimeFOrmat.cs ├── Curtain │ ├── Curtain.cs │ ├── Curtain.csproj │ ├── CurtainData.cs │ ├── CurtainDescriptor.cs │ ├── CurtainDirection.cs │ ├── CurtainEdge.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── CustomValue │ ├── CustomValue.cs │ ├── CustomValue.csproj │ └── Images │ │ └── EffectImage.png ├── Directory.Build.props ├── Dissolve │ ├── Dissolve.cs │ ├── Dissolve.csproj │ ├── DissolveData.cs │ ├── DissolveDescriptor.cs │ ├── DissolveMarkType.cs │ ├── DissolveMode.cs │ └── Images │ │ └── EffectImage.png ├── Effect │ ├── BaseEffect.cs │ ├── Effect.csproj │ ├── EffectListTypeConverterBase.cs │ ├── EffectTypeModuleData.cs │ ├── ExpandoMarkCollectionNameConverter.cs │ ├── ExpandoObjectBase.cs │ ├── ExpandoObjectObservableCollection.cs │ ├── FixtureEffectBase.cs │ ├── FixtureIndexEffectBase.cs │ ├── IExpandoObjectCollection.cs │ ├── IMarkCollectionExpandoObject.cs │ ├── IPixelFrameBuffer.cs │ ├── Location │ │ ├── ElementLocation.cs │ │ ├── LocationComparer.cs │ │ ├── PixelLocationFrameBuffer.cs │ │ └── SparseMatrix.cs │ ├── MarkCollectionExpandoObjectCollection.cs │ ├── NotifyPropertyObservableCollection.cs │ ├── PixelEffectBase.cs │ ├── PixelFrameBuffer.cs │ ├── StandardMediaExtensions.cs │ ├── StringOrientation.cs │ ├── TargetNodeSelection.cs │ ├── TargetPositioningType.cs │ └── ThreadSafeRandom.cs ├── Fire │ ├── Fire.cs │ ├── Fire.csproj │ ├── FireData.cs │ ├── FireDescriptor.cs │ ├── FireDirection.cs │ ├── FirePalette.cs │ └── Images │ │ └── EffectImage.png ├── Fireworks │ ├── Fireworks.cs │ ├── Fireworks.csproj │ ├── FireworksColorType.cs │ ├── FireworksData.cs │ ├── FireworksDescriptor.cs │ ├── FireworksSource.cs │ ├── Images │ │ └── EffectImage.png │ └── RgbFireworks.cs ├── Fixture │ ├── FixtureEffect │ │ ├── Converters │ │ │ ├── ColorIndexConverter.cs │ │ │ ├── FixtureIndexConverter.cs │ │ │ └── FunctionCollectionNameConverter.cs │ │ ├── Data │ │ │ ├── FixtureData.cs │ │ │ └── FixtureFunctionData.cs │ │ ├── FixtureDescriptor.cs │ │ ├── FixtureEffect.csproj │ │ ├── FixtureFunctionExpando.cs │ │ ├── FixtureFunctionExpandoCollection.cs │ │ ├── FixtureModule.cs │ │ └── Images │ │ │ └── EffectImage.png │ └── IFixtureFunctionExpando │ │ ├── IFixtureFunctionExpando.cs │ │ └── IFixtureFunctionExpando.csproj ├── FixtureStrobe │ ├── Converters │ │ ├── FixtureStrobeFixtureIndexConverter.cs │ │ └── FixtureStrobeFunctionNameConverter.cs │ ├── FixtureStrobe.csproj │ ├── FixtureStrobeData.cs │ ├── FixtureStrobeDescriptor.cs │ ├── FixtureStrobeModule.cs │ └── Images │ │ └── EffectImage.png ├── Frost │ ├── Converters │ │ └── FrostFunctionNameConverter.cs │ ├── Frost.csproj │ ├── FrostData.cs │ ├── FrostDescriptor.cs │ ├── FrostModule.cs │ └── Images │ │ └── EffectImage.png ├── Garlands │ ├── Garlands.cs │ ├── Garlands.csproj │ ├── GarlandsData.cs │ ├── GarlandsDescriptor.cs │ ├── GarlandsDirection.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── Glediator │ ├── Glediator.cs │ ├── Glediator.csproj │ ├── GlediatorData.cs │ ├── GlediatorDescriptor.cs │ ├── Images │ │ └── EffectImage.png │ └── MovementType.cs ├── Gobo │ ├── Converters │ │ ├── GoboFixtureIndexConverter.cs │ │ └── GoboFunctionNameConverter.cs │ ├── Gobo.csproj │ ├── GoboData.cs │ ├── GoboDescriptor.cs │ ├── GoboModule.cs │ └── Images │ │ └── EffectImage.png ├── Launcher │ ├── Data.cs │ ├── Descriptor.cs │ ├── Images │ │ └── EffectImage.png │ ├── Launcher.csproj │ └── Module.cs ├── Life │ ├── Images │ │ └── EffectImage.png │ ├── Life.cs │ ├── Life.csproj │ ├── LifeData.cs │ └── LifeDescriptor.cs ├── LineDance │ ├── FanCenterOptions.cs │ ├── FanDirection.cs │ ├── FanModes.cs │ ├── Images │ │ └── EffectImage.png │ ├── LineDance.csproj │ ├── LineDanceData.cs │ ├── LineDanceDescriptor.cs │ ├── LineDanceModes.cs │ └── LineDanceModule.cs ├── LipSync │ ├── EyeMode.cs │ ├── FastPictureEffect.cs │ ├── Images │ │ └── EffectImage.png │ ├── LipSync.cs │ ├── LipSync.csproj │ ├── LipSyncData.cs │ ├── LipSyncDescriptor.cs │ ├── LipSyncMode.cs │ ├── MappingType.cs │ └── PhonemeMappingConverter.cs ├── Liquid │ ├── Emitter │ │ ├── Emitter.csproj │ │ ├── EmitterMarkCollectionNameConverter.cs │ │ └── IEmitter.cs │ ├── Liquid │ │ ├── EffectImage.png │ │ ├── Emitter.cs │ │ ├── EmitterCollection.cs │ │ ├── EmitterData.cs │ │ ├── Liquid.cs │ │ ├── Liquid.csproj │ │ ├── LiquidData.cs │ │ └── LiquidDescriptor.cs │ └── LiquidFunWrapper │ │ ├── AssemblyInfo.cpp │ │ ├── LiquidFunWrapper.cpp │ │ ├── LiquidFunWrapper.h │ │ ├── LiquidLiquidFunWrapper.vcxproj │ │ ├── Resource.h │ │ ├── app.ico │ │ ├── app.rc │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── Meteors │ ├── Images │ │ └── EffectImage.png │ ├── MeteorMovement.cs │ ├── Meteors.cs │ ├── Meteors.csproj │ ├── MeteorsColorType.cs │ ├── MeteorsData.cs │ ├── MeteorsDescriptor.cs │ └── MeteorsEffect.cs ├── Morph │ ├── Directory.Build.props │ ├── IMorphPolygon │ │ ├── IMorphPolygon.cs │ │ └── IMorphPolygon.csproj │ └── Morph │ │ ├── EffectImage.png │ │ ├── Morph.cs │ │ ├── Morph.csproj │ │ ├── MorphData.cs │ │ ├── MorphDescriptor.cs │ │ ├── MorphPolygon.cs │ │ ├── MorphPolygonData.cs │ │ ├── MorphPolygonsObservableCollection.cs │ │ ├── MorphWipePolygonRenderData.cs │ │ ├── PolygonFillType.cs │ │ └── WipeRepeatDirection.cs ├── Pattern │ ├── Images │ │ └── EffectImage.png │ ├── Pattern.cs │ ├── Pattern.csproj │ ├── PatternBrick.cs │ ├── PatternDescriptor.cs │ ├── PatternTypes.cs │ ├── PatternWeave.cs │ ├── WeaveData.cs │ └── WeaveDirection.cs ├── Picture │ ├── ColorType.cs │ ├── EffectType.cs │ ├── Images │ │ └── EffectImage.png │ ├── Picture.cs │ ├── Picture.csproj │ ├── PictureData.cs │ ├── PictureDescriptor.cs │ ├── PictureSource.cs │ ├── PictureTiles │ │ ├── BlueGlowDots.png │ │ ├── Bubbles.png │ │ ├── Checkers.png │ │ ├── Damask.png │ │ ├── Diamonds.png │ │ ├── Rain.png │ │ ├── Snowflakes1.png │ │ ├── Snowflakes2.png │ │ ├── Stripes1.png │ │ ├── Stripes2.png │ │ ├── TuttiFruitti.png │ │ └── VintageDamask.png │ └── TilePictures.cs ├── PinWheel │ ├── Images │ │ └── EffectImage.png │ ├── MovementType.cs │ ├── PinWheel.cs │ ├── PinWheel.csproj │ ├── PinWheelBladeType.cs │ ├── PinWheelColorType.cs │ ├── PinWheelData.cs │ ├── PinWheelDescriptor.cs │ └── RotationType.cs ├── Plasma │ ├── Images │ │ └── EffectImage.png │ ├── Plasma.cs │ ├── Plasma.csproj │ ├── PlasmaColorType.cs │ ├── PlasmaData.cs │ └── PlasmaDescriptor.cs ├── Prism │ ├── Converters │ │ ├── PrismFixtureIndexConverter.cs │ │ └── PrismFunctionNameConverter.cs │ ├── Images │ │ └── EffectImage.png │ ├── Prism.csproj │ ├── PrismData.cs │ ├── PrismDescriptor.cs │ └── PrismModule.cs ├── Pulse │ ├── Images │ │ └── EffectImage.png │ ├── Pulse.cs │ ├── Pulse.csproj │ ├── PulseData.cs │ ├── PulseDescriptor.cs │ └── PulseRenderer.cs ├── RDS │ ├── Images │ │ └── EffectImage.png │ ├── RDS.csproj │ ├── RDSData.cs │ ├── RDSDescriptor.cs │ └── RDSModule.cs ├── SetLevel │ ├── Images │ │ └── EffectImage.png │ ├── SetLevel.cs │ ├── SetLevel.csproj │ ├── SetLevelData.cs │ └── SetLevelDescriptor.cs ├── SetPosition │ ├── Images │ │ └── EffectImage.png │ ├── SetPosition.csproj │ ├── SetPositionData.cs │ ├── SetPositionDescriptor.cs │ └── SetPositionModule.cs ├── SetZoom │ ├── Images │ │ └── EffectImage.png │ ├── SetZoom.csproj │ ├── SetZoomData.cs │ ├── SetZoomDescriptor.cs │ └── SetZoomModule.cs ├── Shapes │ ├── GeometricShapes.cs │ ├── Images │ │ └── EffectImage.png │ ├── SVGShapes │ │ ├── Christmas │ │ │ ├── Balloon.xml │ │ │ ├── Balloon2.xml │ │ │ ├── Bauble.xml │ │ │ ├── Bauble2.xml │ │ │ ├── Bow.xml │ │ │ ├── CandyCane.xml │ │ │ ├── GingerBreadMan.xml │ │ │ ├── GingerBreadMan2.xml │ │ │ ├── Mistletoe.xml │ │ │ ├── Present.xml │ │ │ ├── Reindeer.xml │ │ │ ├── SantasHat.xml │ │ │ ├── Sleigh.xml │ │ │ ├── SnowFlake.xml │ │ │ ├── SnowFlake2.xml │ │ │ ├── SnowMan.xml │ │ │ ├── SnowMan2.xml │ │ │ ├── Star.xml │ │ │ ├── Stocking.xml │ │ │ ├── Tree.xml │ │ │ ├── Tree2.xml │ │ │ └── Wreath.xml │ │ ├── Geometric │ │ │ ├── ConcaveStar.xml │ │ │ └── Heart.xml │ │ └── Halloween │ │ │ ├── Coffin.xml │ │ │ ├── Cross.xml │ │ │ ├── Cross2.xml │ │ │ ├── Ghost.xml │ │ │ ├── Ghost2.xml │ │ │ ├── Hand.xml │ │ │ ├── HauntedHouse.xml │ │ │ ├── Knife.xml │ │ │ ├── Pumpkin.xml │ │ │ ├── Skull.xml │ │ │ ├── SkullandBone.xml │ │ │ ├── SkullandBone1.xml │ │ │ ├── Spider.xml │ │ │ ├── Tombstone.xml │ │ │ ├── Tombstone2.xml │ │ │ └── Web.xml │ ├── ShapeMode.cs │ ├── ShapeType.cs │ ├── Shapes.cs │ ├── Shapes.csproj │ ├── ShapesData.cs │ ├── ShapesDescriptor.cs │ └── app.config ├── Shockwave │ ├── Images │ │ └── EffectImage.png │ ├── Shockwave.cs │ ├── Shockwave.csproj │ ├── ShockwaveData.cs │ ├── ShockwaveDescriptor.cs │ └── Shockwave_Diamond.cs ├── SnowStorm │ ├── Images │ │ └── EffectImage.png │ ├── SnowStorm.cs │ ├── SnowStorm.csproj │ ├── SnowStormColorType.cs │ ├── SnowStormData.cs │ └── SnowStormDescriptor.cs ├── Snowflakes │ ├── Images │ │ └── EffectImage.png │ ├── SnowflakeColorType.cs │ ├── SnowflakeEffect.cs │ ├── SnowflakeType.cs │ ├── Snowflakes.cs │ ├── Snowflakes.csproj │ ├── SnowflakesData.cs │ └── SnowflakesDescriptor.cs ├── Spin │ ├── Images │ │ └── EffectImage.png │ ├── Spin.cs │ ├── Spin.csproj │ ├── SpinData.cs │ └── SpinDescriptor.cs ├── SpinColorWheel │ ├── Converters │ │ ├── SpinColorWheelFixtureIndexConverter.cs │ │ └── SpinColorWheelFunctionNameConverter.cs │ ├── Images │ │ └── EffectImage.png │ ├── SpinColorWheel.csproj │ ├── SpinColorWheelData.cs │ ├── SpinColorWheelDescriptor.cs │ └── SpinColorWheelModule.cs ├── Spiral │ ├── Images │ │ └── EffectImage.png │ ├── MovementType.cs │ ├── Spiral.cs │ ├── Spiral.csproj │ ├── SpiralData.cs │ ├── SpiralDescriptor.cs │ └── SpiralDirection.cs ├── Spirograph │ ├── ColorType.cs │ ├── Images │ │ └── EffectImage.png │ ├── Spirograph.cs │ ├── Spirograph.csproj │ ├── SpirographData.cs │ └── SpirographDescriptor.cs ├── Strobe │ ├── Images │ │ └── EffectImage.png │ ├── Strobe.cs │ ├── Strobe.csproj │ ├── StrobeData.cs │ ├── StrobeDescriptor.cs │ └── StrobeMode.cs ├── Text │ ├── GradientMode.cs │ ├── Images │ │ └── EffectImage.png │ ├── SerializableFont.cs │ ├── Text.cs │ ├── Text.csproj │ ├── TextData.cs │ ├── TextDescriptor.cs │ ├── TextDirection.cs │ ├── TextDuration.cs │ ├── TextFade.cs │ ├── TextMode.cs │ └── TextSource.cs ├── Tree │ ├── Images │ │ └── EffectImage.png │ ├── Tree.cs │ ├── Tree.csproj │ ├── TreeBranchDirection.cs │ ├── TreeColorType.cs │ ├── TreeData.cs │ └── TreeDescriptor.cs ├── Twinkle │ ├── Images │ │ └── EffectImage.png │ ├── RandomGenerator.cs │ ├── Twinkle.cs │ ├── Twinkle.csproj │ ├── TwinkleColorHandling.cs │ ├── TwinkleData.cs │ └── TwinkleDescriptor.cs ├── VUMeter │ ├── Images │ │ └── EffectImage.png │ ├── VUMeter.cs │ ├── VUMeter.csproj │ ├── VUMeterData.cs │ └── VUMeterDescriptor.cs ├── VerticalMeter │ ├── Images │ │ └── EffectImage.png │ ├── VerticalMeter.cs │ ├── VerticalMeter.csproj │ ├── VerticalMeterData.cs │ └── VerticalMeterDescriptor.cs ├── Video │ ├── EffectColorType.cs │ ├── EffectType.cs │ ├── Images │ │ └── EffectImage.png │ ├── Video.cs │ ├── Video.csproj │ ├── VideoData.cs │ └── VideoDescriptor.cs ├── Wave │ ├── IWaveform │ │ ├── IWaveForm.cs │ │ └── IWaveform.csproj │ └── Wave │ │ ├── EffectImage.png │ │ ├── QueueExtensions.cs │ │ ├── Wave.cs │ │ ├── Wave.csproj │ │ ├── WaveData.cs │ │ ├── WaveDescriptor.cs │ │ ├── WaveFormCollection.cs │ │ ├── Waveform.cs │ │ └── WaveformData.cs ├── Waveform │ ├── Images │ │ └── EffectImage.png │ ├── Waveform.cs │ ├── Waveform.csproj │ ├── WaveformData.cs │ └── WaveformDescriptor.cs ├── Whirlpool │ ├── Whirl │ │ ├── IWhirl.cs │ │ ├── IWhirl.csproj │ │ ├── WhirlpoolColorMode.cs │ │ ├── WhirlpoolDirection.cs │ │ ├── WhirlpoolMode.cs │ │ ├── WhirlpoolRotation.cs │ │ ├── WhirlpoolSideType.cs │ │ └── WhirlpoolStartLocation.cs │ └── Whirlpool │ │ ├── Data │ │ ├── WhirlData.cs │ │ └── WhirlpoolData.cs │ │ ├── Images │ │ └── EffectImage.png │ │ ├── Whirl.cs │ │ ├── WhirlCollection.cs │ │ ├── WhirlVortexMetadata.cs │ │ ├── Whirl_CalculateMethods.cs │ │ ├── Whirl_ConcentricDrawMethods.cs │ │ ├── Whirl_DrawInMethods.cs │ │ ├── Whirl_DrawOutMethods.cs │ │ ├── Whirlpool.cs │ │ ├── Whirlpool.csproj │ │ └── WhirlpoolDescriptor.cs └── Wipe │ ├── ColorHandling.cs │ ├── Images │ └── EffectImage.png │ ├── Wipe.csproj │ ├── WipeData.cs │ ├── WipeDescriptor.cs │ ├── WipeDirection.cs │ ├── WipeModule.cs │ └── WipeMovement.cs ├── EffectEditor └── EffectDescriptorAttributes │ ├── EffectCategoryDescriptors.Designer.cs │ ├── EffectCategoryDescriptors.resx │ ├── EffectDescriptionDescriptors.Designer.cs │ ├── EffectDescriptionDescriptors.resx │ ├── EffectDescriptorAttributes.csproj │ ├── EffectDisplayNameDescriptors.Designer.cs │ ├── EffectDisplayNameDescriptors.resx │ ├── EffectResourceManager.cs │ ├── ProviderCategoryAttribute.cs │ ├── ProviderDescriptionAttribute.cs │ └── ProviderDisplayNameAttribute.cs ├── LayerMixingFilter ├── ChromaKey │ ├── ChromaKey.csproj │ ├── ChromaKeyData.cs │ ├── ChromaKeyModule.cs │ ├── ChromaKeyModuleDescriptor.cs │ ├── ChromaKeySetup.Designer.cs │ ├── ChromaKeySetup.cs │ └── ChromaKeySetup.resx ├── ColorChange │ ├── ColorChange.csproj │ ├── ColorChangeModule.cs │ └── ColorChangeModuleDescriptor.cs ├── Directory.Build.props ├── HighestValue │ ├── HighestValue.csproj │ ├── HighestValueModule.cs │ └── HighestValueModuleDescriptor.cs ├── IntensityOverlay │ ├── IntensityOverlay.cs │ ├── IntensityOverlay.csproj │ └── IntensityOverlayModuleDescriptor.cs ├── LumaKey │ ├── LumaKey.csproj │ ├── LumaKeyData.cs │ ├── LumaKeyModule.cs │ ├── LumaKeyModuleDescriptor.cs │ ├── LumaKeySetup.Designer.cs │ ├── LumaKeySetup.cs │ └── LumaKeySetup.resx ├── Mask │ ├── Mask.csproj │ ├── MaskModule.cs │ └── MaskModuleDescriptor.cs ├── MaskFill │ ├── MaskAndFillData.cs │ ├── MaskAndFillSetup.Designer.cs │ ├── MaskAndFillSetup.cs │ ├── MaskAndFillSetup.resx │ ├── MaskFill.csproj │ ├── MaskFillModule.cs │ └── MaskFillModuleDescriptor.cs ├── MultiplyColor │ ├── MultiplyColor.cs │ ├── MultiplyColor.csproj │ └── MultiplyColorModuleDescriptor.cs └── ProportionalMix │ ├── ProportionalMix.csproj │ ├── ProportionalMixModule.cs │ └── ProportionalMixModuleDescriptor.cs ├── Media ├── Audio │ ├── Audio.cs │ ├── Audio.csproj │ ├── AudioData.cs │ ├── AudioDescriptor.cs │ ├── AudioFilters.cs │ ├── AudioUtilities.cs │ ├── CachedAudioData.cs │ └── SampleProviders │ │ ├── CachedSoundSampleProvider.cs │ │ ├── IPeakProvider.cs │ │ ├── MaxPeakProvider.cs │ │ ├── MonoSampleProvider.cs │ │ ├── PeakProvider.cs │ │ └── Sample.cs └── Directory.Build.props ├── OutputFilter ├── CoarseFineBreakdown │ ├── CoarseFineBreakdown.cs │ ├── CoarseFineBreakdown.csproj │ ├── CoarseFineBreakdownDescriptor.cs │ ├── CoarseFineBreakdownFilter.cs │ ├── CoarseFineBreakdownModule.cs │ └── CoarseFineByteBreakDownOutput.cs ├── ColorBreakdown │ ├── ColorBreakdown.csproj │ ├── ColorBreakdownData.cs │ ├── ColorBreakdownDescriptor.cs │ ├── ColorBreakdownFilter.cs │ ├── ColorBreakdownItem.cs │ ├── ColorBreakdownItemControl.Designer.cs │ ├── ColorBreakdownItemControl.cs │ ├── ColorBreakdownItemControl.resx │ ├── ColorBreakdownMixingFilterBase.cs │ ├── ColorBreakdownModule.cs │ ├── ColorBreakdownSetup.Designer.cs │ ├── ColorBreakdownSetup.cs │ ├── ColorBreakdownSetup.resx │ ├── IBreakdownFilter.cs │ ├── Outputs │ │ ├── ColorBreakdownOutputBase.cs │ │ ├── _16BitColorBreakDownOutput.cs │ │ └── _8BitColorBreakdownOutput.cs │ ├── RGBColorBreakdownMixingFilter.cs │ ├── RGBToRGBWConverter.cs │ └── RGBWColorBreakdownMixingFilter.cs ├── ColorWheelFilter │ ├── ColorWheelFilter.csproj │ ├── ColorWheelFilterData.cs │ ├── ColorWheelFilterDescriptor.cs │ ├── ColorWheelFilterModule.cs │ ├── ColorWheelFilterSetup.Designer.cs │ ├── ColorWheelFilterSetup.cs │ ├── ColorWheelFilterSetup.resx │ ├── Filters │ │ └── ColorWheelFilter.cs │ └── Outputs │ │ └── ColorWheelFilterOutput.cs ├── DimmingCurve │ ├── DimmingCurve.csproj │ ├── DimmingCurveHelper.Designer.cs │ ├── DimmingCurveHelper.cs │ ├── DimmingCurveHelper.resx │ └── DimmingCurveModule.cs ├── DimmingFilter │ ├── DimmingFilter.csproj │ ├── DimmingFilterData.cs │ ├── DimmingFilterDescriptor.cs │ ├── DimmingFilterModule.cs │ ├── DimmingFilterSetup.Designer.cs │ ├── DimmingFilterSetup.cs │ ├── DimmingFilterSetup.resx │ ├── Filters │ │ └── DimmingFilter.cs │ └── Outputs │ │ └── DimmingFilterOutput.cs ├── Directory.Build.props ├── PrismFilter │ ├── Filter │ │ └── PrismFilter.cs │ ├── Output │ │ └── PrismFilterOutput.cs │ ├── PrismFilter.csproj │ ├── PrismFilterData.cs │ ├── PrismFilterDescriptor.cs │ ├── PrismFilterModule.cs │ ├── PrismFilterSetup.Designer.cs │ ├── PrismFilterSetup.cs │ └── PrismFilterSetup.resx ├── ShutterFilter │ ├── Filter │ │ └── ShutterFilter.cs │ ├── Output │ │ └── ShuttterFilterOutput.cs │ ├── ShutterFilter.csproj │ ├── ShutterFilterData.cs │ ├── ShutterFilterDescriptor.cs │ ├── ShutterFilterModule.cs │ ├── ShutterFilterSetup.Designer.cs │ ├── ShutterFilterSetup.cs │ └── ShutterFilterSetup.resx └── TaggedFilter │ ├── Filters │ ├── ITaggedFilter.cs │ ├── TaggedFilter.cs │ └── TaggedFilterBase.cs │ ├── ITaggedFilterData.cs │ ├── Outputs │ ├── ITaggedFilterOutput.cs │ ├── TaggedFilterOutput.cs │ └── TaggedFilterOutputBase.cs │ ├── TaggedFilter.csproj │ ├── TaggedFilterData.cs │ ├── TaggedFilterDataBase.cs │ ├── TaggedFilterDescriptor.cs │ ├── TaggedFilterDescriptorBase.cs │ ├── TaggedFilterModule.cs │ ├── TaggedFilterModuleBase.cs │ ├── TaggedFilterSetup.Designer.cs │ ├── TaggedFilterSetup.cs │ └── TaggedFilterSetup.resx ├── Preview ├── Directory.Build.props └── VixenPreview │ ├── Converter │ └── PropertySorter.cs │ ├── DebugTimer.cs │ ├── GDIPreview │ ├── GDIControl.Designer.cs │ ├── GDIControl.cs │ ├── GDIControl.resx │ ├── GDIPreviewForm.Designer.cs │ ├── GDIPreviewForm.cs │ └── GDIPreviewForm.resx │ ├── Graphics │ └── Flood.png │ ├── IDisplayForm.cs │ ├── LocationOffsetForm.Designer.cs │ ├── LocationOffsetForm.cs │ ├── LocationOffsetForm.resx │ ├── OpenGL │ ├── Background.cs │ ├── Camera.cs │ ├── Constructs │ │ ├── GLUtility.cs │ │ ├── Shaders │ │ │ ├── GlslLexer.cs │ │ │ ├── ParamType.cs │ │ │ ├── ProgramParam.cs │ │ │ ├── Shader.cs │ │ │ ├── ShaderProgram.cs │ │ │ └── Texture.cs │ │ └── Vertex │ │ │ └── VBO.cs │ ├── Drawable.cs │ ├── Extensions │ │ └── GlExtensions.cs │ ├── OpenGLPreviewForm.Designer.cs │ ├── OpenGLPreviewForm.cs │ └── OpenGLPreviewForm.resx │ ├── PreviewCustomPropBuilder.cs │ ├── PreviewPixelSetupForm.Designer.cs │ ├── PreviewPixelSetupForm.cs │ ├── PreviewPixelSetupForm.resx │ ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ResizePreviewForm.Designer.cs │ ├── ResizePreviewForm.cs │ ├── ResizePreviewForm.resx │ ├── Resources │ ├── DoubleRotate.ico │ ├── Flood.png │ ├── FloodImage.png │ ├── InsertMode.ico │ ├── Lips.jpg │ ├── locked.png │ ├── unlocked.png │ └── unlockedAll.png │ ├── SelectionDialog │ ├── SelectFixtureNodeView.cs │ ├── SelectFixtureNodeView.xaml │ └── SelectFixtureNodeViewModel.cs │ ├── Shapes │ ├── DiscreteIntentHandler.cs │ ├── DisplayItem.cs │ ├── DisplayItemBaseControl.Designer.cs │ ├── DisplayItemBaseControl.cs │ ├── DisplayItemBaseControl.resx │ ├── FullColorIntentHandler.cs │ ├── IDrawStaticPreviewShape.cs │ ├── IOpenGLMovingHeadShape.cs │ ├── MovingHeadIntentHandler.cs │ ├── MovingHeadTimer.cs │ ├── PreviewArch.cs │ ├── PreviewArchSetupControl.cs │ ├── PreviewBaseShape.cs │ ├── PreviewCane.cs │ ├── PreviewCaneSetupControl.cs │ ├── PreviewCustom.cs │ ├── PreviewCustomCreateForm.Designer.cs │ ├── PreviewCustomCreateForm.cs │ ├── PreviewCustomCreateForm.resx │ ├── PreviewCustomDefineDisplayItems.Designer.cs │ ├── PreviewCustomDefineDisplayItems.cs │ ├── PreviewCustomDefineDisplayItems.resx │ ├── PreviewCustomProp.cs │ ├── PreviewCustomSetupControl.Designer.cs │ ├── PreviewCustomSetupControl.cs │ ├── PreviewCustomSetupControl.resx │ ├── PreviewDoublePoint.cs │ ├── PreviewEllipse.cs │ ├── PreviewFlood.cs │ ├── PreviewIcicle.cs │ ├── PreviewIcicleSetupControl.cs │ ├── PreviewLightBaseShape.cs │ ├── PreviewLine.cs │ ├── PreviewMegaTree.cs │ ├── PreviewMovingHead.cs │ ├── PreviewMovingHeadPartial.cs │ ├── PreviewMovingHeadSetupControl.cs │ ├── PreviewMovingHeadSetupControl.resx │ ├── PreviewMultiString.cs │ ├── PreviewNet.cs │ ├── PreviewNetSetupControl.cs │ ├── PreviewPixel.cs │ ├── PreviewPixelGrid.cs │ ├── PreviewPoint.cs │ ├── PreviewPolyLine.cs │ ├── PreviewRectangle.cs │ ├── PreviewSetElementString.cs │ ├── PreviewSetElements.Designer.cs │ ├── PreviewSetElements.cs │ ├── PreviewSetElements.resx │ ├── PreviewSetElementsUIEditor.cs │ ├── PreviewSetFixtureElementUIEditor.cs │ ├── PreviewShapeBaseSetupControl.Designer.cs │ ├── PreviewShapeBaseSetupControl.cs │ ├── PreviewShapeBaseSetupControl.resx │ ├── PreviewSingle.cs │ ├── PreviewStar.cs │ ├── PreviewStarBurst.cs │ ├── PreviewStarSetupControl.cs │ ├── PreviewTools.cs │ └── PreviewTriangle.cs │ ├── TemplateComboBoxItem.cs │ ├── TemplateDialog.Designer.cs │ ├── TemplateDialog.cs │ ├── TemplateDialog.resx │ ├── Undo │ ├── PreviewItemPixelSizeChangeUndoAction.cs │ ├── PreviewItemPixelSizeInfo.cs │ ├── PreviewItemPositionInfo.cs │ ├── PreviewItemResizeMoveInfo.cs │ ├── PreviewItemsAddedRemovedUndoAction.cs │ ├── PreviewItemsAddedUndoAction.cs │ ├── PreviewItemsCutUndoAction.cs │ ├── PreviewItemsGroupAddedSeparateUndoAction.cs │ ├── PreviewItemsGroupAddedUndoAction.cs │ ├── PreviewItemsGroupSeparateAction.cs │ ├── PreviewItemsLockUndoAction.cs │ ├── PreviewItemsMoveUndoAction.cs │ ├── PreviewItemsPasteUndoAction.cs │ ├── PreviewItemsRemovedUndoAction.cs │ └── PreviewItemsResizeUndoAction.cs │ ├── VixenPreview.csproj │ ├── VixenPreviewControl.Designer.cs │ ├── VixenPreviewControl.cs │ ├── VixenPreviewControl.resx │ ├── VixenPreviewData.cs │ ├── VixenPreviewDescriptor.cs │ ├── VixenPreviewModuleInstance.Designer.cs │ ├── VixenPreviewModuleInstance.cs │ ├── VixenPreviewModuleInstance.resx │ ├── VixenPreviewSetup3.Designer.cs │ ├── VixenPreviewSetup3.cs │ ├── VixenPreviewSetup3.resx │ ├── VixenPreviewSetupDocument.Designer.cs │ ├── VixenPreviewSetupDocument.cs │ ├── VixenPreviewSetupDocument.resx │ ├── VixenPreviewSetupElementsDocument.Designer.cs │ ├── VixenPreviewSetupElementsDocument.cs │ ├── VixenPreviewSetupElementsDocument.resx │ ├── VixenPreviewSetupPropertiesDocument.Designer.cs │ ├── VixenPreviewSetupPropertiesDocument.cs │ └── VixenPreviewSetupPropertiesDocument.resx ├── Property ├── Color │ ├── Color.csproj │ ├── ColorData.cs │ ├── ColorDescriptor.cs │ ├── ColorPanel.Designer.cs │ ├── ColorPanel.cs │ ├── ColorPanel.resx │ ├── ColorProperty.cs │ ├── ColorSetsSetupForm.Designer.cs │ ├── ColorSetsSetupForm.cs │ ├── ColorSetsSetupForm.resx │ ├── ColorSetupForm.Designer.cs │ ├── ColorSetupForm.cs │ ├── ColorSetupForm.resx │ ├── ColorSetupHelper.Designer.cs │ ├── ColorSetupHelper.cs │ ├── ColorSetupHelper.resx │ └── ColorStaticData.cs ├── Directory.Build.props ├── Face │ ├── Face.csproj │ ├── FaceComponent.cs │ ├── FaceData.cs │ ├── FaceDescriptor.cs │ ├── FaceMapItem.cs │ ├── FaceModule.cs │ ├── FaceSetupHelper.Designer.cs │ ├── FaceSetupHelper.cs │ └── FaceSetupHelper.resx ├── Grid │ ├── Data.cs │ ├── Descriptor.cs │ ├── Grid.csproj │ ├── Module.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── IntelligentFixture │ ├── IntelligentFixture.csproj │ ├── IntelligentFixtureData.cs │ ├── IntelligentFixtureDescriptor.cs │ └── IntelligentFixtureModule.cs ├── Location │ ├── Location.csproj │ ├── LocationData.cs │ ├── LocationDescriptor.cs │ ├── LocationModule.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── Order │ ├── Order.csproj │ ├── OrderData.cs │ ├── OrderDescriptor.cs │ ├── OrderModule.cs │ ├── OrderSetupHelper.Designer.cs │ ├── OrderSetupHelper.cs │ ├── OrderSetupHelper.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx └── Orientation │ ├── Orientation.cs │ ├── Orientation.csproj │ ├── OrientationData.cs │ ├── OrientationDescriptor.cs │ ├── OrientationModule.cs │ ├── OrientationSetupHelper.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── Sequence ├── Directory.Build.props ├── Timed │ ├── ColorCollection.cs │ ├── Executor.cs │ ├── MarkCollection.cs │ ├── RowSetting.cs │ ├── RowSettings.cs │ ├── Timed.csproj │ ├── TimedSequence.cs │ ├── TimedSequenceCache.cs │ ├── TimedSequenceData.cs │ ├── TimedSequenceDescriptor.cs │ ├── TimedSequenceMigrator.cs │ └── TimedSequenceTypeModule.cs └── Vixen2x │ ├── ChannelMapping.cs │ ├── CoversionProgressForm.Designer.cs │ ├── CoversionProgressForm.cs │ ├── CoversionProgressForm.resx │ ├── Vixen2SequenceData.cs │ ├── Vixen2x.csproj │ ├── Vixen2xSequenceDescriptor.cs │ ├── Vixen2xSequenceImportSM.cs │ ├── Vixen2xSequenceImporterChannelMapper.Designer.cs │ ├── Vixen2xSequenceImporterChannelMapper.cs │ ├── Vixen2xSequenceImporterChannelMapper.resx │ ├── Vixen2xSequenceImporterForm.Designer.cs │ ├── Vixen2xSequenceImporterForm.cs │ ├── Vixen2xSequenceImporterForm.resx │ ├── Vixen2xSequenceMigrator.cs │ ├── Vixen2xSequenceStaticData.cs │ ├── Vixen2xSequenceTypeModule.cs │ └── Vixen3SequenceCreator.cs └── Timing ├── Directory.Build.props └── Generic ├── Descriptor.cs ├── Generic.csproj └── Module.cs /.github/workflows/compile_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/.github/workflows/compile_test.yml -------------------------------------------------------------------------------- /.github/workflows/release_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/.github/workflows/release_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/.gitignore -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/.tgitconfig -------------------------------------------------------------------------------- /Assets/Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Assets/Editor.png -------------------------------------------------------------------------------- /Assets/Vixen3-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Assets/Vixen3-Logo.png -------------------------------------------------------------------------------- /Build/CreateGithubRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/CreateGithubRelease.ps1 -------------------------------------------------------------------------------- /Build/CreateReleaseNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/CreateReleaseNotes.ps1 -------------------------------------------------------------------------------- /Build/dotnet-setversion/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/dotnet-setversion/CommandLine.dll -------------------------------------------------------------------------------- /Build/dotnet-setversion/dotnet-setversion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/dotnet-setversion/dotnet-setversion.dll -------------------------------------------------------------------------------- /Build/dotnet-setversion/dotnet-setversion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/dotnet-setversion/dotnet-setversion.exe -------------------------------------------------------------------------------- /Build/github-release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Build/github-release.exe -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Installer/README.md -------------------------------------------------------------------------------- /Installer/Redist/VC_redist.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Installer/Redist/VC_redist.x64.exe -------------------------------------------------------------------------------- /Installer/Redist/VC_redist.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Installer/Redist/VC_redist.x86.exe -------------------------------------------------------------------------------- /Installer/vixen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Installer/vixen.bmp -------------------------------------------------------------------------------- /Installer/vixen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Installer/vixen.ico -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/README.md -------------------------------------------------------------------------------- /Release Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Release Notes.txt -------------------------------------------------------------------------------- /Vixen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Vixen.sln -------------------------------------------------------------------------------- /Vixen.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/Vixen.sln.DotSettings -------------------------------------------------------------------------------- /sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/sandbox/README.md -------------------------------------------------------------------------------- /sandbox/sandbox.wsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/sandbox/sandbox.wsb -------------------------------------------------------------------------------- /sandbox/scripts/patch-sandbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/sandbox/scripts/patch-sandbox.ps1 -------------------------------------------------------------------------------- /sandbox/scripts/startup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/sandbox/scripts/startup.bat -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Vixen.Application/AboutVixen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/AboutVixen.Designer.cs -------------------------------------------------------------------------------- /src/Vixen.Application/AboutVixen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/AboutVixen.cs -------------------------------------------------------------------------------- /src/Vixen.Application/AboutVixen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/AboutVixen.resx -------------------------------------------------------------------------------- /src/Vixen.Application/CheckForUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/CheckForUpdates.cs -------------------------------------------------------------------------------- /src/Vixen.Application/CheckForUpdates.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/CheckForUpdates.resx -------------------------------------------------------------------------------- /src/Vixen.Application/ConfigPreviews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/ConfigPreviews.cs -------------------------------------------------------------------------------- /src/Vixen.Application/ConfigPreviews.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/ConfigPreviews.resx -------------------------------------------------------------------------------- /src/Vixen.Application/CpuUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/CpuUsage.cs -------------------------------------------------------------------------------- /src/Vixen.Application/DataProfileForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/DataProfileForm.cs -------------------------------------------------------------------------------- /src/Vixen.Application/DataProfileForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/DataProfileForm.resx -------------------------------------------------------------------------------- /src/Vixen.Application/DataZipForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/DataZipForm.Designer.cs -------------------------------------------------------------------------------- /src/Vixen.Application/DataZipForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/DataZipForm.cs -------------------------------------------------------------------------------- /src/Vixen.Application/DataZipForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/DataZipForm.resx -------------------------------------------------------------------------------- /src/Vixen.Application/InstalledModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/InstalledModules.cs -------------------------------------------------------------------------------- /src/Vixen.Application/InstalledModules.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/InstalledModules.resx -------------------------------------------------------------------------------- /src/Vixen.Application/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/NLog.config -------------------------------------------------------------------------------- /src/Vixen.Application/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/NLog.xsd -------------------------------------------------------------------------------- /src/Vixen.Application/NLogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/NLogListener.cs -------------------------------------------------------------------------------- /src/Vixen.Application/OptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/OptionsDialog.cs -------------------------------------------------------------------------------- /src/Vixen.Application/OptionsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/OptionsDialog.resx -------------------------------------------------------------------------------- /src/Vixen.Application/ProfileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/ProfileItem.cs -------------------------------------------------------------------------------- /src/Vixen.Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/Program.cs -------------------------------------------------------------------------------- /src/Vixen.Application/ReleaseNotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/ReleaseNotes.cs -------------------------------------------------------------------------------- /src/Vixen.Application/ReleaseNotes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/ReleaseNotes.resx -------------------------------------------------------------------------------- /src/Vixen.Application/Resources/V3Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/Resources/V3Logo.png -------------------------------------------------------------------------------- /src/Vixen.Application/SelectProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/SelectProfile.cs -------------------------------------------------------------------------------- /src/Vixen.Application/SelectProfile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/SelectProfile.resx -------------------------------------------------------------------------------- /src/Vixen.Application/Setup/DisplaySetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/Setup/DisplaySetup.cs -------------------------------------------------------------------------------- /src/Vixen.Application/Setup/DisplaySetup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/Setup/DisplaySetup.resx -------------------------------------------------------------------------------- /src/Vixen.Application/Vixen3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/Vixen3.ico -------------------------------------------------------------------------------- /src/Vixen.Application/VixenApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/VixenApplication.cs -------------------------------------------------------------------------------- /src/Vixen.Application/VixenApplication.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/VixenApplication.resx -------------------------------------------------------------------------------- /src/Vixen.Application/VixenApplicationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/VixenApplicationData.cs -------------------------------------------------------------------------------- /src/Vixen.Application/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Application/app.config -------------------------------------------------------------------------------- /src/Vixen.Common/AudioPlayer/AudioDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/AudioPlayer/AudioDevice.cs -------------------------------------------------------------------------------- /src/Vixen.Common/AudioPlayer/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/AudioPlayer/Extensions.cs -------------------------------------------------------------------------------- /src/Vixen.Common/AudioPlayer/IPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/AudioPlayer/IPlayer.cs -------------------------------------------------------------------------------- /src/Vixen.Common/AudioPlayer/PlayerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/AudioPlayer/PlayerFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Common/BaseSequence/IFileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/BaseSequence/IFileLoader.cs -------------------------------------------------------------------------------- /src/Vixen.Common/BaseSequence/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/BaseSequence/Sequence.cs -------------------------------------------------------------------------------- /src/Vixen.Common/BaseSequence/SequenceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/BaseSequence/SequenceData.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Box2D.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Box2D.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Box2D.vcxproj -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Collision/b2Distance.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2FreeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2FreeList.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2FreeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2FreeList.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Settings.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Stat.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Stat.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Particle/b2Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Particle/b2Particle.h -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /src/Vixen.Common/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /src/Vixen.Common/Broadcast/Broadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Broadcast/Broadcast.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Broadcast/Broadcast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Broadcast/Broadcast.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/BaseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/BaseForm.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/BaseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/BaseForm.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/BaseUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/BaseUserControl.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ComboBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ComboBoxItem.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ControllerTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ControllerTree.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ControllerTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ControllerTree.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/Controls.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ElementTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ElementTree.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ElementTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ElementTree.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ListSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ListSelectDialog.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/MenuStripEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/MenuStripEx.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/MessageBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/MessageBoxForm.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/MessageBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/MessageBoxForm.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/NumberDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/NumberDialog.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/NumberDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/NumberDialog.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/NumericTextBox.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/PictureComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/PictureComboBox.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/RoundButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/RoundButton.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/SerialPortConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/SerialPortConfig.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/TextDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/TextDialog.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/TextDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/TextDialog.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/TextProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/TextProgressBar.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/TimeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/TimeControl.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/TimeControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/TimeControl.resx -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/ToolStripEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/ToolStripEx.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/Undo/UndoAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/Undo/UndoAction.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/Undo/UndoButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/Undo/UndoButton.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/Undo/UndoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/Undo/UndoManager.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/Wizard/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/Wizard/Wizard.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Controls/cEventHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Controls/cEventHelper.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Directory.Build.props -------------------------------------------------------------------------------- /src/Vixen.Common/FastPixel/FastPixel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/FastPixel/FastPixel.cs -------------------------------------------------------------------------------- /src/Vixen.Common/FastPixel/FastPixel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/FastPixel/FastPixel.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Help/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Help/Help.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Help/Help.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Help/Help.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/Libraries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/Libraries.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/QuickFont.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/QuickFont.dll -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/SharpFont.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/SharpFont.dll -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/SoundTouch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/SoundTouch.dll -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/SoundTouch_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/SoundTouch_x64.dll -------------------------------------------------------------------------------- /src/Vixen.Common/Libraries/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Libraries/freetype6.dll -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/AdoNetStore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/AdoNetStore.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/AdoNetStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/AdoNetStore.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Buffers.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/CachedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/CachedRepository.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Caption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Caption.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/CircularArcBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/CircularArcBase.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Collections.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Command.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Core.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/CursorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/CursorProvider.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Dataweb.NShape.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Dataweb.NShape.snk -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Design.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Design.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/DesignController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/DesignController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Diagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Diagram.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/DiagramController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/DiagramController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/DiagramPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/DiagramPresenter.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/DiameterShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/DiameterShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/EmfHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/EmfHelper.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Entity.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Exceptions.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/FlowLayouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/FlowLayouter.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/FreeHandTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/FreeHandTool.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/FuzzyLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/FuzzyLogic.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/GdiHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/GdiHelpers.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Geometry.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/GridLayouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/GridLayouter.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/History.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ImageBasedShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ImageBasedShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Layer.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/LayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/LayerController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/LayerPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/LayerPresenter.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Layouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Layouter.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/LinearShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/LinearShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/MenuItemDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/MenuItemDef.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Model.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ModelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ModelController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/MultiHashList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/MultiHashList.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/NShape.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/NShape.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Optimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Optimizer.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/PathBasedShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/PathBasedShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/PolyLineBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/PolyLineBase.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Polygone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Polygone.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Project.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Project.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Project.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/PropertyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/PropertyController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/PropertyMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/PropertyMappings.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/RectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/RectangleShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Repository.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/CopyBtn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/CopyBtn.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/CutBtn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/CutBtn.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/Enabled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/Enabled.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/RedoBtn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/RedoBtn.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/UndoBtn.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/UndoBtn.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Resources/Visible.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Resources/Visible.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Security.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Shape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeAggregation.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeBase.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeDuplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeDuplicator.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeGroup.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeType.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ShapeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ShapeUtils.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Shaper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Shaper.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/SqlStore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/SqlStore.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/SqlStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/SqlStore.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Store.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Styles.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Template.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/TemplateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/TemplateController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/TextMeasurer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/TextMeasurer.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/TextShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/TextShape.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/Tool.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ToolCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ToolCache.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/ToolSetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/ToolSetController.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/TriangleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/TriangleBase.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/XmlStore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/XmlStore.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShape/XmlStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShape/XmlStore.cs -------------------------------------------------------------------------------- /src/Vixen.Common/NShapeWinFormsUI/Display.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShapeWinFormsUI/Display.bmp -------------------------------------------------------------------------------- /src/Vixen.Common/NShapeWinFormsUI/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/NShapeWinFormsUI/Display.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Preferences/IPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Preferences/IPreference.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/BlueBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/BlueBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Close_6519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Close_6519.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/GreenBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/GreenBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/GreyBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/GreyBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/AI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/AI.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/E.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/E.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/FV.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/FV.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/L.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/L.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/MBP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/MBP.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/O.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/O.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/Tools.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/U.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/U.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/WQ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/WQ.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/etc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/etc.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/LipSync/rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/LipSync/rest.jpg -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/MarkBarVisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/MarkBarVisible.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/NewFile_6276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/NewFile_6276.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Open_6529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Open_6529.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Prop_Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Prop_Add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Prop_Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Prop_Edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/RedBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/RedBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Resources.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Resources/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Resources/Exit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Resources/Save.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Resources/open.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Save_6530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Save_6530.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Saveall_6518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Saveall_6518.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Split.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/StarBurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/StarBurst.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Tools.cs -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/Vixen3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/Vixen3.ico -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/WhiteBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/WhiteBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/YellowBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/YellowBall.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/accept.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/alignBoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/alignBoth.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/alignCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/alignCenter.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/alignEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/alignEnd.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/alignStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/alignStart.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/alignment.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_branch.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_divide.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_down.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_in.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_inout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_inout.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_join.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_left.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_merge.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_out.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_redo.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_refresh.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_repeat.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_right.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_switch.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_undo.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/arrow_up.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_black.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_blue.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_green.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_orange.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_pink.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_purple.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_white.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/bullet_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/bullet_yellow.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/check-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/check-mark.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clipboard_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clipboard_sign.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_15.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_45.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_error.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_link.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_pause.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_play.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_red.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/clock_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/clock_stop.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_error.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_error_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_error_red.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cog_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cog_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/collection.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/colors.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_end.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_pause.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_play.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_rewind.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_start.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/control_stop.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/controlbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/controlbar.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/copySelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/copySelect.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cursor_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cursor_arrow.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/cut.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/data_chooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/data_chooser.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/data_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/data_field.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/data_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/data_grid.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/data_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/data_sort.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/data_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/data_table.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/disk.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/divide.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_empty.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_font.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_green.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_image.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_index.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_info.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_move.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_next.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_notes.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_num.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_red.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/document_shred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/document_shred.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/effects.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/fill_gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/fill_gaps.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/filter.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/filter_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/filter_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/filter_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/filter_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_error.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_explore.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/folder_open.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/group.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/help.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/hourglass.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/hourglass_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/hourglass_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/hourglass_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/hourglass_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/hourglass_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/hourglass_link.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/layers.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightbulb.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightbulb_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightbulb_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightbulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightbulb_off.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightning.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightning_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightning_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/lightning_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/lightning_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/magnet.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/magnifier.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/menu.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/menu_item.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/menubar.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/messenger.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/minus.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/music.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/page_copy.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/paste_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/paste_plain.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/pencil.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/pencil_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/pencil_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/pencil_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/pencil_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/pencil_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/pencil_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/pencil_ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/pencil_ruler.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/plus.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/randomColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/randomColors.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound_low.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound_mute.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/sound_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/sound_none.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_content.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tab_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tab_side.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/tabbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/tabbar.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_chart.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_error.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_excel.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_export.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_gear.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_heatmap.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_heatmap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_heatmap2.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_import.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_insert.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_key.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_link.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_money.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_multiple.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_refresh.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_replace.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_save.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_select.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_sheet.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_sort.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_split.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_sum.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_tab.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/table_torn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/table_torn.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar_add.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar_delete.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar_edit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar_error.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/toolbar_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/toolbar_go.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_actual.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_extend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_extend.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_fit.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_in.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_last.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_out.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_refresh.png -------------------------------------------------------------------------------- /src/Vixen.Common/Resources/zoom_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Resources/zoom_selection.png -------------------------------------------------------------------------------- /src/Vixen.Common/Utilities/Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/Utilities/Utilities.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/ValueTypes/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ValueTypes/FilePath.cs -------------------------------------------------------------------------------- /src/Vixen.Common/ValueTypes/Percentage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ValueTypes/Percentage.cs -------------------------------------------------------------------------------- /src/Vixen.Common/ValueTypes/ValueTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ValueTypes/ValueTypes.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/WPFCommon/Theme/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WPFCommon/Theme/Brushes.xaml -------------------------------------------------------------------------------- /src/Vixen.Common/WPFCommon/Theme/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WPFCommon/Theme/Menu.xaml -------------------------------------------------------------------------------- /src/Vixen.Common/WPFCommon/Theme/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WPFCommon/Theme/Theme.xaml -------------------------------------------------------------------------------- /src/Vixen.Common/WPFCommon/WPFCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WPFCommon/WPFCommon.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/WpfPropertyGrid/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WpfPropertyGrid/Editor.cs -------------------------------------------------------------------------------- /src/Vixen.Common/WpfPropertyGrid/GridEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WpfPropertyGrid/GridEntry.cs -------------------------------------------------------------------------------- /src/Vixen.Common/WpfPropertyGrid/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/WpfPropertyGrid/License.txt -------------------------------------------------------------------------------- /src/Vixen.Common/ffmpeg/ffmpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ffmpeg/ffmpeg.cs -------------------------------------------------------------------------------- /src/Vixen.Common/ffmpeg/ffmpeg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ffmpeg/ffmpeg.csproj -------------------------------------------------------------------------------- /src/Vixen.Common/ffmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Common/ffmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /src/Vixen.Core/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Annotations.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Attributes/OffsetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Attributes/OffsetAttribute.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Cache/Event/CacheEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Cache/Event/CacheEventArgs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/16BitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/16BitCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/32BitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/32BitCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/64BitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/64BitCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/8BitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/8BitCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/ColorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/ColorCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/CommandExtensions.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/FixtureIndexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/FixtureIndexType.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/Named8BitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/Named8BitCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Commands/StringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Commands/StringCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Common/ColorSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Common/ColorSpaces.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Common/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Common/Graphics.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Combinator/Combinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Combinator/Combinator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Evaluator/Evaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Evaluator/Evaluator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Flow/DataFlowPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Flow/DataFlowPatch.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Flow/DataFlowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Flow/DataFlowType.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Flow/IDataFlowData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Flow/IDataFlowData.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Flow/IDataFlowOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Flow/IDataFlowOutput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/CommandValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/CommandValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/DiscreteValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/DiscreteValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/FunctionIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/FunctionIdentity.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/IIntentDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/IIntentDataType.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/IntensityValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/IntensityValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/LightingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/LightingValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/RGBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/RGBValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Data/Value/RangeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Data/Value/RangeValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Delegates/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Delegates/Delegates.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Directory.Build.props -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ContextCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ContextCaching.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ContextFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ContextFeatures.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ContextTargetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ContextTargetType.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/EffectNodeQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/EffectNodeQueue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/IContext.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/IExecutionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/IExecutionControl.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/IExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/IExecutor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/IProgramExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/IProgramExecutor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ISequenceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ISequenceExecutor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ITimingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ITimingProvider.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/ProgramExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/ProgramExecutor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Execution/TimingProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Execution/TimingProviders.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/CSVWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/CSVWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/ESEQWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/ESEQWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/Export.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/ExportCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/ExportCommandHandler.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/ExportProgressStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/ExportProgressStatus.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/ExportWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/ExportWriterBase.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/BoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/BoolConverter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/ChannelOutputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/ChannelOutputs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/ConfigWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/ConfigWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/OutputTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/OutputTypes.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/Universe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/Universe.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/UniverseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/UniverseTypes.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FPP/VariableHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FPP/VariableHeader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FSEQCompressedWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FSEQCompressedWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/FSEQWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/FSEQWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/HelixWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/HelixWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/IExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/IExport.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/Vir2Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/Vir2Writer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Export/Vix2Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Export/Vix2Writer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Extensions/Extensions.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Factory/ControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Factory/ControllerFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Factory/IOutputFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Factory/IOutputFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Factory/IntentOutputFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Factory/IntentOutputFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Factory/PreviewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Factory/PreviewFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Fonts/DigitalDream.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Fonts/DigitalDream.ttf -------------------------------------------------------------------------------- /src/Vixen.Core/Fonts/RadioLand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Fonts/RadioLand.ttf -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Binary/BinaryFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Binary/BinaryFileReader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Binary/BinaryFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Binary/BinaryFileWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/EmptyMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/EmptyMigrator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Factory/ILoaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Factory/ILoaderFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Factory/LoaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Factory/LoaderFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Factory/PersistorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Factory/PersistorFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/FileCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/FileCompressor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IContentMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IContentMigrator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IFileReader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IFileWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IMigrationSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IMigrationSegment.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectContentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectContentReader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectContentWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectLoader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectMigratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectMigratorService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectPersistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectPersistor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/IObjectPersistorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/IObjectPersistorService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/ISerializer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/JSON/ElementTreeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/JSON/ElementTreeReader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/JSON/ElementTreeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/JSON/ElementTreeWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Loader/ModuleStoreLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Loader/ModuleStoreLoader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Loader/ProgramLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Loader/ProgramLoader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Loader/SequenceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Loader/SequenceLoader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/MigrationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/MigrationPath.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/MigrationSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/MigrationSegment.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/ObjectMigratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/ObjectMigratorService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/ObjectPersistorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/ObjectPersistorService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/ObjectVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/ObjectVersion.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Policy/IFilePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Policy/IFilePolicy.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Policy/ProgramFilePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Policy/ProgramFilePolicy.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Xml/XElementFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Xml/XElementFileReader.cs -------------------------------------------------------------------------------- /src/Vixen.Core/IO/Xml/XElementFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/IO/Xml/XElementFileWriter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Instrumentation/CountValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Instrumentation/CountValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Instrumentation/DoubleValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Instrumentation/DoubleValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Instrumentation/RateValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Instrumentation/RateValue.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/CommandIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/CommandIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/IntentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/IntentBuilder.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/IntentHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/IntentHelpers.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/LightingIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/LightingIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/RGBIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/RGBIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/RangeIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/RangeIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/StaticArrayIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/StaticArrayIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/StaticIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/StaticIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/StaticIntentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/StaticIntentState.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Intent/StaticLightingIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Intent/StaticLightingIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Interpolator/Interpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Interpolator/Interpolator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Marks/IMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Marks/IMark.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Marks/IMarkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Marks/IMarkCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Marks/IMarkDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Marks/IMarkDecorator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Marks/IMarkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Marks/IMarkType.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Analysis/IAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Analysis/IAnalysis.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/App/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/App/IApp.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Editor/IEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Editor/IEditor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Editor/ISelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Editor/ISelection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Effect/IEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Effect/IEffect.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleConsumer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleDataModel.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleDataRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleDataRetriever.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleDataSet.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleDescriptor.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleInstance.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleManagement.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/IModuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/IModuleRepository.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Input/IInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Input/IInput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Input/IInputInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Input/IInputInput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Input/InputEffectMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Input/InputEffectMap.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Input/InputInputBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Input/InputInputBase.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Media/IMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Media/IMedia.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleConsumer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleDataModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleDataModelBase.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleDataSet.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleDescriptorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleDescriptorBase.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleImplementation.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleInstanceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleInstanceBase.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleLocalDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleLocalDataSet.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleManagement.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleRepository.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/ModuleStaticDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/ModuleStaticDataSet.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Preview/IPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Preview/IPreview.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Property/IProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Property/IProperty.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Service/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Service/IService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/SingletonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/SingletonRepository.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Timing/ITiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Timing/ITiming.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Trigger/ITrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Trigger/ITrigger.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Module/Trigger/TriggerInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Module/Trigger/TriggerInput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/IElementSetupHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/IElementSetupHelper.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/IElementTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/IElementTemplate.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/INamingGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/INamingGenerator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/INamingTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/INamingTemplate.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/IPatchingRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/IPatchingRule.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/Name/LetterCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/Name/LetterCounter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/Name/LetterIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/Name/LetterIterator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/Name/NumericCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/Name/NumericCounter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Rule/Name/WordIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Rule/Name/WordIterator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/EditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/EditorService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/EffectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/EffectService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/ElementNodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/ElementNodeService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/FileService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/IFileService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/MediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/MediaService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/SequenceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/SequenceService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Services/TimingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Services/TimingService.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/AppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/AppCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ContextEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ContextEventArgs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/DataNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/DataNodeCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/DataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/DataStream.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/DataStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/DataStreams.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/DefaultValueArrayMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/DefaultValueArrayMember.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/DelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/DelegateFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Dispatch/IntentDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Dispatch/IntentDispatch.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Dispatchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Dispatchable.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/EffectIntents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/EffectIntents.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/EffectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/EffectNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Element.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementContextSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementContextSource.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementIntentStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementIntentStates.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementIntents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementIntents.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementNodeProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementNodeProxy.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementNodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementNodeTemplate.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementProxy.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ElementStateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ElementStateSource.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Execution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Execution.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Extensions.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/FilePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/FilePackage.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/FilterChildren.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/FilterChildren.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/GroupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/GroupNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Helper.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IApplication.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ICombinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ICombinator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IDataModel.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IDataNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IDataPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IDataPolicy.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IDataPolicyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IDataPolicyFactory.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IElementNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IElementNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IElementStateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IElementStateSource.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IEvaluator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IGroupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IGroupNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHardware.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHardwareModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHardwareModule.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasLayers.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasMarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasMarks.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasMedia.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasOutputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasOutputs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasSequenceFilterNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasSequenceFilterNodes.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IHasSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IHasSetup.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IIntent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IIntent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IIntentSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IIntentSegment.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IIntentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IIntentState.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IIntentStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IIntentStates.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IOutputStateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IOutputStateSource.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IPackageFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IPackageFileContent.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IProgram.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IRuns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IRuns.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ISegmentCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ISegmentCreator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ISequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ISequence.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ISequenceTypeDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ISequenceTypeDataModel.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IStateCombinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IStateCombinator.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IStateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IStateSource.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IStateSourceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IStateSourceCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ITypeAffector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ITypeAffector.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/InsertDataStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/InsertDataStack.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentChangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentChangeCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentNodeCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentSegment.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentSegmentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentSegmentNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/IntentStateList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/IntentStateList.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/LatchedAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/LatchedAppCommand.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/LatchedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/LatchedEventArgs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/LayerMixing/ILayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/LayerMixing/ILayer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/LayerMixing/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/LayerMixing/Layer.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Managers/ContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Managers/ContextManager.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Managers/ElementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Managers/ElementManager.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Managers/ExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Managers/ExecutionState.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Managers/FilterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Managers/FilterManager.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Managers/NodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Managers/NodeManager.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/MediaCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/MediaCollection.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ModuleStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ModuleStore.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Modules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Modules.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/CommandOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/CommandOutput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/IOutputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/IOutputDevice.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/IOutputModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/IOutputModule.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/IOutputter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/IOutputter.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/IntentOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/IntentOutput.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/Output.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Output/OutputPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Output/OutputPreview.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/OutputStateList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/OutputStateList.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ParameterSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ParameterSignature.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Paths.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/Program.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ProgramEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ProgramEventArgs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/PropertyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/PropertyManager.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/ProxyElementNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/ProxyElementNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SequenceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SequenceEventArgs.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SequenceFilterLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SequenceFilterLookup.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SequenceFilterNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SequenceFilterNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SystemClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SystemClock.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SystemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SystemConfig.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/SystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/SystemContext.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/TimeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/TimeNode.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/UIThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/UIThread.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/VixenSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/VixenSystem.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/WindowsMultimedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/WindowsMultimedia.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Sys/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Sys/XmlHelper.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Utility/NamingUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Utility/NamingUtilities.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Utility/PathUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Utility/PathUtility.cs -------------------------------------------------------------------------------- /src/Vixen.Core/Vixen.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Core/Vixen.Core.csproj -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/NetCorePackage.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/NetCorePackage.wxs -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/Package.en-us.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/Package.en-us.wxl -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/SetupMsiPackage.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/SetupMsiPackage.wxs -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/VCRedistPackage.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/VCRedistPackage.wxs -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/VixenBundles.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/VixenBundles.wxs -------------------------------------------------------------------------------- /src/Vixen.DeployBundle/VixenTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.DeployBundle/VixenTheme.xml -------------------------------------------------------------------------------- /src/Vixen.Installer/EnvironmentInclude.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Installer/EnvironmentInclude.wxi -------------------------------------------------------------------------------- /src/Vixen.Installer/Package.en-us.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Installer/Package.en-us.wxl -------------------------------------------------------------------------------- /src/Vixen.Installer/VixenFolders.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Installer/VixenFolders.wxs -------------------------------------------------------------------------------- /src/Vixen.Modules/Analysis/QMLibrary/QMFiles/vamp-plugin-sdk-2.5/skeleton/vamp-plugin.list: -------------------------------------------------------------------------------- 1 | _vampGetPluginDescriptor 2 | -------------------------------------------------------------------------------- /src/Vixen.Modules/Analysis/QMLibrary/qm-vamp-plugins-1.7/.hgtags: -------------------------------------------------------------------------------- 1 | 343d1ba086d440e537166ff89d9922da45213f5c qm-vamp-plugins-1.2 2 | -------------------------------------------------------------------------------- /src/Vixen.Modules/Analysis/QMLibrary/qm-vamp-plugins-1.7/vamp-plugin.list: -------------------------------------------------------------------------------- 1 | _vampGetPluginDescriptor 2 | -------------------------------------------------------------------------------- /src/Vixen.Modules/Analysis/QMLibrary/qm-vamp-plugins-1.7/vamp-plugin.map: -------------------------------------------------------------------------------- 1 | { 2 | global: vampGetPluginDescriptor; 3 | local: *; 4 | }; 5 | -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Curves/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Curves/Curve.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Curves/CurveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Curves/CurveType.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Curves/Curves.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Curves/Curves.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Instrumentation/.vs/Instrumentation/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Marks/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Marks/Annotations.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Marks/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Marks/Mark.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Marks/Marks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Marks/Marks.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Marks/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Marks/Mode.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Polygon/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Polygon/Ellipse.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Polygon/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Polygon/Line.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Polygon/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Polygon/Polygon.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Polygon/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Polygon/Shape.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Shows/Show.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Shows/Show.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Shows/ShowItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Shows/ShowItem.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Shows/Shows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Shows/Shows.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Shows/ShowsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Shows/ShowsData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/Shows/ShowsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/Shows/ShowsModule.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/WebServer/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/WebServer/Data.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/WebServer/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/WebServer/Module.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/WebServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/WebServer/Startup.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/App/WebServer/WebHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/App/WebServer/WebHost.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Controller/DDP/DDP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Controller/DDP/DDP.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Controller/E131/E131.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Controller/E131/E131.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Controller/E131/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Controller/E131/Help.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Balls/BallData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Balls/BallData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Balls/BallFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Balls/BallFill.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Balls/BallType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Balls/BallType.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Balls/Balls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Balls/Balls.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Bars/BarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Bars/BarType.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Bars/Bars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Bars/Bars.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Bars/Bars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Bars/Bars.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Bars/BarsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Bars/BarsData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Border/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Border/Border.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Chase/Chase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Chase/Chase.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Fire/Fire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Fire/Fire.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Fire/Fire.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Fire/Fire.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Fire/FireData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Fire/FireData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Gobo/Gobo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Gobo/Gobo.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Gobo/GoboData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Gobo/GoboData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Launcher/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Launcher/Data.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Life/Life.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Life/Life.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Life/Life.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Life/Life.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Life/LifeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Life/LifeData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Liquid/LiquidFunWrapper/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Liquid/LiquidFunWrapper/stdafx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Plasma/Plasma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Plasma/Plasma.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Pulse/Pulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Pulse/Pulse.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/RDS/RDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/RDS/RDS.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/RDS/RDSData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/RDS/RDSData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/RDS/RDSModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/RDS/RDSModule.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Shapes/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Shapes/Shapes.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Shapes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Shapes/app.config -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Spin/Spin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Spin/Spin.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Spin/Spin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Spin/Spin.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Spin/SpinData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Spin/SpinData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Spiral/Spiral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Spiral/Spiral.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Strobe/Strobe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Strobe/Strobe.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Text/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Text/Text.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Text/Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Text/Text.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Text/TextData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Text/TextData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Text/TextFade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Text/TextFade.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Text/TextMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Text/TextMode.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Tree/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Tree/Tree.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Tree/Tree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Tree/Tree.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Tree/TreeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Tree/TreeData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Video/Video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Video/Video.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Wave/Wave/Wave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Wave/Wave/Wave.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Wipe/Wipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Wipe/Wipe.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Effect/Wipe/WipeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Effect/Wipe/WipeData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Media/Audio/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Media/Audio/Audio.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Media/Audio/Audio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Media/Audio/Audio.csproj -------------------------------------------------------------------------------- /src/Vixen.Modules/Media/Audio/AudioData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Media/Audio/AudioData.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Property/Grid/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Property/Grid/Data.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Property/Grid/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Property/Grid/Module.cs -------------------------------------------------------------------------------- /src/Vixen.Modules/Timing/Generic/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VixenLights/Vixen/HEAD/src/Vixen.Modules/Timing/Generic/Module.cs --------------------------------------------------------------------------------