├── .gitattributes ├── .gitignore ├── DevTools ├── CustomToolDomGen │ ├── CustomToolDomGen.cs │ ├── CustomToolDomGen.vs2005.csproj │ ├── CustomToolDomGen.vs2005.sln │ ├── CustomToolDomGen.vs2010.csproj │ ├── Microsoft.VisualStudio.BaseCodeGeneratorWithSite.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ └── RegisterCOM.txt ├── DomGen │ ├── DomGen.vs2005.csproj │ ├── DomGen.vs2005.sln │ ├── DomGen.vs2010.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SchemaGen.cs │ ├── SchemaLoader.cs │ ├── app.config │ ├── bin │ │ ├── Atf.Core.dll │ │ └── DomGen.exe │ └── schemas │ │ ├── atgi.xsd │ │ ├── colladaschema_131.xsd │ │ └── game.xsd ├── Localization │ ├── ATF Localization Guide.doc │ ├── ATF.slp │ ├── DirectoriesToLocalize.txt │ └── LocalizableStringExtractor │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Extractor.cs │ │ ├── LocalizableString.cs │ │ ├── LocalizableStringExtractor.csproj │ │ ├── LocalizableStringExtractor.vs2013.csproj │ │ ├── MSSCCPRJ.SCC │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs └── MsBuildUtils │ ├── Group.cs │ ├── ItemGroup.cs │ ├── MsBuildFile.cs │ ├── MsBuildUtils.csproj │ ├── MsBuildUtils.vs2013.csproj │ ├── Project.cs │ ├── ProjectElement.cs │ ├── ProjectItem.cs │ ├── ProjectProperty.cs │ ├── ProjectRef.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── PropertyGroup.cs │ └── Solution.cs ├── Docs ├── ATF Qt Comparison.pdf ├── ATF_API-Reference.chm ├── ATF_DOM-Programmer_Guide.pdf ├── ATF_Programmer_Guide.pdf ├── Atf-CurveEditor-User_Prog_Guide.pdf └── Readme.txt ├── Framework ├── Atf.Atgi │ ├── Anim.cs │ ├── AnimChannel.cs │ ├── AnimClip.cs │ ├── Atf.Atgi.vs2010.csproj │ ├── AtgiResolver.cs │ ├── AtgiSchemaTypeLoader.cs │ ├── AtgiXmlPersister.cs │ ├── CustomData.cs │ ├── CustomDataAttribute.cs │ ├── DataSet.cs │ ├── Instance.cs │ ├── Joint.cs │ ├── LodGroup.cs │ ├── Material.cs │ ├── MaterialBinding.cs │ ├── Mesh.cs │ ├── Node.cs │ ├── NodeProperties.cs │ ├── Pose.cs │ ├── PoseElement.cs │ ├── PrimitiveSet.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scene.cs │ ├── Shader.cs │ ├── ShaderBinding.cs │ ├── Texture.cs │ ├── UnitTestAtgi │ │ ├── Data │ │ │ └── cube.atgi │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestAtgi.cs │ │ └── UnitTestAtgi.csproj │ ├── World.cs │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ └── atgi.xsd ├── Atf.Collada │ ├── Animation.cs │ ├── AnimationChannel.cs │ ├── AnimationClip.cs │ ├── AnimationSampler.cs │ ├── Atf.Collada.vs2010.csproj │ ├── Collada.cs │ ├── ColladaResolver.cs │ ├── ColladaSchemaTypeLoader.cs │ ├── ColladaXmlPersister.cs │ ├── Effect.cs │ ├── Geometry.cs │ ├── Input.cs │ ├── InstanceController.cs │ ├── InstanceGeometry.cs │ ├── Mesh.cs │ ├── Node.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scene.cs │ ├── Source.cs │ ├── SubMesh.cs │ ├── Tools.cs │ ├── VisualScene.cs │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ ├── collada.xsd │ │ └── xml.xsd ├── Atf.Core │ ├── ActiveCollection.cs │ ├── Adaptation │ │ ├── AdaptableActiveCollection.cs │ │ ├── AdaptableCollection.cs │ │ ├── AdaptableList.cs │ │ ├── AdaptablePath.cs │ │ ├── AdaptableSelection.cs │ │ ├── AdaptationException.cs │ │ ├── Adapter.cs │ │ ├── AdapterCreator.cs │ │ ├── Adapters.cs │ │ ├── BindingAdapterObject.cs │ │ ├── IAdaptable.cs │ │ ├── IAdapter.cs │ │ ├── IAdapterCreator.cs │ │ └── IDecoratable.cs │ ├── ArgParser.cs │ ├── AssemblyUtil.cs │ ├── Atf.Core.vs2010.csproj │ ├── AtfPluginAttribute.cs │ ├── AtfUsageLogger.cs │ ├── AtfVersion.cs │ ├── AttributeUtils.cs │ ├── Cached.cs │ ├── CollectionAdapter.cs │ ├── ConsoleOutputWriter.cs │ ├── CrashLogger.cs │ ├── DependencySystem.cs │ ├── DirectoryUtil.cs │ ├── DisplayStringAttribute.cs │ ├── Dom │ │ ├── AnnotationException.cs │ │ ├── AttributeEventArgs.cs │ │ ├── AttributeInfo.cs │ │ ├── AttributeRule.cs │ │ ├── AttributeType.cs │ │ ├── AttributeTypes.cs │ │ ├── CategoryUniqueIdValidator.cs │ │ ├── ChildCountRule.cs │ │ ├── ChildEventArgs.cs │ │ ├── ChildInfo.cs │ │ ├── ChildRule.cs │ │ ├── CustomTypeDescriptorNodeAdapter.cs │ │ ├── DataValidator.cs │ │ ├── DependencyValidator.cs │ │ ├── DomDocument.cs │ │ ├── DomNode.cs │ │ ├── DomNodeAdapter.cs │ │ ├── DomNodeListAdapter.cs │ │ ├── DomNodeQueryMatch.cs │ │ ├── DomNodeQueryable.cs │ │ ├── DomNodeSerializer.cs │ │ ├── DomNodeType.cs │ │ ├── DomResource.cs │ │ ├── DomXmlReader.cs │ │ ├── DomXmlWriter.cs │ │ ├── ExtensionInfo.cs │ │ ├── FieldMetadata.cs │ │ ├── IdValidator.cs │ │ ├── LockingValidator.cs │ │ ├── NamedMetadata.cs │ │ ├── NumericMaxRule.cs │ │ ├── NumericMinRule.cs │ │ ├── ObservableDomNodeAdapter.cs │ │ ├── ObservableDomNodeListAdapter.cs │ │ ├── ObservableDomPropertyAttribute.cs │ │ ├── Observer.cs │ │ ├── ReferenceEventArgs.cs │ │ ├── ReferenceValidator.cs │ │ ├── StringEnumRule.cs │ │ ├── TransactionContext.cs │ │ ├── TransactionReporter.cs │ │ ├── TypeAdapterCreator.cs │ │ ├── UniqueIdValidator.cs │ │ ├── UniquePathIdValidator.cs │ │ ├── Validator.cs │ │ ├── XmlAttributeInfo.cs │ │ ├── XmlAttributeType.cs │ │ ├── XmlNodeReference.cs │ │ ├── XmlPersister.cs │ │ ├── XmlSchemaTypeCollection.cs │ │ └── XmlSchemaTypeLoader.cs │ ├── EmbeddedResourceStringLocalizer.cs │ ├── EmptyArray.cs │ ├── EmptyEnumerable.cs │ ├── EnumUtil.cs │ ├── EnumerableUtil.cs │ ├── Event.cs │ ├── FileMoveInfo.cs │ ├── FileMoveService.cs │ ├── FileMoveType.cs │ ├── FileStreamResolver.cs │ ├── FileSystemResourceFolder.cs │ ├── Global.cs │ ├── ICrashLogger.cs │ ├── IDocument.cs │ ├── IEnumerableContext.cs │ ├── IFileMoveService.cs │ ├── IFileWatcherService.cs │ ├── IInitializable.cs │ ├── ILockingContext.cs │ ├── IObservableCollection.cs │ ├── IObservableContext.cs │ ├── IOutputWriter.cs │ ├── IPropertyValueValidator.cs │ ├── IQueryMatch.cs │ ├── IQueryPredicate.cs │ ├── IQueryableContext.cs │ ├── IQueryableReplaceContext.cs │ ├── IQueryableResultContext.cs │ ├── IReference.cs │ ├── IReplacingQueryPattern.cs │ ├── IResource.cs │ ├── IResourceFolder.cs │ ├── IResourceReference.cs │ ├── IResourceResolver.cs │ ├── IResourceService.cs │ ├── IServerLogger.cs │ ├── ITransactionContext.cs │ ├── IValidationContext.cs │ ├── IntSet.cs │ ├── InvalidTransactionException.cs │ ├── ItemChangedEventArgs.cs │ ├── ItemInsertedEventArgs.cs │ ├── ItemRemovedEventArgs.cs │ ├── ItemSelectedEventArgs.cs │ ├── ItemsChangedEventArgs.cs │ ├── Kernel32.cs │ ├── LabelEditedEventArgs.cs │ ├── Lazies.cs │ ├── ListAdapter.cs │ ├── LiveConnectService.cs │ ├── LocalizedDescriptionAttribute.cs │ ├── LocalizedNameAttribute.cs │ ├── Localizer.cs │ ├── MathUtil.cs │ ├── MefUtil.cs │ ├── Multimap.cs │ ├── NumericUtil.cs │ ├── OutputMessageType.cs │ ├── Outputs.cs │ ├── Pair.cs │ ├── Path.cs │ ├── PathUtil.cs │ ├── PerformanceCounters.cs │ ├── PerformanceTimers.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyChangedEventArgsCollection.cs │ ├── ReentryGuard.cs │ ├── Rendering │ │ ├── DomNodeUtil.cs │ │ ├── IAnim.cs │ │ ├── IAnimChannel.cs │ │ ├── IAnimClip.cs │ │ ├── IBinding.cs │ │ ├── ICustomData.cs │ │ ├── ICustomDataAttribute.cs │ │ ├── IDataset.cs │ │ ├── IJoint.cs │ │ ├── ILodGroup.cs │ │ ├── IMesh.cs │ │ ├── INameable.cs │ │ ├── INode.cs │ │ ├── IPose.cs │ │ ├── IPoseElement.cs │ │ ├── IPrimitiveSet.cs │ │ ├── IScene.cs │ │ ├── IShader.cs │ │ ├── ISubMesh.cs │ │ ├── ITexture.cs │ │ ├── IVisible.cs │ │ └── IWorld.cs │ ├── Requires.cs │ ├── ResourceService.cs │ ├── ResourceStreamResolver.cs │ ├── Resources │ │ ├── Localization.xml │ │ └── ja │ │ │ └── Localization.xml │ ├── SatelliteAssemblyStringLocalizer.cs │ ├── SearchAndReplace │ │ ├── DomNodeNamePredicate.cs │ │ ├── DomNodePropertyMatch.cs │ │ ├── DomNodePropertyPredicate.cs │ │ ├── DomNodeQueryMatch.cs │ │ ├── DomNodeQueryable.cs │ │ ├── IQueryMatch.cs │ │ ├── IQueryPredicate.cs │ │ ├── IQueryableContext.cs │ │ ├── IQueryableReplaceContext.cs │ │ ├── IQueryableResultContext.cs │ │ ├── IReplacingQueryPattern.cs │ │ └── LinqQueryPredicate.cs │ ├── Selection.cs │ ├── ServerLogger.cs │ ├── Shell32.cs │ ├── StringLocalizer.cs │ ├── StringUtil.cs │ ├── Tree.cs │ ├── UniqueNamer.cs │ ├── UriChangedEventArgs.cs │ ├── VectorMath │ │ ├── AngleAxisF.cs │ │ ├── BezierCurve.cs │ │ ├── BezierCurve2F.cs │ │ ├── BezierSpline.cs │ │ ├── Box.cs │ │ ├── Box2F.cs │ │ ├── CircleF.cs │ │ ├── EulerAngleChannels.cs │ │ ├── EulerAngleLimits.cs │ │ ├── EulerAngleOrder.cs │ │ ├── EulerAngles.cs │ │ ├── Frustum.cs │ │ ├── Matrix3F.cs │ │ ├── Matrix3x2F.cs │ │ ├── Matrix4F.cs │ │ ├── Plane3F.cs │ │ ├── Polygon3F.cs │ │ ├── QuatF.cs │ │ ├── Ray2F.cs │ │ ├── Ray3F.cs │ │ ├── Seg2F.cs │ │ ├── Sphere3F.cs │ │ ├── Triangle3F.cs │ │ ├── Vec2F.cs │ │ ├── Vec3F.cs │ │ └── Vec4F.cs │ ├── WeakKey.cs │ └── XmlStringLocalizer.cs ├── Atf.Gui.Interop │ └── Atf.Gui.Interop.vs2010.csproj ├── Atf.Gui.OpenGL │ ├── ArcBallCameraController.cs │ ├── Atf.Gui.OpenGL.vs2010.csproj │ ├── BitmapContext.cs │ ├── CanvasControl3D.cs │ ├── CgfxCore.cs │ ├── DdsCompressor.cs │ ├── DdsImageLoader.cs │ ├── DesignControl.cs │ ├── DesignControl.resx │ ├── DevilImageLoader.cs │ ├── FlyCameraController.cs │ ├── IImageLoader.cs │ ├── Image.cs │ ├── ImageLoaderRegistry.cs │ ├── MsBitmapImageLoader.cs │ ├── OpenGlCore.cs │ ├── Panel3D.cs │ ├── Panel3D.resx │ ├── PickAction.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RenderAction.cs │ ├── RenderObject.cs │ ├── RenderStateGuardianUtils.cs │ ├── RenderStats.cs │ ├── Resources │ │ ├── Localization.xml │ │ └── ja │ │ │ └── Localization.xml │ ├── TargaImageLoader.cs │ ├── TextureInfo.cs │ ├── TextureManager.cs │ ├── ThumbnailGenerator.cs │ ├── TrackBallCameraController.cs │ ├── TranslatorControl.cs │ ├── Util3D.cs │ ├── VboManager.cs │ └── WalkCameraController.cs ├── Atf.Gui.WinForms │ ├── Applications │ │ ├── AtfScriptVariables.cs │ │ ├── AutoDocumentService.cs │ │ ├── AutomationService.cs │ │ ├── CommandInfos.cs │ │ ├── CommandLineArgsService.cs │ │ ├── CommandService.cs │ │ ├── ControlHostService.cs │ │ ├── ControlInfo.cs │ │ ├── DefaultTabCommands.cs │ │ ├── Dialogs.cs │ │ ├── ErrorDialogService.cs │ │ ├── FileDialogService.cs │ │ ├── FunctionalTestBase.cs │ │ ├── GridPropertyEditor.cs │ │ ├── HelpAboutCommand.cs │ │ ├── IControlHostClient.cs │ │ ├── IControlHostService.cs │ │ ├── IControlRegistry.cs │ │ ├── IDialogService.cs │ │ ├── ILayoutConstraint.cs │ │ ├── ILayoutContext.cs │ │ ├── IMainWindow.cs │ │ ├── ImageThumbnailResolver.cs │ │ ├── Listers │ │ │ ├── FilteredTreeControlEditor.cs │ │ │ ├── FilteredTreeView.cs │ │ │ ├── HistoryLister.cs │ │ │ ├── IPrototypingContext.cs │ │ │ ├── ITemplatingContext.cs │ │ │ ├── ItemInfos.cs │ │ │ ├── LayerLister.cs │ │ │ ├── ListViewAdapter.cs │ │ │ ├── ListViewEditor.cs │ │ │ ├── ProjectLister.cs │ │ │ ├── PrototypeLister.cs │ │ │ ├── ResourceLister.cs │ │ │ ├── TreeControlAdapter.cs │ │ │ ├── TreeControlEditor.cs │ │ │ ├── TreeListViewAdapter.cs │ │ │ ├── TreeListViewEditor.cs │ │ │ └── WinFormsItemInfo.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── MainFormAdapter.cs │ │ ├── MainWindowTitleService.cs │ │ ├── MenuInfos.cs │ │ ├── NetworkTargetServices │ │ │ ├── ITargetService.cs │ │ │ ├── Target.cs │ │ │ ├── TargetDialog.cs │ │ │ ├── TargetDialog.designer.cs │ │ │ ├── TargetDialog.resx │ │ │ ├── TargetEditDialog.cs │ │ │ ├── TargetEditDialog.designer.cs │ │ │ ├── TargetEditDialog.resx │ │ │ ├── TargetEnumerationService.cs │ │ │ ├── TargetService.cs │ │ │ ├── TargetTcpSocket.cs │ │ │ └── TcpCommandClient.cs │ │ ├── OutputService.cs │ │ ├── PaletteService.cs │ │ ├── PerformanceMonitor.cs │ │ ├── PropertyEditingCommands.cs │ │ ├── PropertyEditor.cs │ │ ├── RenameCommand.cs │ │ ├── RenameCommandDialog.cs │ │ ├── RenameCommandDialog.designer.cs │ │ ├── RenameCommandDialog.resx │ │ ├── ScriptConsole.cs │ │ ├── SearchAndReplace │ │ │ ├── DomNodePropertySearchService.cs │ │ │ ├── IReplaceUI.cs │ │ │ ├── IResultsUI.cs │ │ │ ├── ISearchUI.cs │ │ │ ├── ISearchableContext.cs │ │ │ └── ISearchableContextUI.cs │ │ ├── SettingsDialog.cs │ │ ├── SettingsDialog.resx │ │ ├── SettingsLoadSaveDialog.cs │ │ ├── SettingsLoadSaveDialog.designer.cs │ │ ├── SettingsLoadSaveDialog.resx │ │ ├── SettingsService.cs │ │ ├── SingleInstanceService.cs │ │ ├── SkinService │ │ │ ├── ControlGradient.cs │ │ │ ├── DockColors.cs │ │ │ ├── EmbeddedImage.cs │ │ │ ├── FormNcRenderer.cs │ │ │ ├── Schemas │ │ │ │ ├── GenSchemaDef.cmd │ │ │ │ ├── SkinSchema.cs │ │ │ │ └── skin.xsd │ │ │ ├── Skin.tmpl │ │ │ ├── SkinEditor.cs │ │ │ ├── SkinService.cs │ │ │ └── Skins │ │ │ │ ├── Dark.skn │ │ │ │ └── Light.skn │ │ ├── StandardEditCommands.cs │ │ ├── StandardFileExitCommand.cs │ │ ├── StandardLayoutCommands.cs │ │ ├── StandardPrintCommands.cs │ │ ├── StatusService.cs │ │ ├── TabbedControlSelector.cs │ │ ├── ThumbnailService.cs │ │ ├── UnhandledExceptionDialog.Designer.cs │ │ ├── UnhandledExceptionDialog.cs │ │ ├── UnhandledExceptionDialog.resx │ │ ├── UnhandledExceptionService.cs │ │ ├── VersionControl │ │ │ ├── CheckInForm.Designer.cs │ │ │ ├── CheckInForm.cs │ │ │ ├── CheckInForm.resx │ │ │ ├── ReconcileForm.cs │ │ │ ├── ReconcileForm.designer.cs │ │ │ ├── ReconcileForm.resx │ │ │ └── SourceControlCommands.cs │ │ ├── WebHelp.cs │ │ ├── WebHelpCommands.cs │ │ ├── WebServices │ │ │ ├── FeedbackForm.cs │ │ │ ├── FeedbackForm.resx │ │ │ ├── ProjectMappingAttribute.cs │ │ │ ├── UserFeedbackService.cs │ │ │ ├── VersionCheck.cs │ │ │ └── VersionUpdateService.cs │ │ └── WindowLayoutServiceCommands.cs │ ├── Atf.Gui.WinForms.vs2010.csproj │ ├── ChartUtil.cs │ ├── Controls │ │ ├── AboutDialog.cs │ │ ├── AboutDialog.resx │ │ ├── AboutSysInfoDialog.cs │ │ ├── AboutSysInfoDialog.resx │ │ ├── Adaptable │ │ │ ├── AdaptableControl.cs │ │ │ ├── AnnotatingCommands.cs │ │ │ ├── AnnotationAdapter.cs │ │ │ ├── AutoTranslateAdapter.cs │ │ │ ├── CanvasAdapter.cs │ │ │ ├── ContextMenuAdapter.cs │ │ │ ├── ControlAdapter.cs │ │ │ ├── CoordinateAxisAdapter.cs │ │ │ ├── D2dAdaptableControl.cs │ │ │ ├── D2dAnnotationAdapter.cs │ │ │ ├── D2dGridAdapter.cs │ │ │ ├── D2dRectangleDragRenderer.cs │ │ │ ├── D2dRectangleDragSelector.cs │ │ │ ├── DiagramExpander.cs │ │ │ ├── DiagramLabel.cs │ │ │ ├── DiagramPin.cs │ │ │ ├── DiagramTheme.cs │ │ │ ├── DiagramVisibilityCheck.cs │ │ │ ├── DragDropAdapter.cs │ │ │ ├── DragSelectionEventArgs.cs │ │ │ ├── DraggingControlAdapter.cs │ │ │ ├── Graphs │ │ │ │ ├── Circuit │ │ │ │ │ ├── CircuitControlRegistry.cs │ │ │ │ │ ├── CircuitDocument.cs │ │ │ │ │ ├── CircuitEditingContext.cs │ │ │ │ │ ├── CircuitValidator.cs │ │ │ │ │ ├── GroupPinEditor.cs │ │ │ │ │ ├── GroupingCommands.cs │ │ │ │ │ ├── LayeringCommands.cs │ │ │ │ │ ├── LayeringContext.cs │ │ │ │ │ ├── PrototypingContext.cs │ │ │ │ │ ├── ViewingContext.cs │ │ │ │ │ └── WireStyleProvider.cs │ │ │ │ ├── CircuitRenderer.cs │ │ │ │ ├── D2dCircuitRenderer.cs │ │ │ │ ├── D2dDigraphRenderer.cs │ │ │ │ ├── D2dGraphAdapter.cs │ │ │ │ ├── D2dGraphEdgeEditAdapter.cs │ │ │ │ ├── D2dGraphNodeEditAdapter.cs │ │ │ │ ├── D2dStatechartRenderer.cs │ │ │ │ ├── D2dSubCircuitRenderer.cs │ │ │ │ ├── D2dSubgraphAdapter.cs │ │ │ │ ├── DigraphRenderer.cs │ │ │ │ ├── GraphAdapter.cs │ │ │ │ ├── GraphEdgeEditAdapter.cs │ │ │ │ ├── GraphNodeEditAdapter.cs │ │ │ │ ├── GraphRenderer.cs │ │ │ │ ├── GraphViewCommands.cs │ │ │ │ ├── KeyboardGraphNavigator.cs │ │ │ │ ├── KeyboardIOGraphNavigator.cs │ │ │ │ ├── NumberedRoute.cs │ │ │ │ └── StatechartRenderer.cs │ │ │ ├── GridAdapter.cs │ │ │ ├── HoverAdapter.cs │ │ │ ├── IAutoTranslateAdapter.cs │ │ │ ├── ICanvasAdapter.cs │ │ │ ├── IControlAdapter.cs │ │ │ ├── IDragSelector.cs │ │ │ ├── IItemDragAdapter.cs │ │ │ ├── ILabelEditAdapter.cs │ │ │ ├── IPickingAdapter.cs │ │ │ ├── IPickingAdapter2.cs │ │ │ ├── IPrintingAdapter.cs │ │ │ ├── ISelectionAdapter.cs │ │ │ ├── ITransformAdapter.cs │ │ │ ├── LabelEditAdapter.cs │ │ │ ├── MouseLayoutManipulator.cs │ │ │ ├── MouseTransformManipulator.cs │ │ │ ├── MouseWheelManipulator.cs │ │ │ ├── RectangleDragSelector.cs │ │ │ ├── ScrollbarAdapter.cs │ │ │ ├── SelectionAdapter.cs │ │ │ ├── ShowPinsToggle.cs │ │ │ ├── TransformAdapter.cs │ │ │ └── ViewingAdapter.cs │ │ ├── BoolInputControl.cs │ │ ├── BoolInputControl.resx │ │ ├── CanvasControl.cs │ │ ├── CanvasControl.resx │ │ ├── CollapsibleGroupBox.cs │ │ ├── ColorPicker │ │ │ ├── AdobeColors.cs │ │ │ ├── ColorBox.cs │ │ │ ├── ColorBox.resx │ │ │ ├── ColorPicker.cs │ │ │ ├── ColorPicker.resx │ │ │ ├── ColorPickerEditor.cs │ │ │ ├── VerticalColorSlider.cs │ │ │ └── VerticalColorSlider.resx │ │ ├── ConfirmationDialog.cs │ │ ├── ConfirmationDialog.resx │ │ ├── ConsoleBox │ │ │ ├── ConsoleTextBox.cs │ │ │ └── IConsoleTextBox.cs │ │ ├── CurveEditing │ │ │ ├── Cartesian2dCanvas.cs │ │ │ ├── CurveCanvas.cs │ │ │ ├── CurveEditingControl.cs │ │ │ ├── CurveEditor.cs │ │ │ └── CurveRenderer.cs │ │ ├── CustomColorTable.cs │ │ ├── CustomFileDialog.cs │ │ ├── CustomOpenFileDialog.cs │ │ ├── CustomSaveFileDialog.cs │ │ ├── CustomToolStripRenderer.cs │ │ ├── CustomizeKeyboardDialog.cs │ │ ├── CustomizeKeyboardDialog.designer.cs │ │ ├── CustomizeKeyboardDialog.resx │ │ ├── DataBoundListView.cs │ │ ├── DataEditing │ │ │ ├── BoolDataEditor.cs │ │ │ ├── ColorDataEditor.cs │ │ │ ├── DataEditor.cs │ │ │ ├── DataEditorTheme.cs │ │ │ ├── FloatDataEditor.cs │ │ │ └── StringDataEditor.cs │ │ ├── Direct2DControl.cs │ │ ├── ErrorDialog.Designer.cs │ │ ├── ErrorDialog.cs │ │ ├── ErrorDialog.resx │ │ ├── FilteredFileDialogBase.cs │ │ ├── FilteredFileDialogBase.designer.cs │ │ ├── FilteredFileDialogBase.resx │ │ ├── FindFileDialog.cs │ │ ├── FindFileDialog.designer.cs │ │ ├── FindFileDialog.resx │ │ ├── FindFileWithSuggestionDialog.cs │ │ ├── FindFileWithSuggestionDialog.designer.cs │ │ ├── FindFileWithSuggestionDialog.resx │ │ ├── FloatInputControl.cs │ │ ├── FloatInputControl.resx │ │ ├── FolderSelectDialog.cs │ │ ├── HoverBase.cs │ │ ├── HoverBase.resx │ │ ├── HoverEventArgs.cs │ │ ├── HoverLabel.cs │ │ ├── HoverLabel.resx │ │ ├── IntInputControl.cs │ │ ├── IntInputControl.resx │ │ ├── NoFocusTrackBar.cs │ │ ├── NumericMatrixControl.cs │ │ ├── NumericTextBox.cs │ │ ├── NumericTupleControl.cs │ │ ├── OpenFilteredFileDialog.cs │ │ ├── OverlayButton.cs │ │ ├── PerformanceMonitorControl.Designer.cs │ │ ├── PerformanceMonitorControl.cs │ │ ├── PerformanceMonitorControl.resx │ │ ├── ProgressDialog.cs │ │ ├── ProgressDialog.resx │ │ ├── PropertyEditing │ │ │ ├── ArrayEditingControl.cs │ │ │ ├── ArrayEditor.cs │ │ │ ├── BoolEditor.cs │ │ │ ├── BoundedFloatEditor.cs │ │ │ ├── BoundedIntEditor.cs │ │ │ ├── CollectionEditingControl.cs │ │ │ ├── CollectionEditor.cs │ │ │ ├── ColorPickerEditor.cs │ │ │ ├── CompositeOpenedEventArgs.cs │ │ │ ├── EmbeddedCollectionEditor.cs │ │ │ ├── EnumUITypeEditor.cs │ │ │ ├── FileUriEditor.cs │ │ │ ├── FlagsUITypeEditor.cs │ │ │ ├── FolderBrowserDialogUITypeEditor.cs │ │ │ ├── FolderUriEditor.cs │ │ │ ├── GridControl.cs │ │ │ ├── GridControlShowHidePropertiesDialog.Designer.cs │ │ │ ├── GridControlShowHidePropertiesDialog.cs │ │ │ ├── GridControlShowHidePropertiesDialog.resx │ │ │ ├── GridView.cs │ │ │ ├── ICompositePropertyControl.cs │ │ │ ├── IFormsOwner.cs │ │ │ ├── IPropertyEditor.cs │ │ │ ├── LongEnumEditor.cs │ │ │ ├── NestedCollectionEditor.cs │ │ │ ├── NestedCollectionEditorForm.cs │ │ │ ├── NestedCollectionEditorForm.designer.cs │ │ │ ├── NestedCollectionEditorForm.resx │ │ │ ├── NumericEditor.cs │ │ │ ├── NumericMatrixEditor.cs │ │ │ ├── NumericTupleEditor.cs │ │ │ ├── PropertyEditingControl.cs │ │ │ ├── PropertyEditorControlContext.cs │ │ │ ├── PropertyGrid.cs │ │ │ ├── PropertyGridView.cs │ │ │ ├── PropertyView.cs │ │ │ ├── TypeDescriptorContext.cs │ │ │ ├── UniformArrayEditor.cs │ │ │ └── WinFormsPropertyUtils.cs │ │ ├── QuadPanelControl.cs │ │ ├── SearchAndReplace │ │ │ ├── DomNodeNameSearchTextBox.cs │ │ │ ├── DomNodeReplaceToolStrip.cs │ │ │ ├── DomNodeSearchResultsListView.cs │ │ │ ├── DomNodeSearchToolStrip.cs │ │ │ ├── QueryInputTree │ │ │ │ ├── DomNodeQueryRoot.cs │ │ │ │ ├── QueryButton.cs │ │ │ │ ├── QueryLabel.cs │ │ │ │ ├── QueryNode.cs │ │ │ │ ├── QueryOption.cs │ │ │ │ ├── QueryOptionItem.cs │ │ │ │ ├── QueryRoot.cs │ │ │ │ ├── QuerySeparator.cs │ │ │ │ ├── QueryTextInput.cs │ │ │ │ └── QueryTree.cs │ │ │ ├── ReplaceTextBox.cs │ │ │ ├── ReplaceToolStrip.cs │ │ │ ├── SearchResultsListView.cs │ │ │ ├── SearchTextBox.cs │ │ │ ├── SearchToolStrip.cs │ │ │ └── StringSearchInputUI.cs │ │ ├── SplitButton.cs │ │ ├── TabbedControlSelectorDialog.Designer.cs │ │ ├── TabbedControlSelectorDialog.cs │ │ ├── TabbedControlSelectorDialog.resx │ │ ├── ThreadSafeProgressDialog.cs │ │ ├── ThumbnailControl.cs │ │ ├── ThumbnailControlItem.cs │ │ ├── Timelines │ │ │ ├── Direct2D │ │ │ │ ├── D2dDefaultTimelineRenderer.cs │ │ │ │ ├── D2dMoveManipulator.cs │ │ │ │ ├── D2dScaleManipulator.cs │ │ │ │ ├── D2dScrubberManipulator.cs │ │ │ │ ├── D2dSelectionManipulator.cs │ │ │ │ ├── D2dSnapManipulator.cs │ │ │ │ ├── D2dSplitManipulator.cs │ │ │ │ ├── D2dTimelineControl.cs │ │ │ │ └── D2dTimelineRenderer.cs │ │ │ ├── Gdi │ │ │ │ ├── DefaultTimelineRenderer.cs │ │ │ │ ├── MoveManipulator.cs │ │ │ │ ├── ScaleManipulator.cs │ │ │ │ ├── ScrubberManipulator.cs │ │ │ │ ├── SelectionManipulator.cs │ │ │ │ ├── SnapManipulator.cs │ │ │ │ ├── SplitManipulator.cs │ │ │ │ ├── TimelineControl.cs │ │ │ │ └── TimelineRenderer.cs │ │ │ └── HitEventArgs.cs │ │ ├── ToolStripAutoFitLabel.cs │ │ ├── ToolStripAutoFitTextBox.cs │ │ ├── ToolStripEx.cs │ │ ├── TreeControl.cs │ │ ├── TreeItemRenderer.cs │ │ ├── TreeListControl.cs │ │ ├── TreeListItemRenderer.cs │ │ ├── TreeListView.Column.cs │ │ ├── TreeListView.ListView.cs │ │ ├── TreeListView.Node.cs │ │ ├── TreeListView.cs │ │ ├── WindowLayoutManageDialog.Designer.cs │ │ ├── WindowLayoutManageDialog.cs │ │ ├── WindowLayoutManageDialog.resx │ │ ├── WindowLayoutNewDialog.Designer.cs │ │ ├── WindowLayoutNewDialog.cs │ │ └── WindowLayoutNewDialog.resx │ ├── Dom │ │ ├── DomExplorer.cs │ │ ├── DomRecorder.cs │ │ ├── TemplateLister.cs │ │ ├── TemplatingCommands.cs │ │ └── TemplatingContext.cs │ ├── DragDrop │ │ ├── ComDataObjectExtensions.cs │ │ ├── DragDataHelper.cs │ │ ├── DragDropDataObject.cs │ │ ├── DragDropExtender.cs │ │ ├── DragDropHelper.cs │ │ ├── DropDescription.cs │ │ ├── DropDescriptionHelper.cs │ │ ├── DropImageType.cs │ │ ├── IDragSourceHelper2.cs │ │ ├── IDropTargetHelper.cs │ │ ├── IStream.cs │ │ └── OleConverter.cs │ ├── FileIconUtil.cs │ ├── FindFileResolver.cs │ ├── GdiUtil.cs │ ├── Interop │ │ ├── DragEventArgsInterop.cs │ │ ├── InteropControl.cs │ │ ├── KeyEventArgsInterop.cs │ │ ├── KeysInterop.cs │ │ ├── MessageInterop.cs │ │ ├── MouseButtonsInterop.cs │ │ └── MouseEventArgsInterop.cs │ ├── KeysUtil.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Rendering │ │ ├── CameraController.cs │ │ ├── Controller.cs │ │ └── WinFormsControlSchemes.cs │ ├── ResourceUtil.cs │ ├── Resources │ │ ├── Localization.xml │ │ └── ja │ │ │ ├── Atf.Gui.WinForms.resources.dll │ │ │ └── Localization.xml │ ├── StandardIconUtil.cs │ ├── WaitCursor.cs │ └── WinFormsUtil.cs ├── Atf.Gui.Wpf │ ├── Applications │ │ ├── AppearanceService.cs │ │ ├── AtfApp.cs │ │ ├── AtfScriptVariables.cs │ │ ├── AutoDocumentService.cs │ │ ├── BoundsSpecified.cs │ │ ├── CommandComparer.cs │ │ ├── CommandDef.cs │ │ ├── CommandId.cs │ │ ├── CommandInfos.cs │ │ ├── CommandService.cs │ │ ├── ControlDef.cs │ │ ├── ControlHostService.cs │ │ ├── ControlInfo.cs │ │ ├── EditLabelCommand.cs │ │ ├── ErrorDialogService.cs │ │ ├── EventToCommandArgs.cs │ │ ├── FileDialogService.cs │ │ ├── FileSystemDataProvider.cs │ │ ├── HelpCommands.cs │ │ ├── ICommandItem.cs │ │ ├── IComposer.cs │ │ ├── IControlHostClient.cs │ │ ├── IControlHostService.cs │ │ ├── IControlInfo.cs │ │ ├── ILabelEditingContext.cs │ │ ├── ILayoutConstraint.cs │ │ ├── ILayoutContext.cs │ │ ├── IMenu.cs │ │ ├── IMenuItem.cs │ │ ├── IPaletteService.cs │ │ ├── IProtocol.cs │ │ ├── IStatusItem.cs │ │ ├── IStatusService.cs │ │ ├── ITarget.cs │ │ ├── ITargetDiscovery.cs │ │ ├── ITargetService.cs │ │ ├── IThumbnailResolver.cs │ │ ├── ITransportLayer.cs │ │ ├── IViewingContext.cs │ │ ├── Listers │ │ │ └── ITemplatingContext.cs │ │ ├── MenuDef.cs │ │ ├── MessageBoxService.cs │ │ ├── OutputService.cs │ │ ├── PaletteService.cs │ │ ├── PropertyEditor.cs │ │ ├── SettingsService.cs │ │ ├── StandardEditCommands.cs │ │ ├── StandardMenus.cs │ │ ├── StatusService.cs │ │ ├── SwitchToService.cs │ │ ├── SynchronizeInvoke.cs │ │ ├── TargetService.cs │ │ ├── TcpIpProtocol.cs │ │ ├── TcpIpTarget.cs │ │ ├── TcpIpTransport │ │ │ ├── TcpIpTransport.Connect.cs │ │ │ ├── TcpIpTransport.Receive.cs │ │ │ ├── TcpIpTransport.Send.cs │ │ │ └── TcpIpTransport.cs │ │ ├── ThumbnailReadyEventArgs.cs │ │ ├── ThumbnailService.cs │ │ ├── UnhandledExceptionService.cs │ │ ├── VersionControl │ │ │ ├── CheckInDialog.xaml │ │ │ ├── CheckInDialog.xaml.cs │ │ │ ├── ReconcileDialog.xaml │ │ │ ├── ReconcileDialog.xaml.cs │ │ │ └── SourceControlCommands.cs │ │ ├── WebServices │ │ │ ├── FeedbackForm.xaml │ │ │ ├── FeedbackForm.xaml.cs │ │ │ ├── ProjectMappingAttribute.cs │ │ │ ├── UserFeedbackService.cs │ │ │ ├── VersionCheck.cs │ │ │ └── VersionUpdateService.cs │ │ ├── WindowLayoutServiceCommands.cs │ │ └── WpfItemInfo.cs │ ├── Atf.Gui.Wpf.vs2010.csproj │ ├── Behaviors │ │ ├── ActivateContextBehavior.cs │ │ ├── AdaptableBehavior.cs │ │ ├── AtfTreeViewBehavior.cs │ │ ├── ButtonPopupBehavior.cs │ │ ├── CommandBehavior.cs │ │ ├── ContextMenuBehavior.cs │ │ ├── ContextSensitiveToolBar.cs │ │ ├── DataPiping.cs │ │ ├── DialogButtonWorkaround.cs │ │ ├── DragAutoScrollBehavior.cs │ │ ├── DragSourceBehavior.cs │ │ ├── DropTargetBehavior.cs │ │ ├── EditableTextBlockBehavior.cs │ │ ├── EventToCommand.cs │ │ ├── GridViewColumnHeaderBehavior.cs │ │ ├── GridViewSortBehavior.cs │ │ ├── InstancingDropTargetBehavior.cs │ │ ├── ItemsControlDoubleClickBehavior.cs │ │ ├── ItemsControlDragSourceBehavior.cs │ │ ├── ItemsControlDropTargetBehavior.cs │ │ ├── ItemsControlInsertionAdornerBehavior.cs │ │ ├── ItemsControlSelectFirstBehavior.cs │ │ ├── LastHitAwareBehavior.cs │ │ ├── ListBoxScrollToEndBehavior.cs │ │ ├── PasswordBoxBehavior.cs │ │ ├── RoutedTemplateSelector.cs │ │ ├── SafeTextOptions.cs │ │ ├── SelectionBehavior.cs │ │ ├── SelectionContextDragSourceBehavior.cs │ │ ├── SelectorSelectionBehavior.cs │ │ ├── StyleBehaviors.cs │ │ ├── TextBoxNumericBehavior.cs │ │ ├── TextBoxSelectAllBehavior.cs │ │ ├── ThemeStyleBehavior.cs │ │ ├── TreeViewDragHoverExpandBehavior.cs │ │ ├── TreeViewItemLabelEditBehavior.cs │ │ └── ViewModelLocator.cs │ ├── Collections │ │ └── PriorityQuadTree.cs │ ├── ColorUtil.cs │ ├── CommandReference.cs │ ├── Composer.cs │ ├── Contracts.cs │ ├── Controls │ │ ├── AboutDialog.xaml │ │ ├── AboutDialog.xaml.cs │ │ ├── Adaptable │ │ │ ├── DragSelectionEventArgs.cs │ │ │ ├── IAdaptableControl.cs │ │ │ ├── IAutoTranslateAdapter.cs │ │ │ ├── ICanvasAdapter.cs │ │ │ ├── IDragDropAdapter.cs │ │ │ ├── IDragDropConverter.cs │ │ │ ├── IDragSelector.cs │ │ │ ├── IPickingAdapter.cs │ │ │ ├── ITransformAdapter.cs │ │ │ ├── IViewAwareContext.cs │ │ │ └── IViewingAdapter.cs │ │ ├── BalancedWrapPanel.cs │ │ ├── ClippingBorder.cs │ │ ├── CommonDialog.cs │ │ ├── ConfirmationDialog.xaml │ │ ├── ConfirmationDialog.xaml.cs │ │ ├── DirectoryPicker.cs │ │ ├── DomRecorderView.xaml │ │ ├── DomRecorderView.xaml.cs │ │ ├── EditTextBox.cs │ │ ├── ErrorDialog.xaml │ │ ├── ErrorDialog.xaml.cs │ │ ├── FilePicker.cs │ │ ├── FindFileDialog.xaml │ │ ├── FindFileDialog.xaml.cs │ │ ├── FindTargetsDialog.xaml │ │ ├── FindTargetsDialog.xaml.cs │ │ ├── FormattingTextBox.cs │ │ ├── Icon.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── ManageWindowLayoutsDialog.xaml │ │ ├── ManageWindowLayoutsDialog.xaml.cs │ │ ├── MessageBoxDialog.xaml │ │ ├── MessageBoxDialog.xaml.cs │ │ ├── OutputView.xaml │ │ ├── OutputView.xaml.cs │ │ ├── ProgressDialog.xaml │ │ ├── ProgressDialog.xaml.cs │ │ ├── PropertyEditing │ │ │ ├── Attributes.cs │ │ │ ├── DefaultPropertyGrouping.cs │ │ │ ├── EditorTemplateSelector.cs │ │ │ ├── IPropertyFactory.cs │ │ │ ├── PropertyGrid.cs │ │ │ ├── PropertyGridToolBar.cs │ │ │ ├── PropertyGridView.xaml │ │ │ ├── PropertyGridView.xaml.cs │ │ │ ├── PropertyNode.cs │ │ │ ├── PropertyView.cs │ │ │ ├── StandardValuesConverter.cs │ │ │ ├── TransactionPropertyFactory.cs │ │ │ ├── TransactionPropertyNode.cs │ │ │ └── ValueEditors │ │ │ │ ├── FilePathValueEditor.cs │ │ │ │ ├── FolderPathValueEditor.cs │ │ │ │ ├── IStringValueFilter.cs │ │ │ │ ├── MultiLineTextEditor.cs │ │ │ │ ├── RangeSliderValueEditor.cs │ │ │ │ ├── SliderEditor.cs │ │ │ │ ├── StandardValuesEditor.cs │ │ │ │ └── ValueEditor.cs │ │ ├── RangeBaseEx.cs │ │ ├── RangeSlider.cs │ │ ├── RangeSliderBase.cs │ │ ├── SettingsDialog.xaml │ │ ├── SettingsDialog.xaml.cs │ │ ├── SettingsLoadSaveDialog.xaml │ │ ├── SettingsLoadSaveDialog.xaml.cs │ │ ├── SizeBasedTemplateSelector.cs │ │ ├── SizeToContentDecorator.cs │ │ ├── SliderBox.xaml │ │ ├── SliderBox.xaml.cs │ │ ├── SnappingBitmap.cs │ │ ├── SplitButton.cs │ │ ├── StylableListView.cs │ │ ├── SwitchToDialog.xaml │ │ ├── SwitchToDialog.xaml.cs │ │ ├── TargetDialog.xaml │ │ ├── TargetDialog.xaml.cs │ │ ├── TcpIpTargetEditDialog.xaml │ │ ├── TcpIpTargetEditDialog.xaml.cs │ │ ├── TileView.cs │ │ ├── ToolBarItemTemplateSelector.cs │ │ ├── TreeListView.cs │ │ ├── TreeViewWithSelection.cs │ │ ├── UnhandledExceptionDialog.xaml │ │ ├── UnhandledExceptionDialog.xaml.cs │ │ ├── ValueChangedEventManager.cs │ │ ├── VirtualizingWrapPanel.cs │ │ ├── WindowLayoutNameDialog.xaml │ │ ├── WindowLayoutNameDialog.xaml.cs │ │ └── WindowsFormsHostEx.cs │ ├── DataContextSpy.cs │ ├── DebugUtils.cs │ ├── DelegateCommand.cs │ ├── DialogUtil.cs │ ├── Docking │ │ ├── ContentSettings.cs │ │ ├── DockContent.cs │ │ ├── DockIcon.cs │ │ ├── DockPanel.cs │ │ ├── DockedWindow.cs │ │ ├── DocklingsWindow.cs │ │ ├── FloatingWindow.cs │ │ ├── GridLayout.cs │ │ ├── IDockContent.cs │ │ ├── IDockLayout.cs │ │ ├── IDockable.cs │ │ ├── ResizablePopup.xaml │ │ ├── ResizablePopup.xaml.cs │ │ ├── SideBarButton.cs │ │ ├── SidePopup.cs │ │ ├── TabLayout.cs │ │ └── Win32Calls.cs │ ├── Dom │ │ ├── DataContextAdapter.cs │ │ ├── DomRecorder.cs │ │ └── HelpEnabledSchemaLoader.cs │ ├── ExportViewModelAttribute.cs │ ├── Extensions │ │ ├── DispatcherExtensions.cs │ │ ├── MiscExtensions.cs │ │ ├── TreeViewExtensions.cs │ │ └── VisualTreeExtensions.cs │ ├── FindFileResolver.cs │ ├── FreezableCursor.cs │ ├── IMenu.cs │ ├── IToolBar.cs │ ├── IViewModelMetadata.cs │ ├── ImageUtil.cs │ ├── Interop │ │ ├── CommandClientAdapter.cs │ │ ├── ContextMenuService.cs │ │ ├── ControlHostClientAdapter.cs │ │ ├── ControlHostServiceAdapter.cs │ │ ├── DialogService.cs │ │ ├── IContextMenuService.cs │ │ ├── KeysInterop.cs │ │ ├── MainWindowAdapter.cs │ │ ├── StandardInteropParts.cs │ │ ├── StatusServiceAdapter.cs │ │ └── Util.cs │ ├── Markup │ │ ├── CommandServiceExtension.cs │ │ ├── ConverterMarkupExtension.cs │ │ ├── EnumValuesExtension.cs │ │ ├── GenericExtensions.cs │ │ ├── LocExtension.cs │ │ ├── MultiConverterMarkupExtension.cs │ │ ├── ResourceMarkupExtension.cs │ │ ├── TransactionBinding.cs │ │ └── TypeConverterExtension.cs │ ├── MathUtil.cs │ ├── Models │ │ ├── AboutDialogViewModel.cs │ │ ├── AdaptableViewModelCollection.cs │ │ ├── BindingAdapterObject.cs │ │ ├── CommandItem.cs │ │ ├── ConfirmationDialogViewModel.cs │ │ ├── DialogViewModelBase.cs │ │ ├── ErrorDialogViewModel.cs │ │ ├── FindFileDialogViewModel.cs │ │ ├── FindTargetsViewModel.cs │ │ ├── IDialogViewModel.cs │ │ ├── MainMenuViewModel.cs │ │ ├── NodeTypePaletteItem.cs │ │ ├── NotifyPropertyChangedBase.cs │ │ ├── OutputVm.cs │ │ ├── PaletteContent.cs │ │ ├── ProgressViewModel.cs │ │ ├── SettingsDialogViewModel.cs │ │ ├── SettingsLoadSaveDialogViewModel.cs │ │ ├── ShowDialogEventArgs.cs │ │ ├── StandardViewModels.cs │ │ ├── StatusBarViewModel.cs │ │ ├── StatusImage.cs │ │ ├── StatusItem.cs │ │ ├── StatusText.cs │ │ ├── Target.cs │ │ ├── TargetDialogViewModel.cs │ │ ├── TcpIpTargetEditDialogViewModel.cs │ │ ├── ToolBarViewModel.cs │ │ ├── TreeViewModel.cs │ │ ├── WindowLayoutNewViewModel.cs │ │ └── WindowLayoutViewModels.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceDictionaryResourceAttribute.cs │ ├── ResourceUtil.cs │ ├── Resources.cs │ ├── Resources │ │ ├── Alphabetical.png │ │ ├── ByCategory.png │ │ ├── DockIcons.xaml │ │ ├── Localization.xml │ │ ├── PropertyEditors.xaml │ │ ├── Styles.xaml │ │ ├── clear.bmp │ │ ├── dialog_error.xaml │ │ ├── dialog_information.xaml │ │ ├── dialog_question.xaml │ │ ├── dialog_warning.xaml │ │ ├── error.ico │ │ ├── info.ico │ │ ├── ja │ │ │ └── Localization.xml │ │ └── warning.ico │ ├── Skins │ │ ├── ReferencedAssemblySkin.cs │ │ └── Skin.cs │ ├── Themes │ │ ├── ClippingBorder.xaml │ │ ├── CommonDialog.xaml │ │ ├── DockPanel.xaml │ │ ├── DockedWindow.xaml │ │ ├── FilePicker.xaml │ │ ├── FloatingWindow.xaml │ │ ├── Generic.xaml │ │ ├── PropertyGrid.xaml │ │ ├── PropertyGridToolBar.xaml │ │ ├── RangeSlider.xaml │ │ ├── SideBarButton.xaml │ │ ├── SidePopup.xaml │ │ ├── SplitButton.xaml │ │ ├── TabLayout.xaml │ │ ├── TileView.xaml │ │ └── TreeListView.xaml │ ├── ValueConverters │ │ ├── AdaptingValueConverters.cs │ │ ├── Converters.cs │ │ ├── DomDataTemplateSelector.cs │ │ ├── InterfaceTemplateSelector.cs │ │ ├── MenuItemStyleSelector.cs │ │ ├── MiscValueConverters.cs │ │ ├── TypeConverter.cs │ │ └── VisibilityValueConverters.cs │ ├── ViewModelRepository.cs │ ├── WpfImageResourceAttribute.cs │ ├── WpfMessageBox.cs │ └── WpfResourceUtil.cs ├── Atf.Gui │ ├── Applications │ │ ├── ApplicationUtil.cs │ │ ├── CanvasPrintDocument.cs │ │ ├── CommandCount.cs │ │ ├── CommandHistory.cs │ │ ├── CommandId.cs │ │ ├── CommandInfo.cs │ │ ├── CommandServiceBase.cs │ │ ├── CommandState.cs │ │ ├── CommandVisibility.cs │ │ ├── Commands │ │ │ ├── Command.cs │ │ │ ├── CompositeCommand.cs │ │ │ ├── ListChangeCommand.cs │ │ │ ├── ListInsertCommand.cs │ │ │ ├── ListRemoveCommand.cs │ │ │ ├── SetPropertyCommand.cs │ │ │ └── SetSelectionCommand.cs │ │ ├── ContentTypeService.cs │ │ ├── ContextRegistry.cs │ │ ├── DirectoryWatcherService.cs │ │ ├── DocumentClientInfo.cs │ │ ├── DocumentClosingEventArgs.cs │ │ ├── DocumentEventArgs.cs │ │ ├── DocumentEventType.cs │ │ ├── DocumentRegistry.cs │ │ ├── FileWatcherService.cs │ │ ├── HelpAboutCommand.cs │ │ ├── IColoringContext.cs │ │ ├── ICommandClient.cs │ │ ├── ICommandService.cs │ │ ├── IContextMenuCommandProvider.cs │ │ ├── IContextRegistry.cs │ │ ├── IDirectoryWatcherService.cs │ │ ├── IDockStateProvider.cs │ │ ├── IDocumentClient.cs │ │ ├── IDocumentRegistry.cs │ │ ├── IDocumentService.cs │ │ ├── IFileDialogService.cs │ │ ├── IHelpContext.cs │ │ ├── IHierarchicalInsertionContext.cs │ │ ├── IHistoryContext.cs │ │ ├── IInstancingContext.cs │ │ ├── ILastHitAware.cs │ │ ├── IMessageBoxService.cs │ │ ├── INamingContext.cs │ │ ├── IOrderedInsertionContext.cs │ │ ├── IPaletteClient.cs │ │ ├── IPaletteService.cs │ │ ├── IPinnable.cs │ │ ├── IPrintableDocument.cs │ │ ├── IPropertyEditingContext.cs │ │ ├── IReplaceUI.cs │ │ ├── IResultsUI.cs │ │ ├── ISearchUI.cs │ │ ├── ISearchableContextUI.cs │ │ ├── ISelectionContext.cs │ │ ├── ISelectionPathProvider.cs │ │ ├── ISettingsPathsProvider.cs │ │ ├── ISettingsService.cs │ │ ├── IStatusImage.cs │ │ ├── IStatusService.cs │ │ ├── IStatusText.cs │ │ ├── ISubSelectionContext.cs │ │ ├── IThumbnailResolver.cs │ │ ├── IUserFeedbackService.cs │ │ ├── IViewingContext.cs │ │ ├── IVisibilityContext.cs │ │ ├── IWindowLayoutService.cs │ │ ├── Listers │ │ │ ├── AssetLister.cs │ │ │ ├── FilteredTreeView.cs │ │ │ ├── GridControlAdapter.cs │ │ │ ├── IItemView.cs │ │ │ ├── ILayeringContext.cs │ │ │ ├── IListView.cs │ │ │ ├── ITreeListView.cs │ │ │ ├── ITreeView.cs │ │ │ ├── IndependentFilteredTreeView.cs │ │ │ └── ItemInfo.cs │ │ ├── MenuInfo.cs │ │ ├── NetworkTargetServices │ │ │ ├── Deci4pTargetProvider.cs │ │ │ ├── ITargetConsumer.cs │ │ │ ├── ITargetProvider.cs │ │ │ ├── SelectedTargetsChangedArgs.cs │ │ │ ├── TargetCommands.cs │ │ │ ├── TargetInfo.cs │ │ │ ├── TargetScope.cs │ │ │ ├── TcpIpTargetInfo.cs │ │ │ └── TcpIpTargetProvider.cs │ │ ├── PinnableActiveCollection.cs │ │ ├── PluginManagerForm.cs │ │ ├── PluginManagerForm.designer.cs │ │ ├── PluginManagerForm.resx │ │ ├── PluginManagerService.cs │ │ ├── PropertyEventArgs.cs │ │ ├── RecentDocumentCommands.cs │ │ ├── RecentDocumentInfo.cs │ │ ├── ScriptingService.cs │ │ ├── SettingsServiceBase.cs │ │ ├── StandardCommand.cs │ │ ├── StandardCommandGroup.cs │ │ ├── StandardControlGroup.cs │ │ ├── StandardDockAreas.cs │ │ ├── StandardEditHistoryCommands.cs │ │ ├── StandardFileCommands.cs │ │ ├── StandardLockCommands.cs │ │ ├── StandardMenu.cs │ │ ├── StandardSelectionCommands.cs │ │ ├── StandardShowCommands.cs │ │ ├── StandardViewCommands.cs │ │ ├── StatusService.cs │ │ ├── TextPrintDocument.cs │ │ ├── ThumbnailReadyEventArgs.cs │ │ ├── VersionControl │ │ │ ├── ISourceControlContext.cs │ │ │ ├── ISourceControlService.cs │ │ │ ├── ReconcileForm.Designer.cs │ │ │ ├── SourceControlCommandsBase.cs │ │ │ ├── SourceControlEventArgs.cs │ │ │ ├── SourceControlFileInfo.cs │ │ │ ├── SourceControlRevision.cs │ │ │ ├── SourceControlRevisionKind.cs │ │ │ ├── SourceControlService.cs │ │ │ └── SourceControlStatus.cs │ │ ├── WebServices │ │ │ └── Web References │ │ │ │ ├── com.scea.ship.submitBug │ │ │ │ ├── BugReportingService.cs │ │ │ │ ├── SubmitBug.discomap │ │ │ │ └── SubmitBug.wsdl │ │ │ │ └── com.scea.ship.versionCheck │ │ │ │ ├── VersionChecker.discomap │ │ │ │ ├── VersionChecker.wsdl │ │ │ │ └── VersionCheckerService.cs │ │ ├── WindowLayoutService.cs │ │ └── WindowLayoutServiceCommandsBase.cs │ ├── AssemblyBannerAttribute.cs │ ├── Atf.Gui.vs2010.csproj │ ├── Collections │ │ ├── AdaptableObservableCollection.cs │ │ ├── AdaptingCollection.cs │ │ ├── CollectionChangedListener.cs │ │ ├── LinkedListExtensions.cs │ │ ├── ObservableCollectionAdapter.cs │ │ ├── PriorityQueue.cs │ │ ├── ReferenceCollectionAdapter.cs │ │ └── SortedObservableCollection.cs │ ├── ColorUtil.cs │ ├── Controls │ │ ├── Adaptable │ │ │ ├── ColumnHeadersAdapter.cs │ │ │ ├── D2dDiagramTheme.cs │ │ │ ├── DiagramBorder.cs │ │ │ ├── DiagramDrawingStyle.cs │ │ │ ├── DiagramHitEventArgs.cs │ │ │ ├── DiagramHitRecord.cs │ │ │ ├── DiagramRenderer.cs │ │ │ ├── DiagramScrollBar.cs │ │ │ ├── DiagramTitleBar.cs │ │ │ ├── Graphs │ │ │ │ ├── BoundaryRoute.cs │ │ │ │ ├── Circuit │ │ │ │ │ ├── Annotation.cs │ │ │ │ │ ├── Circuit.cs │ │ │ │ │ ├── CircuitUtil.cs │ │ │ │ │ ├── Element.cs │ │ │ │ │ ├── ElementRef.cs │ │ │ │ │ ├── ElementReference.cs │ │ │ │ │ ├── ElementType.cs │ │ │ │ │ ├── Group.cs │ │ │ │ │ ├── GroupPin.cs │ │ │ │ │ ├── GroupReference.cs │ │ │ │ │ ├── ICircuitContainer.cs │ │ │ │ │ ├── LayerFolder.cs │ │ │ │ │ ├── MissingElementType.cs │ │ │ │ │ ├── Pin.cs │ │ │ │ │ ├── PinTarget.cs │ │ │ │ │ ├── Prototype.cs │ │ │ │ │ ├── PrototypeFolder.cs │ │ │ │ │ ├── SubCircuit.cs │ │ │ │ │ ├── SubCircuitInstance.cs │ │ │ │ │ └── Wire.cs │ │ │ │ ├── CircuitDefaultStyle.cs │ │ │ │ ├── CircuitElementInfo.cs │ │ │ │ ├── CircuitGroupInfo.cs │ │ │ │ ├── CircuitGroupPinInfo.cs │ │ │ │ ├── D2dGraphRenderer.cs │ │ │ │ ├── EdgeStyleData.cs │ │ │ │ ├── GraphHitRecord.cs │ │ │ │ ├── ICircuitElement.cs │ │ │ │ ├── ICircuitElementType.cs │ │ │ │ ├── ICircuitGroupPin.cs │ │ │ │ ├── ICircuitGroupType.cs │ │ │ │ ├── ICircuitPin.cs │ │ │ │ ├── IComplexState.cs │ │ │ │ ├── IEdgeRoute.cs │ │ │ │ ├── IEdgeStyleProvider.cs │ │ │ │ ├── IEditableGraph.cs │ │ │ │ ├── IEditableGraphContainer.cs │ │ │ │ ├── IGraph.cs │ │ │ │ ├── IGraphAdapter.cs │ │ │ │ ├── IGraphEdge.cs │ │ │ │ ├── IGraphNode.cs │ │ │ │ ├── IGraphNodeOptionsProvider.cs │ │ │ │ ├── IHierarchicalCircuitElementType.cs │ │ │ │ ├── IHierarchicalGraphNode.cs │ │ │ │ ├── IState.cs │ │ │ │ ├── StateIndicators.cs │ │ │ │ └── StateType.cs │ │ │ ├── IAnnotatedDiagram.cs │ │ │ └── IAnnotation.cs │ │ ├── CurveEditing │ │ │ ├── CurveEnums.cs │ │ │ ├── CurveInterfaces.cs │ │ │ ├── CurveUtils.cs │ │ │ ├── HermiteCurveEvaluator.cs │ │ │ ├── ICurveEvaluator.cs │ │ │ ├── LinearCurveEvaluator.cs │ │ │ └── Resources │ │ │ │ ├── AddKeysTool.png │ │ │ │ ├── BreakTangents.png │ │ │ │ ├── ClampedTangents.png │ │ │ │ ├── CurveSnap.png │ │ │ │ ├── CycleAfter.png │ │ │ │ ├── CycleAfterwithOffset.png │ │ │ │ ├── CycleBefore.png │ │ │ │ ├── CycleBeforewithOffset.png │ │ │ │ ├── Denormalize-curves.png │ │ │ │ ├── FlatTangents.png │ │ │ │ ├── FrameAll.png │ │ │ │ ├── FreeTangentWeight.png │ │ │ │ ├── InsertKeysTool.png │ │ │ │ ├── LinearTangents.png │ │ │ │ ├── LockTangent-Weight.png │ │ │ │ ├── MoveKeysTool.png │ │ │ │ ├── MoveNearestPickedKeyTool.png │ │ │ │ ├── NoAction.png │ │ │ │ ├── Normalizecurves.png │ │ │ │ ├── Panhv.cur │ │ │ │ ├── PlateauTangents.png │ │ │ │ ├── PointSnap.png │ │ │ │ ├── QuestionMark.cur │ │ │ │ ├── QuickHelp.txt │ │ │ │ ├── ScaleKeysTool.png │ │ │ │ ├── SelectionCursor.cur │ │ │ │ ├── SplineTangents.png │ │ │ │ ├── StepTangents.png │ │ │ │ ├── TimeSnap.png │ │ │ │ ├── UnifyTangents.png │ │ │ │ └── ValueSnap.png │ │ ├── FindFileAction.cs │ │ ├── PropertyEditing │ │ │ ├── BoundPropertyDescriptor.cs │ │ │ ├── BoundedFloatConverter.cs │ │ │ ├── BoundedIntConverter.cs │ │ │ ├── ColorEditor.cs │ │ │ ├── CustomizeAttribute.cs │ │ │ ├── DateTimeEditor.cs │ │ │ ├── EmbeddedPropertyView.cs │ │ │ ├── EnumTypeConverter.cs │ │ │ ├── ExclusiveEnumTypeConverter.cs │ │ │ ├── FlagsTypeConverter.cs │ │ │ ├── FloatArrayConverter.cs │ │ │ ├── ICacheablePropertyControl.cs │ │ │ ├── IDynamicTypeDescriptor.cs │ │ │ ├── IPropertyCustomSorter.cs │ │ │ ├── IPropertyEditingControlOwner.cs │ │ │ ├── IntColorConverter.cs │ │ │ ├── IntEnumTypeConverter.cs │ │ │ ├── PropertyChangedExtensions.cs │ │ │ ├── PropertyCollectionWrapper.cs │ │ │ ├── PropertyEditedEventArgs.cs │ │ │ ├── PropertyEditingContext.cs │ │ │ ├── PropertyErrorEventArgs.cs │ │ │ ├── PropertyGridMode.cs │ │ │ ├── PropertySorting.cs │ │ │ ├── PropertyUtils.cs │ │ │ ├── ReadOnlyConverter.cs │ │ │ ├── SelectionPropertyEditingContext.cs │ │ │ ├── SortableBindingList.cs │ │ │ ├── UnboundPropertyDescriptor.cs │ │ │ └── UniformFloatArrayConverter.cs │ │ ├── SearchResultsListView.cs │ │ └── Timelines │ │ │ ├── DefaultTimelineConstraints.cs │ │ │ ├── EventMovedEventArgs.cs │ │ │ ├── GhostInfo.cs │ │ │ ├── GhostType.cs │ │ │ ├── HitRecord.cs │ │ │ ├── HitType.cs │ │ │ ├── IEvent.cs │ │ │ ├── IGroup.cs │ │ │ ├── IHierarchicalTimeline.cs │ │ │ ├── IHierarchicalTimelineList.cs │ │ │ ├── IInterval.cs │ │ │ ├── IKey.cs │ │ │ ├── IMarker.cs │ │ │ ├── ITimeline.cs │ │ │ ├── ITimelineDocument.cs │ │ │ ├── ITimelineObject.cs │ │ │ ├── ITimelineObjectCreator.cs │ │ │ ├── ITimelineReference.cs │ │ │ ├── ITrack.cs │ │ │ ├── TimelineConstraints.cs │ │ │ ├── TimelineLayout.cs │ │ │ ├── TimelinePath.cs │ │ │ └── TimelineReferenceOptions.cs │ ├── CursorResourceAttribute.cs │ ├── Direct2D │ │ ├── D2dBitmap.cs │ │ ├── D2dBitmapBrush.cs │ │ ├── D2dBitmapGraphics.cs │ │ ├── D2dBrush.cs │ │ ├── D2dFactory.cs │ │ ├── D2dGeometry.cs │ │ ├── D2dGeometrySink.cs │ │ ├── D2dGraphics.cs │ │ ├── D2dHwndGraphics.cs │ │ ├── D2dLinearGradientBrush.cs │ │ ├── D2dRadialGradientBrush.cs │ │ ├── D2dResource.cs │ │ ├── D2dShapes.cs │ │ ├── D2dSolidColorBrush.cs │ │ ├── D2dStrokeStyle.cs │ │ ├── D2dTextFormat.cs │ │ ├── D2dTextLayout.cs │ │ ├── D2dToSharpDX.cs │ │ ├── D2dUtil.cs │ │ └── D2dWicGraphics.cs │ ├── DirectWrite │ │ ├── ClusterMetrics.cs │ │ ├── HitTestMetrics.cs │ │ ├── LineMetrics.cs │ │ └── TextEditor.cs │ ├── Dom │ │ ├── AttributePropertyDescriptor.cs │ │ ├── BindingAdapter.cs │ │ ├── ChildAttributeCollectionPropertyDescriptor.cs │ │ ├── ChildAttributePropertyDescriptor.cs │ │ ├── ChildPropertyDescriptor.cs │ │ ├── CustomTypeDescriptorNodeAdapter.cs │ │ ├── DomNodeHelpAdapter.cs │ │ ├── DomNodeQueryRoot.cs │ │ ├── DomNodeReplaceToolStrip.cs │ │ ├── DomNodeSearchToolStrip.cs │ │ ├── DomNodeTypeExtensions.cs │ │ ├── EditingContext.cs │ │ ├── GlobalHistoryContext.cs │ │ ├── HistoryContext.cs │ │ ├── ListContext.cs │ │ ├── MultiPropertyDescriptor.cs │ │ ├── MultipleHistoryContext.cs │ │ ├── NodeTypePaletteItem.cs │ │ ├── ObservableCustomTypeDescriptorNodeAdapter.cs │ │ ├── PropertyDescriptor.cs │ │ ├── SelectionContext.cs │ │ ├── Template.cs │ │ └── TemplateFolder.cs │ ├── EnumUtil.cs │ ├── FileFilterBuilder.cs │ ├── Gdi32.cs │ ├── GroupAttribute.cs │ ├── IAnnotatedParams.cs │ ├── IPerformanceTarget.cs │ ├── ImageResourceAttribute.cs │ ├── Input │ │ ├── DragEventArgs.cs │ │ ├── KeyEventArgs.cs │ │ ├── KeyPressEventArgs.cs │ │ ├── Keys.cs │ │ ├── Message.cs │ │ ├── MouseButtons.cs │ │ ├── MouseEventArgs.cs │ │ └── PreviewKeyDownEventArgs.cs │ ├── KeysUtil.cs │ ├── Models │ │ ├── AdapterViewModel.cs │ │ └── CheckedTreeNode.cs │ ├── ObservableUtil.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Rendering │ │ ├── AxisSystemType.cs │ │ ├── Camera.cs │ │ ├── ControlScheme.cs │ │ ├── ControlSchemes.cs │ │ ├── HitRecord.cs │ │ ├── IBeforeLocalTransform.cs │ │ ├── IBoundable.cs │ │ ├── IBuildSceneNode.cs │ │ ├── IGeometricPick.cs │ │ ├── IIntersectable.cs │ │ ├── IManipulator.cs │ │ ├── IPickAction.cs │ │ ├── IQueryObjectStats.cs │ │ ├── IRenderAction.cs │ │ ├── IRenderObject.cs │ │ ├── IRenderPick.cs │ │ ├── IRenderStateCreator.cs │ │ ├── IRenderThumbnail.cs │ │ ├── IRenderableParent.cs │ │ ├── ISceneGraphHierarchy.cs │ │ ├── ISetsLocalTransform.cs │ │ ├── ITransformable.cs │ │ ├── ManipulatorEventArgs.cs │ │ ├── MaxControlScheme.cs │ │ ├── MayaControlScheme.cs │ │ ├── MayaLaptopControlScheme.cs │ │ ├── ObjectStats.cs │ │ ├── PickEventArgs.cs │ │ ├── ProjectionType.cs │ │ ├── QuadViewLayoutType.cs │ │ ├── RenderMode.cs │ │ ├── RenderObjectList.cs │ │ ├── RenderState.cs │ │ ├── RenderStateGuardian.cs │ │ ├── RenderStateSorter.cs │ │ ├── RenderStateStack.cs │ │ ├── Scene.cs │ │ ├── SceneGraphBuilder.cs │ │ ├── SceneNode.cs │ │ ├── TransformUtils.cs │ │ ├── TransformationTypes.cs │ │ ├── TraverseNode.cs │ │ ├── TraverseSortUtils.cs │ │ ├── TraverseState.cs │ │ └── ViewTypes.cs │ ├── Resources.cs │ ├── Resources │ │ ├── 4WAY05.CUR │ │ ├── AlignBottoms16.png │ │ ├── AlignBottoms24.png │ │ ├── AlignBottoms32.png │ │ ├── AlignCenters16.png │ │ ├── AlignCenters24.png │ │ ├── AlignCenters32.png │ │ ├── AlignLefts16.png │ │ ├── AlignLefts24.png │ │ ├── AlignLefts32.png │ │ ├── AlignMiddles16.png │ │ ├── AlignMiddles24.png │ │ ├── AlignMiddles32.png │ │ ├── AlignRights16.png │ │ ├── AlignRights24.png │ │ ├── AlignRights32.png │ │ ├── AlignTops16.png │ │ ├── AlignTops24.png │ │ ├── AlignTops32.png │ │ ├── Alphabetical.png │ │ ├── AtfIcon.ico │ │ ├── AtfLogo.png │ │ ├── ByCategory.png │ │ ├── Computer.ico │ │ ├── Copy16.png │ │ ├── Copy24.png │ │ ├── Copy32.png │ │ ├── Cut16.png │ │ ├── Cut24.png │ │ ├── Cut32.png │ │ ├── Data16.png │ │ ├── Data24.png │ │ ├── Data32.png │ │ ├── Delete16.png │ │ ├── Delete24.png │ │ ├── Delete32.png │ │ ├── Document16.png │ │ ├── Document24.png │ │ ├── Document32.png │ │ ├── Find16.png │ │ ├── Find24.png │ │ ├── Find32.png │ │ ├── FitToSize16.png │ │ ├── FitToSize24.png │ │ ├── FitToSize32.png │ │ ├── Folder.ico │ │ ├── Folder16.png │ │ ├── Folder24.png │ │ ├── Folder32.png │ │ ├── Group16.png │ │ ├── Group24.png │ │ ├── Group32.png │ │ ├── HO_SPLIT.CUR │ │ ├── Help16.png │ │ ├── Help24.png │ │ ├── Help32.png │ │ ├── HideSelection16.png │ │ ├── HideSelection24.png │ │ ├── HideSelection32.png │ │ ├── Isolate16.png │ │ ├── Isolate24.png │ │ ├── Isolate32.png │ │ ├── Localization.xml │ │ ├── Lock16.png │ │ ├── Lock24.png │ │ ├── Lock32.png │ │ ├── LockUI.png │ │ ├── Paste16.png │ │ ├── Paste24.png │ │ ├── Paste32.png │ │ ├── Preferences16.png │ │ ├── Preferences24.png │ │ ├── Preferences32.png │ │ ├── Redo16.png │ │ ├── Redo24.png │ │ ├── Redo32.png │ │ ├── Reset16.png │ │ ├── SCEA.png │ │ ├── Save16.png │ │ ├── Save24.png │ │ ├── Save32.png │ │ ├── SaveAll16.png │ │ ├── SaveAll24.png │ │ ├── SaveAll32.png │ │ ├── SaveAs16.png │ │ ├── SaveAs24.png │ │ ├── SaveAs32.png │ │ ├── Selection16.png │ │ ├── Selection24.png │ │ ├── Selection32.png │ │ ├── ShowAll16.png │ │ ├── ShowAll24.png │ │ ├── ShowAll32.png │ │ ├── ShowSelection16.png │ │ ├── ShowSelection24.png │ │ ├── ShowSelection32.png │ │ ├── SubDocument16.png │ │ ├── SubDocument24.png │ │ ├── SubDocument32.png │ │ ├── Thumbs.db │ │ ├── Undo16.png │ │ ├── Undo24.png │ │ ├── Undo32.png │ │ ├── Ungroup16.png │ │ ├── Ungroup24.png │ │ ├── Ungroup32.png │ │ ├── Unlock16.png │ │ ├── Unlock24.png │ │ ├── Unlock32.png │ │ ├── UnlockUI.png │ │ ├── Unsorted.png │ │ ├── VE_SPLIT.CUR │ │ ├── ZoomIn16.png │ │ ├── ZoomIn24.png │ │ ├── ZoomIn32.png │ │ ├── ZoomOut16.png │ │ ├── ZoomOut24.png │ │ ├── ZoomOut32.png │ │ ├── add.png │ │ ├── arrow_down_blue.png │ │ ├── arrow_up_blue.png │ │ ├── checked_items.png │ │ ├── component16.png │ │ ├── component24.png │ │ ├── component32.png │ │ ├── components.png │ │ ├── cube_molecule.png │ │ ├── cube_molecule_new.png │ │ ├── delete.png │ │ ├── diskdrive16.png │ │ ├── diskdrive24.png │ │ ├── diskdrive32.png │ │ ├── document_add.png │ │ ├── document_check.png │ │ ├── document_into.png │ │ ├── document_lock.png │ │ ├── document_refresh.png │ │ ├── document_revert.png │ │ ├── document_unknown.png │ │ ├── document_warning.png │ │ ├── dom_interface.png │ │ ├── edit_locked16x16.png │ │ ├── edit_locked24x24.png │ │ ├── edit_locked32x32.png │ │ ├── edit_unlocked16x16.png │ │ ├── edit_unlocked24x24.png │ │ ├── edit_unlocked32x32.png │ │ ├── factory.png │ │ ├── filter.ico │ │ ├── folderClosedReference16.png │ │ ├── folderOpenReference16.png │ │ ├── gear_preferences.ico │ │ ├── greenPlus13.png │ │ ├── ja │ │ │ └── Localization.xml │ │ ├── layer.png │ │ ├── lock13.png │ │ ├── nav_left.png │ │ ├── nav_right.png │ │ ├── package.png │ │ ├── package_error.png │ │ ├── pin_green16.png │ │ ├── pin_green24.png │ │ ├── pin_green32.png │ │ ├── pin_grey16.png │ │ ├── pin_grey24.png │ │ ├── pin_grey32.png │ │ ├── prefabFolder.png │ │ ├── printer16.png │ │ ├── printer24.png │ │ ├── printer32.png │ │ ├── printer_preferences16.png │ │ ├── printer_preferences24.png │ │ ├── printer_preferences32.png │ │ ├── printer_view16.png │ │ ├── printer_view24.png │ │ ├── printer_view32.png │ │ ├── redCheck13.png │ │ ├── reference.png │ │ ├── referenceNull.png │ │ ├── referenceOverride.png │ │ ├── resource.png │ │ ├── resourceFolder.png │ │ ├── search.ico │ │ ├── selection_find16x16.png │ │ ├── selection_find24x24.png │ │ ├── selection_find32x32.png │ │ ├── sort_ascending.png │ │ ├── sort_descending.png │ │ ├── sourceControl_add.png │ │ ├── sourceControl_checkin.png │ │ ├── sourceControl_checkout.png │ │ ├── sourceControl_connect.png │ │ ├── sourceControl_disable.png │ │ ├── sourceControl_enable.png │ │ ├── sourceControl_getLatest.png │ │ ├── sourceControl_reconcile.png │ │ ├── sourceControl_refresh.png │ │ ├── sourceControl_revert.png │ │ ├── ui_locked16x16.png │ │ ├── ui_locked24x24.png │ │ ├── ui_locked32x32.png │ │ ├── ui_unlocked16x16.png │ │ ├── ui_unlocked24x24.png │ │ ├── ui_unlocked32x32.png │ │ ├── unknown13.png │ │ └── warning.ico │ └── User32.cs ├── Atf.IronPython │ ├── Atf.IronPython.vs2010.csproj │ ├── BasicPythonService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── WinForms │ │ └── PythonService.cs ├── Atf.Obj │ ├── Atf.Obj.vs2010.csproj │ ├── DataSet.cs │ ├── Mesh.cs │ ├── Node.cs │ ├── ObjReader │ │ ├── FaceSet.cs │ │ ├── Group.cs │ │ ├── MaterialDef.cs │ │ ├── MtlFile.cs │ │ └── ObjFile.cs │ ├── ObjResolver.cs │ ├── ObjSchemaTypeLoader.cs │ ├── PrimitiveSet.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Shader.cs │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ └── obj.xsd ├── Atf.Osc │ ├── Atf.Osc.vs2010.csproj │ ├── IOscService.cs │ ├── LemurOscService.cs │ ├── OscCommandReceiver.cs │ ├── OscCommands.cs │ ├── OscDialog.Designer.cs │ ├── OscDialog.cs │ ├── OscDialog.resx │ ├── OscService.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Atf.Perforce │ ├── Atf.Perforce.vs2010.csproj │ ├── ConnectionManager.cs │ ├── Connections.Designer.cs │ ├── Connections.cs │ ├── Connections.resx │ ├── FileInfo.cs │ ├── LoginDialog.Designer.cs │ ├── LoginDialog.cs │ ├── LoginDialog.resx │ ├── PerforceRequest.cs │ ├── PerforceService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Localization.xml │ │ ├── ja │ │ │ └── Localization.xml │ │ ├── p4v_file_add.png │ │ ├── p4v_file_add_other_ws.png │ │ ├── p4v_file_branch.png │ │ ├── p4v_file_delete.png │ │ ├── p4v_file_delete_other.png │ │ ├── p4v_file_deleted.png │ │ ├── p4v_file_differs.png │ │ ├── p4v_file_edit_head.png │ │ ├── p4v_file_edit_other.png │ │ ├── p4v_file_lock.png │ │ ├── p4v_file_lock_other.png │ │ ├── p4v_file_needs_resolve.png │ │ ├── p4v_file_notmapped.png │ │ ├── p4v_file_notsync.png │ │ ├── p4v_file_sync.png │ │ ├── p4v_file_txt.png │ │ ├── p4v_file_ws.png │ │ ├── p4v_folder_black_triangle.png │ │ └── p4v_integrate.png │ ├── UriPaths.cs │ ├── UsersList.Designer.cs │ ├── UsersList.cs │ ├── UsersList.resx │ ├── WorkspaceList.Designer.cs │ ├── WorkspaceList.cs │ └── WorkspaceList.resx ├── Atf.Subversion │ ├── Atf.Subversion.vs2010.csproj │ ├── Localization.Designer.cs │ ├── Localization.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── actionadded.ico │ │ ├── actiondeleted.ico │ │ ├── actionmerged.ico │ │ ├── actionmodified.ico │ │ ├── actionmoved.ico │ │ └── normal.png │ └── SubversionService.cs └── Atf.SyntaxEditorControl │ ├── Atf.SyntaxEditorControl.vs2010.csproj │ ├── Controls │ └── SyntaxEditorControl │ │ ├── BreakpointEventArgs.cs │ │ ├── BreakpointIndicator.cs │ │ ├── EditorTextChangedEventArgs.cs │ │ ├── IBreakpoint.cs │ │ ├── ISyntaxEditorControl.cs │ │ ├── Languages.cs │ │ ├── LuaDynamicSyntaxLanguage.cs │ │ ├── MouseHoverOverTokenEventArgs.cs │ │ ├── ShowContextMenuEventArg.cs │ │ ├── SyntaxEditorControl.cs │ │ ├── SyntaxEditorRegions.cs │ │ ├── TextEditorFactory.cs │ │ └── Token.cs │ ├── LanguageDefinitions │ ├── CSharpDefinition.xml │ ├── CgDefinition.xml │ ├── ImatDefinition.xml │ ├── LuaDefinition.xml │ ├── PythonDefinition.xml │ ├── SquirrelDefinition.xml │ └── XMLDefinition.xml │ └── Properties │ └── AssemblyInfo.cs ├── License.txt ├── README.md ├── ReleaseNotes.doc ├── ReleaseNotes_j.doc ├── Samples ├── CircuitEditor │ ├── Annotation.cs │ ├── BirdEyeView.cs │ ├── CategoryUniqueIdValidator.cs │ ├── Circuit.cs │ ├── CircuitDocument.cs │ ├── CircuitEditingContext.cs │ ├── CircuitEditor.vs2010.csproj │ ├── CircuitMagnifier.cs │ ├── CircuitReader.cs │ ├── CircuitRenderer.cs │ ├── CircuitValidator.cs │ ├── CircuitWriter.cs │ ├── Connection.cs │ ├── DocVersionTransforms │ │ ├── Migrator.cs │ │ └── upgrades │ │ │ └── CircuitEditor1to2.cs │ ├── DynamicPropertyCommands.cs │ ├── Editor.cs │ ├── Expression │ │ ├── DynamicDomNode.cs │ │ ├── Expression.cs │ │ ├── ExpressionCommands.cs │ │ ├── ExpressionDlg.Designer.cs │ │ ├── ExpressionDlg.cs │ │ ├── ExpressionDlg.resx │ │ └── ExpressionManager.cs │ ├── Group.cs │ ├── GroupPin.cs │ ├── GroupReference.cs │ ├── GroupingCommands.cs │ ├── HelpAboutCommand.cs │ ├── LayerFolder.cs │ ├── LayeringCommands.cs │ ├── LayeringContext.cs │ ├── MissingModule.cs │ ├── Module.cs │ ├── ModuleElementInfo.cs │ ├── ModulePlugin.cs │ ├── ModuleProperties.cs │ ├── ModuleRef.cs │ ├── ModuleReference.cs │ ├── Pin.cs │ ├── PrintableDocument.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Prototype.cs │ ├── PrototypeFolder.cs │ ├── PrototypingContext.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── DynamicPropertyForm.Designer.cs │ │ ├── DynamicPropertyForm.cs │ │ ├── DynamicPropertyForm.resx │ │ ├── Localization.xml │ │ ├── and_16.png │ │ ├── and_32.png │ │ ├── annotation.png │ │ ├── button_16.png │ │ ├── button_32.png │ │ ├── ja │ │ │ ├── About.rtf │ │ │ └── Localization.xml │ │ ├── light_16.png │ │ ├── light_32.png │ │ ├── or_16.png │ │ ├── or_32.png │ │ ├── sound_16.png │ │ ├── sound_32.png │ │ ├── speaker_16.png │ │ └── speaker_32.png │ ├── SchemaLoader.cs │ ├── Template.cs │ ├── TemplateFolder.cs │ ├── TemplatingCommands.cs │ ├── TemplatingContext.cs │ ├── Tests │ │ ├── CircuitEditorTester.cs │ │ └── CircuitTestCommands.cs │ ├── app.config │ ├── data │ │ └── Example.circuit │ └── schemas │ │ ├── Circuit.xsd │ │ ├── GenSchemaDef.bat │ │ └── Schema.cs ├── CodeEditor │ ├── CodeDocument.cs │ ├── CodeEditor.vs2010.csproj │ ├── Editor.cs │ ├── HelpAboutCommand.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── File_edit.ico │ │ ├── Localization.xml │ │ └── ja │ │ │ └── Localization.xml │ ├── SourceControlContext.cs │ └── app.config ├── DiagramEditor │ ├── DiagramEditor.vs2010.csproj │ ├── HelpAboutCommand.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── About.rtf │ └── app.config ├── DomPropertyEditor │ ├── DomPropertyEditor.vs2010.csproj │ ├── Editor.cs │ ├── GameEditingContext.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Adept.png │ │ ├── Adequate.png │ │ ├── Angry.png │ │ ├── Annoyed.png │ │ ├── Apprentice.png │ │ ├── Capable.png │ │ ├── Depressed.png │ │ ├── Enthusiastic.png │ │ ├── Frustrated.png │ │ ├── Happy.png │ │ ├── Hostile.png │ │ ├── Journeyman.png │ │ ├── Master.png │ │ └── Thrilled.png │ ├── SchemaLoader.cs │ ├── Schemas │ │ ├── GenSchemaDef.cmd │ │ ├── Schema.cs │ │ └── game.xsd │ ├── TreeLister.cs │ └── app.config ├── DomTreeEditor │ ├── ControlPoint.cs │ ├── Curve.cs │ ├── CurveLimitValidator.cs │ ├── Document.cs │ ├── DomTreeEditor.vs2010.csproj │ ├── EditingContext.cs │ ├── Editor.cs │ ├── EmptyRef.cs │ ├── HelpAboutCommand.cs │ ├── PaletteClient.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── DefaultLayout1.xml │ │ ├── control.png │ │ ├── curve_16.png │ │ ├── font.png │ │ ├── form.png │ │ ├── package.png │ │ ├── ref.png │ │ ├── refEmpty.png │ │ ├── shader.png │ │ ├── sprite.png │ │ ├── text.png │ │ ├── texture.png │ │ └── transform.png │ ├── SchemaLoader.cs │ ├── Schemas │ │ ├── CurveSchema.xsd │ │ ├── GenSchemaDef.bat │ │ ├── UISchema.cs │ │ └── UISchema.xsd │ ├── TreeLister.cs │ ├── TreeView.cs │ ├── UI.cs │ ├── UIAnimation.cs │ ├── UIControl.cs │ ├── UIFont.cs │ ├── UIForm.cs │ ├── UIObject.cs │ ├── UIPackage.cs │ ├── UIRef.cs │ ├── UIShader.cs │ ├── UISprite.cs │ ├── UITextItem.cs │ ├── UITexture.cs │ ├── UITransform.cs │ ├── Validator.cs │ └── app.config ├── FileExplorer │ ├── App.config │ ├── FileDataExtensions.cs │ ├── FileExplorer.vs2010.csproj │ ├── FileViewer.cs │ ├── FolderViewer.cs │ ├── HelpAboutCommand.cs │ ├── IFileDataExtension.cs │ ├── MainForm.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.txt │ └── Resources │ │ └── About.rtf ├── FsmEditor │ ├── Annotation.cs │ ├── Document.cs │ ├── EditingContext.cs │ ├── Editor.cs │ ├── Fsm.cs │ ├── FsmEditor.vs2010.csproj │ ├── HelpAboutCommand.cs │ ├── PaletteClient.cs │ ├── PrintableDocument.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Prototype.cs │ ├── PrototypeFolder.cs │ ├── PrototypingContext.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── Localization.xml │ │ ├── PythonQuickStart.txt │ │ ├── annotation.png │ │ ├── ja │ │ │ └── Localization.xml │ │ └── state.png │ ├── SchemaLoader.cs │ ├── State.cs │ ├── Transition.cs │ ├── TransitionRouter.cs │ ├── ViewingContext.cs │ ├── app.config │ ├── data │ │ └── Example.fsm │ └── schemas │ │ ├── FSM.xsd │ │ ├── FSM_customized.xsd │ │ ├── GenSchemaDef.bat │ │ └── Schema.cs ├── ModelViewer │ ├── HelpAboutCommand.cs │ ├── ModelDocument.cs │ ├── ModelViewer.cs │ ├── ModelViewer.vs2010.csproj │ ├── ModelViewerSample.suo │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RenderCommands.cs │ ├── RenderView.cs │ ├── Rendering │ │ ├── RenderPrimitives.cs │ │ └── RenderTransform.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── Backface16.png │ │ ├── Backface24.png │ │ ├── Backface32.png │ │ ├── Lighting16.png │ │ ├── Lighting24.png │ │ ├── Lighting32.png │ │ ├── Outlined16.png │ │ ├── Outlined24.png │ │ ├── Outlined32.png │ │ ├── SmoothShading16.png │ │ ├── SmoothShading24.png │ │ ├── SmoothShading32.png │ │ ├── Texture16.png │ │ ├── Texture24.png │ │ ├── Texture32.png │ │ ├── Wireframe16.png │ │ ├── Wireframe24.png │ │ └── Wireframe32.png │ ├── ShoutOutputService.cs │ └── app.config ├── Samples.vs2010.sln ├── SimpleDomEditor │ ├── DomNodeAdapters │ │ ├── Event.cs │ │ ├── EventSequence.cs │ │ └── Resource.cs │ ├── DomNodeNameSearchControl.Designer.cs │ ├── DomNodeNameSearchControl.cs │ ├── DomNodeNameSearchControl.resx │ ├── DomNodeNameSearchService.cs │ ├── DomNodeQueryMatch.cs │ ├── DomNodeQueryable.cs │ ├── Editor.cs │ ├── EventContext.cs │ ├── EventListEditor.cs │ ├── EventSequenceContext.cs │ ├── EventSequenceDocument.cs │ ├── GenericSelectionContext.cs │ ├── HelpAboutCommand.cs │ ├── PaletteClient.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceListEditor.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── animation.png │ │ ├── dom_collection.png │ │ ├── dom_object.png │ │ ├── dom_repository.png │ │ ├── event.png │ │ ├── geometry.png │ │ └── resource.png │ ├── SchemaLoader.cs │ ├── SimpleDomEditor.vs2010.csproj │ ├── app.config │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ └── eventSequence.xsd ├── SimpleDomEditorWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── DomNodeAdapters │ │ ├── Event.cs │ │ ├── EventSequence.cs │ │ └── Resource.cs │ ├── Editor.cs │ ├── EventSequenceContext.cs │ ├── EventSequenceDocument.cs │ ├── EventSequenceView.xaml │ ├── EventSequenceView.xaml.cs │ ├── PaletteClient.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ResourceListContext.cs │ ├── ResourceListEditor.cs │ ├── ResourceListView.xaml │ ├── ResourceListView.xaml.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── Localization.xml │ │ ├── animation.png │ │ ├── dom_collection.png │ │ ├── dom_object.png │ │ ├── dom_repository.png │ │ ├── event.png │ │ ├── geometry.png │ │ ├── ja │ │ │ ├── About.rtf │ │ │ └── Localization.xml │ │ └── resource.png │ ├── SchemaLoader.cs │ ├── SelectionConverter.cs │ ├── SimpleDomEditorWpf.vs2010.csproj │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ └── eventSequence.xsd ├── SimpleDomNoXmlEditor │ ├── DomNodeAdapters │ │ ├── Event.cs │ │ ├── EventSequence.cs │ │ └── Resource.cs │ ├── DomTypes.cs │ ├── Editor.cs │ ├── EventContext.cs │ ├── EventListEditor.cs │ ├── EventSequenceContext.cs │ ├── EventSequenceDocument.cs │ ├── HelpAboutCommand.cs │ ├── PaletteClient.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceListEditor.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── animation.png │ │ ├── dom_collection.png │ │ ├── dom_object.png │ │ ├── dom_repository.png │ │ ├── event.png │ │ ├── geometry.png │ │ └── resource.png │ ├── SimpleDomNoXmlEditor.vs2010.csproj │ └── app.config ├── StatechartEditor │ ├── Annotation.cs │ ├── BoundsValidator.cs │ ├── ConditionalState.cs │ ├── Document.cs │ ├── EditingContext.cs │ ├── Editor.cs │ ├── FinalState.cs │ ├── HelpAboutCommand.cs │ ├── HistoryState.cs │ ├── PaletteClient.cs │ ├── PrintableDocument.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Prototype.cs │ ├── PrototypeFolder.cs │ ├── PrototypingContext.cs │ ├── Reaction.cs │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── annotation.png │ │ ├── conditional.png │ │ ├── final.png │ │ ├── history.png │ │ ├── reaction.png │ │ ├── start.png │ │ ├── state.png │ │ └── statechartDoc.png │ ├── SchemaLoader.cs │ ├── StartState.cs │ ├── State.cs │ ├── StateBase.cs │ ├── Statechart.cs │ ├── StatechartEditor.vs2010.csproj │ ├── StatechartValidator.cs │ ├── Transition.cs │ ├── ViewingContext.cs │ ├── app.config │ ├── data │ │ └── Example.statechart │ └── schemas │ │ ├── GenSchemaDef.bat │ │ ├── Schema.cs │ │ └── Statechart.xsd ├── TargetManager │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Localization.xml │ │ └── ja │ │ │ └── Localization.xml │ ├── TargetManager.vs2010.csproj │ └── app.config ├── TimelineEditor │ ├── DomNodeAdapters │ │ ├── BaseEvent.cs │ │ ├── Group.cs │ │ ├── Interval.cs │ │ ├── Key.cs │ │ ├── Marker.cs │ │ ├── Timeline.cs │ │ ├── TimelineReference.cs │ │ └── Track.cs │ ├── HelpAboutCommand.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources.cs │ ├── Resources │ │ ├── About.rtf │ │ ├── Localization.xml │ │ ├── group.png │ │ ├── interval.png │ │ ├── ja │ │ │ └── Localization.xml │ │ ├── key.png │ │ ├── marker.png │ │ └── track.png │ ├── Schema.cs │ ├── SchemaLoader.cs │ ├── TimelineCommands.cs │ ├── TimelineConstraints.cs │ ├── TimelineContext.cs │ ├── TimelineDocument.cs │ ├── TimelineEditor.cs │ ├── TimelineEditor.vs2010.csproj │ ├── TimelineValidator.cs │ ├── app.config │ ├── data │ │ ├── 100.timeline │ │ ├── 100_10.timeline │ │ ├── 100_2.timeline │ │ ├── 100_3.timeline │ │ ├── 100_4.timeline │ │ ├── 100_5.timeline │ │ ├── 100_6.timeline │ │ ├── 100_7.timeline │ │ ├── 100_8.timeline │ │ ├── 100_9.timeline │ │ └── 1100.timeline │ └── schemas │ │ ├── GenSchemaDef.bat │ │ └── timeline.xsd ├── TreeListControl │ ├── AutomationSetup.cs │ ├── CoolSUVs.xml │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ReadMe.txt │ ├── TreeListControl.vs2010.csproj │ ├── TreeView.cs │ └── app.config ├── TreeListEditor │ ├── DataGenerator.cs │ ├── Editors.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RawUsage.cs │ ├── TreeListEditor.vs2010.csproj │ └── app.config ├── UsingDirect2D │ ├── Form1.cs │ ├── GdiCanvas.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Level1.png │ ├── UsingDirect2D.vs2010.csproj │ └── app.config ├── UsingDom │ ├── DomNodeAdapters │ │ ├── Dwarf.cs │ │ ├── Game.cs │ │ ├── GameObject.cs │ │ └── Ogre.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Schemas │ │ ├── GameSchema.cs │ │ ├── GameSchemaLoader.cs │ │ ├── GenSchemaDef.bat │ │ └── game.xsd │ ├── UsingDom.vs2010.csproj │ └── app.config └── WpfPropertyEditor │ ├── App.xaml │ ├── App.xaml.cs │ ├── CoolSUVs.xml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ObjectSelectionContext.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── PropertyFactory.cs │ ├── ReadMe.txt │ ├── Suv.cs │ └── WpfPropertyEditor.vs2010.csproj ├── Test ├── BuildAll.cmd ├── BuildAllDebug.cmd ├── BuildAllRelease.cmd ├── BuildAllReleaseAndSmokeTest.cmd ├── BuildAllVS2010.cmd ├── BuildAllVS2010Debug.cmd ├── BuildAllVS2010Release.cmd ├── BuildAndRunAllTests.cmd ├── Everything.vs2010.sln ├── Everything.vs2010.sln.DotSettings ├── FunctionalTests │ ├── CircuitEditorTestScripts │ │ ├── AddAllItems.py │ │ ├── CopyPaste.py │ │ ├── CutPaste.py │ │ ├── DeleteLayers.py │ │ ├── EditSaveCloseAndReopen.py │ │ ├── TestGroups.py │ │ ├── TestLayers.py │ │ ├── TestTemplates.py │ │ └── TestVersionMigrator.py │ ├── CircuitEditorTests.cs │ ├── CodeEditorTestScripts │ │ └── CreateNewDocument.py │ ├── CodeEditorTests.cs │ ├── CommonTestScripts │ │ ├── CircuitEditorUtil.py │ │ ├── CreateNewDocument.Legacy.py │ │ ├── CreateNewDocument.py │ │ ├── CreateNewDocumentSingular.py │ │ ├── FsmUtil.py │ │ ├── LaunchApplication.py │ │ ├── LevelEditorUtil.py │ │ ├── StatechartEditorUtil.py │ │ ├── Test.py │ │ └── TimelineEditorUtil.py │ ├── DiagramEditorTestScripts │ │ └── CreateNewDocuments.py │ ├── DiagramEditorTests.cs │ ├── DomPropertyEditorTests.cs │ ├── DomTreeEditorTestScripts │ │ ├── AddAllItems.py │ │ └── CreateNewDocument.py │ ├── DomTreeEditorTests.cs │ ├── FileExplorerTests.cs │ ├── FsmEditorTestScripts │ │ ├── CopyPaste.py │ │ ├── CutPaste.py │ │ ├── DeleteUndoAndRedoComments.py │ │ ├── DeleteUndoAndRedoStates.py │ │ ├── DeleteUndoAndRedoTransitions.py │ │ ├── EditSaveCloseAndReopen.py │ │ ├── ExpectedFailureAssert.py │ │ ├── ExpectedFailureNoSuccessMessage.py │ │ ├── ExpectedTimeout.py │ │ ├── InsertComments.py │ │ ├── InsertStates.py │ │ ├── InsertTransitions.py │ │ ├── InsertUndoAndRedoComments.py │ │ ├── InsertUndoAndRedoStates.py │ │ └── InsertUndoAndRedoTransitions.py │ ├── FsmEditorTests.cs │ ├── FunctionalTests.vs2010.csproj │ ├── LiveConnectServiceTests.cs │ ├── ModelViewerTestScripts │ │ └── OpenDocument.py │ ├── ModelViewerTests.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AutomationSettings.xml │ │ ├── NUnitToJUnit.xslt │ │ └── bike.atgi │ ├── SimpleDomEditorTestScripts │ │ └── CreateNewDocument.py │ ├── SimpleDomEditorTests.cs │ ├── SimpleDomEditorWpfTests.cs │ ├── SimpleDomNoXmlEditorTests.cs │ ├── StatechartEditorTestScripts │ │ ├── AddAllItems.py │ │ ├── EditSaveCloseAndReopen.py │ │ └── UndoRedo.py │ ├── StatechartEditorTests.cs │ ├── TestBase.cs │ ├── TestData │ │ └── CircuitEditorTestData │ │ │ ├── OldGroupReference.circuit │ │ │ └── SubCircuits.circuit │ ├── TimelineEditorTestScripts │ │ ├── AddAllItems.py │ │ ├── CreateReferencedDocument.py │ │ ├── CreateReferencedDocumentInSubDir.py │ │ ├── CreateReferencedDocumentInUnsavedTimeline.py │ │ └── EditSaveCloseAndReopen.py │ ├── TimelineEditorTests.cs │ ├── TreeListControlTests.cs │ ├── TreeListEditorTests.cs │ ├── UsingDomTests.cs │ └── app.config ├── NativeTestHelpers │ ├── AssemblyInfo.cpp │ ├── NativeTestHelpers.vcxproj │ ├── NativeTestHelpers.vcxproj.filters │ ├── Stdafx.cpp │ ├── Stdafx.h │ ├── TestDllImports.cpp │ ├── TestMarshaledStructs.cpp │ ├── app.ico │ ├── app.rc │ └── resource.h ├── ProcessLauncher │ ├── ProcessLauncher.csproj │ ├── ProcessLauncher.exe │ ├── ProcessLauncher.sln │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SpecialLauncher.cs ├── RunTests.cmd └── UnitTests │ ├── DllImports │ ├── TestCalls.cs │ └── TestDllImports.cs │ ├── DomGen │ └── TestSchemaGen.cs │ ├── LocalizableStringExtractor │ ├── Cases │ │ ├── AboutDialog.cs │ │ ├── FindTargetsDialog.xaml │ │ ├── Localization.xml │ │ └── Standard.xaml │ ├── TestExtractor.cs │ └── TestLocalizableString.cs │ ├── MsBuildUtils │ ├── Cases │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Test.csproj │ │ ├── Test.sln │ │ ├── UserControl1.xaml │ │ └── UserControl1.xaml.cs │ └── TestMsBuildUtils.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── TestSkin.xml │ ├── test.xsd │ ├── testComplexTypes.xsd │ ├── testImportSchemas.xsd │ ├── testReferences.xml │ ├── testReferences.xsd │ ├── testSchemas.xsd │ ├── testSimpleTypes.xsd │ ├── testSubstitutionGroups.xsd │ └── test_customized.xsd │ ├── Sce.Atf │ ├── Adaptation │ │ ├── ISimpleInterface.cs │ │ ├── SimpleAdaptable.cs │ │ ├── SimpleAdapter.cs │ │ ├── SimpleDecoratable.cs │ │ ├── TestAdaptableActiveCollection.cs │ │ ├── TestAdaptableSelection.cs │ │ ├── TestAdapter.cs │ │ ├── TestAdapterCreator.cs │ │ └── TestAdapters.cs │ ├── Applications │ │ ├── NetworkTargetServices │ │ │ └── TestTcpIpTargetInfo.cs │ │ ├── TestCommandLineArgsService.cs │ │ ├── TestCommands.cs │ │ ├── TestRenameCommand.cs │ │ ├── TestSkinService.cs │ │ └── TestStandardFileCommands.cs │ ├── Controls │ │ └── PropertyEditing │ │ │ ├── TestBoundPropertyDescriptor.cs │ │ │ ├── TestLongEnumEditor.cs │ │ │ └── TestPropertyUtils.cs │ ├── Dom │ │ ├── DomTest.cs │ │ ├── TestAttributeInfo.cs │ │ ├── TestAttributePropertyDescriptor.cs │ │ ├── TestAttributeType.cs │ │ ├── TestChildAttributePropertyDescriptor.cs │ │ ├── TestChildCountRule.cs │ │ ├── TestChildInfo.cs │ │ ├── TestDataValidator.cs │ │ ├── TestDomNode.cs │ │ ├── TestDomNodeAdapter.cs │ │ ├── TestDomNodeType.cs │ │ ├── TestExtensionInfo.cs │ │ ├── TestNamedMetadata.cs │ │ ├── TestNumericMaxRule.cs │ │ ├── TestNumericMinRule.cs │ │ ├── TestSchemas.cs │ │ ├── TestStringEnumRule.cs │ │ ├── TestSubstitutionGroupRule.cs │ │ ├── TestTransactionReporter.cs │ │ ├── TestTypeAdapterCreator.cs │ │ ├── TestUniquePathIdValidator.cs │ │ ├── TestValidator.cs │ │ ├── ValidationContext.cs │ │ └── Validator.cs │ ├── TestActiveCollection.cs │ ├── TestCollectionAdapter.cs │ ├── TestDependencySystem.cs │ ├── TestEmptyArray.cs │ ├── TestEmptyEnumerable.cs │ ├── TestEnumUtil.cs │ ├── TestEvent.cs │ ├── TestFileStreamResolver.cs │ ├── TestIntSet.cs │ ├── TestLazies.cs │ ├── TestMathUtil.cs │ ├── TestMultimap.cs │ ├── TestPair.cs │ ├── TestPath.cs │ ├── TestReentryGuard.cs │ ├── TestResourceStreamResolver.cs │ ├── TestSelection.cs │ ├── TestStringUtil.cs │ ├── TestTree.cs │ ├── TestUniqueNamer.cs │ ├── TestWeakKey.cs │ ├── TestWinFormsUtil.cs │ ├── TestXmlStringLocalizer.cs │ ├── VectorMath │ │ ├── TestAngleAxisF.cs │ │ ├── TestBezierCurve.cs │ │ ├── TestBezierCurve2F.cs │ │ ├── TestBezierSpline.cs │ │ ├── TestBox.cs │ │ ├── TestBox2F.cs │ │ ├── TestCircleF.cs │ │ ├── TestEulerAngles.cs │ │ ├── TestFrustum.cs │ │ ├── TestMatrix3F.cs │ │ ├── TestMatrix4F.cs │ │ ├── TestPlane3F.cs │ │ ├── TestPolygon3F.cs │ │ ├── TestQuatF.cs │ │ ├── TestRay2F.cs │ │ ├── TestRay3F.cs │ │ ├── TestSeg2F.cs │ │ ├── TestSphere3F.cs │ │ ├── TestTriangle3F.cs │ │ ├── TestVec2F.cs │ │ ├── TestVec3F.cs │ │ └── TestVec4F.cs │ └── Wpf │ │ └── Models │ │ └── TestTreeViewModel.cs │ ├── UnitTests.vs2010.csproj │ ├── Utilities.cs │ └── app.config ├── ThirdParty ├── ActiPro │ ├── ActiproSoftware.Shared.Net20.dll │ ├── ActiproSoftware.SyntaxEditor.Addons.DotNet.Net20.dll │ ├── ActiproSoftware.SyntaxEditor.Net20.dll │ ├── ActiproSoftware.WinUICore.Net20.dll │ ├── EULA Addendum for ATF.pdf │ └── End User License Agreement.pdf ├── Bespoke │ ├── Bespoke.Common.Osc.dll │ ├── Bespoke.Common.dll │ └── License.txt ├── DockPanelSuite │ ├── WeifenLuo.WinFormsUI.Docking.dll │ └── license.txt ├── Interactivity │ ├── Redist.en.txt │ └── System.Windows.Interactivity.dll ├── IronPython │ ├── IronPython.Modules.XML │ ├── IronPython.Modules.dll │ ├── IronPython.XML │ ├── IronPython.dll │ ├── License.html │ ├── Microsoft.Dynamic.dll │ ├── Microsoft.Dynamic.xml │ ├── Microsoft.Scripting.dll │ ├── Microsoft.Scripting.xml │ └── Net35 │ │ ├── IronPython.Modules.dll │ │ ├── IronPython.Modules.xml │ │ ├── IronPython.dll │ │ ├── IronPython.xml │ │ ├── Microsoft.Dynamic.dll │ │ ├── Microsoft.Dynamic.xml │ │ ├── Microsoft.Scripting.Core.dll │ │ ├── Microsoft.Scripting.Core.xml │ │ ├── Microsoft.Scripting.dll │ │ └── Microsoft.Scripting.xml ├── Lua │ ├── License.txt │ ├── LuaInterface.dll │ ├── lua51.dll │ └── luanet.dll ├── P4API.NET │ ├── LICENSE.txt │ └── clr4 │ │ ├── x64 │ │ ├── p4api.net.XML │ │ ├── p4api.net.dll │ │ ├── p4api.net.pdb │ │ ├── p4bridge.dll │ │ └── p4bridge.pdb │ │ └── x86 │ │ ├── p4api.net.XML │ │ ├── p4api.net.dll │ │ ├── p4api.net.pdb │ │ ├── p4bridge.dll │ │ └── p4bridge.pdb ├── SharpDX │ ├── License.txt │ ├── Readme.txt │ ├── ReleaseNotes.html │ ├── SharpDX.Animation.dll │ ├── SharpDX.D3DCompiler.dll │ ├── SharpDX.DXGI.dll │ ├── SharpDX.Direct2D1.dll │ ├── SharpDX.Direct3D10.dll │ ├── SharpDX.Direct3D11.Effects.dll │ ├── SharpDX.Direct3D11.dll │ ├── SharpDX.Direct3D9.dll │ ├── SharpDX.DirectInput.dll │ ├── SharpDX.DirectSound.dll │ ├── SharpDX.MediaFoundation.dll │ ├── SharpDX.RawInput.dll │ ├── SharpDX.XACT3.dll │ ├── SharpDX.XAudio2.dll │ ├── SharpDX.XInput.dll │ ├── SharpDX.dll │ ├── sharpdx_direct3d11_1_effects_x64.dll │ ├── sharpdx_direct3d11_1_effects_x86.dll │ ├── sharpdx_direct3d11_effects_x64.dll │ ├── sharpdx_direct3d11_effects_x86.dll │ ├── tkfont.exe │ └── tkfxc.exe ├── Tao.OpenGl │ ├── DDSUtils.dll │ ├── DevIL.dll │ ├── ILU.dll │ ├── ILUT.dll │ ├── License.txt │ ├── Tao.Cg.dll │ ├── Tao.DevIl.dll │ ├── Tao.FreeGlut.dll │ ├── Tao.Glfw.dll │ ├── Tao.Lua.dll │ ├── Tao.Ode.dll │ ├── Tao.OpenAl.dll │ ├── Tao.OpenGl.dll │ ├── Tao.PhysFs.dll │ ├── Tao.Platform.Windows.dll │ ├── Tao.Sdl.dll │ ├── cg.dll │ └── cgGL.dll ├── Wws.LiveConnect │ ├── Readme.txt │ ├── clr2 │ │ ├── x64 │ │ │ └── Wws.LiveConnect.dll │ │ └── x86 │ │ │ └── Wws.LiveConnect.dll │ ├── clr4 │ │ ├── x64 │ │ │ └── Wws.LiveConnect.dll │ │ └── x86 │ │ │ └── Wws.LiveConnect.dll │ └── license.txt ├── Wws.UI │ ├── Wws.UI.Docking.dll │ └── license.txt ├── libcrashreport_net │ ├── License.txt │ └── libcrashreport_net.dll └── nUnit │ ├── Legacy │ ├── nunit.core.dll │ ├── nunit.framework.dll │ ├── nunit.mocks.dll │ └── nunit.util.dll │ ├── license.rtf │ ├── nunit.core.dll │ ├── nunit.core.interfaces.dll │ ├── nunit.fixtures.dll │ ├── nunit.framework.dll │ └── nunit.util.dll └── wws_atf.component /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/.gitignore -------------------------------------------------------------------------------- /DevTools/CustomToolDomGen/RegisterCOM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/CustomToolDomGen/RegisterCOM.txt -------------------------------------------------------------------------------- /DevTools/DomGen/DomGen.vs2005.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/DomGen.vs2005.csproj -------------------------------------------------------------------------------- /DevTools/DomGen/DomGen.vs2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/DomGen.vs2005.sln -------------------------------------------------------------------------------- /DevTools/DomGen/DomGen.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/DomGen.vs2010.csproj -------------------------------------------------------------------------------- /DevTools/DomGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/Program.cs -------------------------------------------------------------------------------- /DevTools/DomGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DevTools/DomGen/SchemaGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/SchemaGen.cs -------------------------------------------------------------------------------- /DevTools/DomGen/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/SchemaLoader.cs -------------------------------------------------------------------------------- /DevTools/DomGen/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/app.config -------------------------------------------------------------------------------- /DevTools/DomGen/bin/Atf.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/bin/Atf.Core.dll -------------------------------------------------------------------------------- /DevTools/DomGen/bin/DomGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/bin/DomGen.exe -------------------------------------------------------------------------------- /DevTools/DomGen/schemas/atgi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/schemas/atgi.xsd -------------------------------------------------------------------------------- /DevTools/DomGen/schemas/game.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/DomGen/schemas/game.xsd -------------------------------------------------------------------------------- /DevTools/Localization/ATF.slp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/Localization/ATF.slp -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/Group.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/ItemGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/ItemGroup.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/MsBuildFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/MsBuildFile.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/MsBuildUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/MsBuildUtils.csproj -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/Project.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/ProjectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/ProjectElement.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/ProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/ProjectItem.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/ProjectProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/ProjectProperty.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/ProjectRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/ProjectRef.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/PropertyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/PropertyGroup.cs -------------------------------------------------------------------------------- /DevTools/MsBuildUtils/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/DevTools/MsBuildUtils/Solution.cs -------------------------------------------------------------------------------- /Docs/ATF Qt Comparison.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/ATF Qt Comparison.pdf -------------------------------------------------------------------------------- /Docs/ATF_API-Reference.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/ATF_API-Reference.chm -------------------------------------------------------------------------------- /Docs/ATF_DOM-Programmer_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/ATF_DOM-Programmer_Guide.pdf -------------------------------------------------------------------------------- /Docs/ATF_Programmer_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/ATF_Programmer_Guide.pdf -------------------------------------------------------------------------------- /Docs/Atf-CurveEditor-User_Prog_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/Atf-CurveEditor-User_Prog_Guide.pdf -------------------------------------------------------------------------------- /Docs/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Docs/Readme.txt -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Anim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Anim.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/AnimChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/AnimChannel.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/AnimClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/AnimClip.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Atf.Atgi.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Atf.Atgi.vs2010.csproj -------------------------------------------------------------------------------- /Framework/Atf.Atgi/AtgiResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/AtgiResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/AtgiSchemaTypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/AtgiSchemaTypeLoader.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/AtgiXmlPersister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/AtgiXmlPersister.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/CustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/CustomData.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/CustomDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/CustomDataAttribute.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/DataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/DataSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Instance.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Joint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Joint.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/LodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/LodGroup.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Material.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/MaterialBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/MaterialBinding.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Mesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Node.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/NodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/NodeProperties.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Pose.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/PoseElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/PoseElement.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/PrimitiveSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/PrimitiveSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Scene.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Shader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Shader.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/ShaderBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/ShaderBinding.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/Texture.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/UnitTestAtgi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/UnitTestAtgi/Program.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/UnitTestAtgi/TestAtgi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/UnitTestAtgi/TestAtgi.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/World.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/schemas/GenSchemaDef.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/schemas/GenSchemaDef.bat -------------------------------------------------------------------------------- /Framework/Atf.Atgi/schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/schemas/Schema.cs -------------------------------------------------------------------------------- /Framework/Atf.Atgi/schemas/atgi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Atgi/schemas/atgi.xsd -------------------------------------------------------------------------------- /Framework/Atf.Collada/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Animation.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/AnimationChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/AnimationChannel.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/AnimationClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/AnimationClip.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/AnimationSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/AnimationSampler.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Collada.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Collada.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/ColladaResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/ColladaResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Effect.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Geometry.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Input.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/InstanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/InstanceController.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/InstanceGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/InstanceGeometry.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Mesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Node.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Scene.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Source.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/SubMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/SubMesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/Tools.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/VisualScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/VisualScene.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/schemas/Schema.cs -------------------------------------------------------------------------------- /Framework/Atf.Collada/schemas/collada.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/schemas/collada.xsd -------------------------------------------------------------------------------- /Framework/Atf.Collada/schemas/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Collada/schemas/xml.xsd -------------------------------------------------------------------------------- /Framework/Atf.Core/ActiveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ActiveCollection.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Adaptation/Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Adaptation/Adapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Adaptation/Adapters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Adaptation/Adapters.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Adaptation/IAdaptable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Adaptation/IAdaptable.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Adaptation/IAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Adaptation/IAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ArgParser.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/AssemblyUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/AssemblyUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Atf.Core.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Atf.Core.vs2010.csproj -------------------------------------------------------------------------------- /Framework/Atf.Core/AtfPluginAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/AtfPluginAttribute.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/AtfUsageLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/AtfUsageLogger.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/AtfVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/AtfVersion.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/AttributeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/AttributeUtils.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Cached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Cached.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/CollectionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/CollectionAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ConsoleOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ConsoleOutputWriter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/CrashLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/CrashLogger.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/DependencySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/DependencySystem.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/DirectoryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/DirectoryUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/AttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/AttributeInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/AttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/AttributeRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/AttributeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/AttributeType.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/AttributeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/AttributeTypes.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/ChildCountRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/ChildCountRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/ChildEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/ChildEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/ChildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/ChildInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/ChildRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/ChildRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DataValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DataValidator.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomDocument.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNode.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNodeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNodeAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNodeQueryMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNodeQueryMatch.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNodeQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNodeQueryable.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNodeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNodeSerializer.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomNodeType.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomResource.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomXmlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomXmlReader.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/DomXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/DomXmlWriter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/ExtensionInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/FieldMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/FieldMetadata.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/IdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/IdValidator.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/LockingValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/LockingValidator.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/NamedMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/NamedMetadata.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/NumericMaxRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/NumericMaxRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/NumericMinRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/NumericMinRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/Observer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/Observer.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/StringEnumRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/StringEnumRule.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/UniqueIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/UniqueIdValidator.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/Validator.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/XmlAttributeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/XmlAttributeInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/XmlAttributeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/XmlAttributeType.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/XmlNodeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/XmlNodeReference.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Dom/XmlPersister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Dom/XmlPersister.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/EmptyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/EmptyArray.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/EmptyEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/EmptyEnumerable.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/EnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/EnumUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/EnumerableUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/EnumerableUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Event.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/FileMoveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/FileMoveInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/FileMoveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/FileMoveService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/FileMoveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/FileMoveType.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/FileStreamResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/FileStreamResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Global.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ICrashLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ICrashLogger.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IDocument.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IEnumerableContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IEnumerableContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IFileMoveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IFileMoveService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IFileWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IFileWatcherService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IInitializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IInitializable.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ILockingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ILockingContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IObservableCollection.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IObservableContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IObservableContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IOutputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IOutputWriter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IQueryMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IQueryMatch.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IQueryPredicate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IQueryPredicate.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IQueryableContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IQueryableContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IReference.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IResource.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IResourceFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IResourceFolder.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IResourceReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IResourceReference.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IResourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IResourceResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IResourceService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IServerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IServerLogger.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ITransactionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ITransactionContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IValidationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IValidationContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/IntSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/IntSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ItemChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ItemChangedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ItemInsertedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ItemInsertedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ItemRemovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ItemRemovedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ItemSelectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ItemSelectedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ItemsChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ItemsChangedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Kernel32.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/LabelEditedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/LabelEditedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Lazies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Lazies.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ListAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ListAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/LiveConnectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/LiveConnectService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Localizer.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/MathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/MathUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/MefUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/MefUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Multimap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Multimap.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/NumericUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/NumericUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/OutputMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/OutputMessageType.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Outputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Outputs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Pair.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Path.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/PathUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/PerformanceCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/PerformanceCounters.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/PerformanceTimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/PerformanceTimers.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ReentryGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ReentryGuard.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/DomNodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/DomNodeUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IAnim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IAnim.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IAnimClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IAnimClip.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IBinding.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/ICustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/ICustomData.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IDataset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IDataset.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IJoint.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/ILodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/ILodGroup.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IMesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/INameable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/INameable.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/INode.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IPose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IPose.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IScene.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IShader.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/ISubMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/ISubMesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/ITexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/ITexture.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IVisible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IVisible.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Rendering/IWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Rendering/IWorld.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Requires.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Requires.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ResourceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ResourceService.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Selection.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/ServerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/ServerLogger.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Shell32.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/StringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/StringLocalizer.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/StringUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/Tree.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/UniqueNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/UniqueNamer.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/UriChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/UriChangedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/AngleAxisF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/AngleAxisF.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Box.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Box2F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Box2F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/CircleF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/CircleF.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Frustum.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Matrix3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Matrix3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Matrix3x2F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Matrix3x2F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Matrix4F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Matrix4F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Plane3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Plane3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Polygon3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Polygon3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/QuatF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/QuatF.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Ray2F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Ray2F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Ray3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Ray3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Seg2F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Seg2F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Sphere3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Sphere3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Triangle3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Triangle3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Vec2F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Vec2F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Vec3F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Vec3F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/VectorMath/Vec4F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/VectorMath/Vec4F.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/WeakKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/WeakKey.cs -------------------------------------------------------------------------------- /Framework/Atf.Core/XmlStringLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Core/XmlStringLocalizer.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/BitmapContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/BitmapContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/CanvasControl3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/CanvasControl3D.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/CgfxCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/CgfxCore.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/DdsCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/DdsCompressor.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/DdsImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/DdsImageLoader.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/DesignControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/DesignControl.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/DesignControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/DesignControl.resx -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/IImageLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/IImageLoader.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/Image.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/OpenGlCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/OpenGlCore.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/Panel3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/Panel3D.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/Panel3D.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/Panel3D.resx -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/PickAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/PickAction.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/RenderAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/RenderAction.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/RenderObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/RenderObject.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/RenderStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/RenderStats.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/TextureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/TextureInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/TextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/TextureManager.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/Util3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/Util3D.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.OpenGL/VboManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.OpenGL/VboManager.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/ChartUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/ChartUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/FileIconUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/FileIconUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/GdiUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/GdiUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/KeysUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/KeysUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/ResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/ResourceUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/WaitCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/WaitCursor.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.WinForms/WinFormsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.WinForms/WinFormsUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Applications/IMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Applications/IMenu.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/ColorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/ColorUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/CommandReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/CommandReference.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Composer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Composer.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Contracts.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Controls/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Controls/Icon.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Controls/TileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Controls/TileView.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/DataContextSpy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/DataContextSpy.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/DebugUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/DebugUtils.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/DelegateCommand.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/DialogUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/DialogUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/DockIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/DockIcon.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/DockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/DockPanel.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/GridLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/GridLayout.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/IDockable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/IDockable.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/SidePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/SidePopup.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/TabLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/TabLayout.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Docking/Win32Calls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Docking/Win32Calls.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Dom/DomRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Dom/DomRecorder.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/FindFileResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/FindFileResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/FreezableCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/FreezableCursor.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/IMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/IMenu.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/IToolBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/IToolBar.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/IViewModelMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/IViewModelMetadata.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/ImageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/ImageUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Interop/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Interop/Util.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/MathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/MathUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/CommandItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/CommandItem.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/OutputVm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/OutputVm.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/StatusImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/StatusImage.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/StatusItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/StatusItem.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/StatusText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/StatusText.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Models/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Models/Target.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/ResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/ResourceUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources/Styles.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources/clear.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources/clear.bmp -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources/error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources/error.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources/info.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Resources/warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Resources/warning.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Skins/Skin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Skins/Skin.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Themes/DockPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Themes/DockPanel.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Themes/Generic.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Themes/SidePopup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Themes/SidePopup.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Themes/TabLayout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Themes/TabLayout.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/Themes/TileView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/Themes/TileView.xaml -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/WpfMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/WpfMessageBox.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui.Wpf/WpfResourceUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui.Wpf/WpfResourceUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Applications/CommandId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Applications/CommandId.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Applications/IPinnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Applications/IPinnable.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Applications/ISearchUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Applications/ISearchUI.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Applications/MenuInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Applications/MenuInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Atf.Gui.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Atf.Gui.vs2010.csproj -------------------------------------------------------------------------------- /Framework/Atf.Gui/ColorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/ColorUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dBitmap.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dBrush.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dFactory.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dGeometry.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dGraphics.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dResource.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dShapes.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dTextFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dTextFormat.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dTextLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dTextLayout.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dToSharpDX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dToSharpDX.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Direct2D/D2dUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Direct2D/D2dUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/DirectWrite/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/DirectWrite/TextEditor.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/BindingAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/BindingAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/DomNodeHelpAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/DomNodeHelpAdapter.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/DomNodeQueryRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/DomNodeQueryRoot.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/EditingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/EditingContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/HistoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/HistoryContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/ListContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/ListContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/PropertyDescriptor.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/SelectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/SelectionContext.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/Template.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Dom/TemplateFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Dom/TemplateFolder.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/EnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/EnumUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/FileFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/FileFilterBuilder.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Gdi32.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/GroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/GroupAttribute.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/IAnnotatedParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/IAnnotatedParams.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/IPerformanceTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/IPerformanceTarget.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/ImageResourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/ImageResourceAttribute.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/DragEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/DragEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/KeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/KeyEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/Keys.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/Message.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/MouseButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/MouseButtons.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Input/MouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Input/MouseEventArgs.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/KeysUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/KeysUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Models/CheckedTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Models/CheckedTreeNode.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/ObservableUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/ObservableUtil.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Properties/Resources.resx -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/Camera.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/HitRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/HitRecord.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/IBoundable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/IBoundable.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/IManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/IManipulator.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/IPickAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/IPickAction.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/IRenderPick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/IRenderPick.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/ObjectStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/ObjectStats.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/RenderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/RenderMode.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/RenderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/RenderState.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/Scene.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/SceneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/SceneNode.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/TraverseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/TraverseNode.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Rendering/ViewTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Rendering/ViewTypes.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources.cs -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/4WAY05.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/4WAY05.CUR -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/AlignTops16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/AlignTops16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/AlignTops24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/AlignTops24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/AlignTops32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/AlignTops32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/AtfIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/AtfIcon.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/AtfLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/AtfLogo.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ByCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ByCategory.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Computer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Computer.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Copy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Copy16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Copy24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Copy24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Copy32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Copy32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Cut16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Cut16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Cut24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Cut24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Cut32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Cut32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Data16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Data16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Data24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Data24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Data32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Data32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Delete16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Delete16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Delete24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Delete24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Delete32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Delete32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Document16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Document16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Document24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Document24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Document32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Document32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Find16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Find16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Find24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Find24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Find32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Find32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/FitToSize16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/FitToSize16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/FitToSize24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/FitToSize24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/FitToSize32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/FitToSize32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Folder.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Folder16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Folder16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Folder24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Folder24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Folder32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Folder32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Group16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Group16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Group24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Group24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Group32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Group32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/HO_SPLIT.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/HO_SPLIT.CUR -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Help16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Help16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Help24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Help24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Help32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Help32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Isolate16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Isolate16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Isolate24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Isolate24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Isolate32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Isolate32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Lock16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Lock16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Lock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Lock24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Lock32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Lock32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/LockUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/LockUI.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Paste16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Paste16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Paste24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Paste24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Paste32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Paste32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Redo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Redo16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Redo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Redo24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Redo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Redo32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Reset16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Reset16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SCEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SCEA.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Save16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Save16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Save24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Save24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Save32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Save32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAll16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAll16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAll24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAll24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAll32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAll32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAs16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAs16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAs24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAs24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/SaveAs32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/SaveAs32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Selection16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Selection16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Selection24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Selection24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Selection32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Selection32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ShowAll16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ShowAll16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ShowAll24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ShowAll24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ShowAll32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ShowAll32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Thumbs.db -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Undo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Undo16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Undo24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Undo24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Undo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Undo32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Ungroup16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Ungroup16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Ungroup24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Ungroup24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Ungroup32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Ungroup32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Unlock16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Unlock16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Unlock24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Unlock24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Unlock32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Unlock32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/UnlockUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/UnlockUI.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/Unsorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/Unsorted.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/VE_SPLIT.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/VE_SPLIT.CUR -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomIn16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomIn16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomIn24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomIn24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomIn32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomIn32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomOut16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomOut16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomOut24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomOut24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/ZoomOut32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/ZoomOut32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/add.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/component16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/component16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/component24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/component24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/component32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/component32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/components.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/delete.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/diskdrive16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/diskdrive16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/diskdrive24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/diskdrive24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/diskdrive32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/diskdrive32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/factory.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/filter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/filter.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/greenPlus13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/greenPlus13.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/layer.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/lock13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/lock13.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/nav_left.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/nav_right.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/package.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_green16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_green16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_green24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_green24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_green32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_green32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_grey16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_grey16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_grey24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_grey24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/pin_grey32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/pin_grey32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/printer16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/printer16.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/printer24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/printer24.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/printer32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/printer32.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/redCheck13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/redCheck13.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/reference.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/resource.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/search.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/search.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/unknown13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/unknown13.png -------------------------------------------------------------------------------- /Framework/Atf.Gui/Resources/warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/Resources/warning.ico -------------------------------------------------------------------------------- /Framework/Atf.Gui/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Gui/User32.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/Atf.Obj.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/Atf.Obj.vs2010.csproj -------------------------------------------------------------------------------- /Framework/Atf.Obj/DataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/DataSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/Mesh.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/Node.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjReader/FaceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjReader/FaceSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjReader/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjReader/Group.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjReader/MaterialDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjReader/MaterialDef.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjReader/MtlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjReader/MtlFile.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjReader/ObjFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjReader/ObjFile.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjResolver.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/ObjSchemaTypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/ObjSchemaTypeLoader.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/PrimitiveSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/PrimitiveSet.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/Shader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/Shader.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/schemas/GenSchemaDef.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/schemas/GenSchemaDef.bat -------------------------------------------------------------------------------- /Framework/Atf.Obj/schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/schemas/Schema.cs -------------------------------------------------------------------------------- /Framework/Atf.Obj/schemas/obj.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Obj/schemas/obj.xsd -------------------------------------------------------------------------------- /Framework/Atf.Osc/Atf.Osc.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/Atf.Osc.vs2010.csproj -------------------------------------------------------------------------------- /Framework/Atf.Osc/IOscService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/IOscService.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/LemurOscService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/LemurOscService.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscCommandReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscCommandReceiver.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscCommands.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscDialog.Designer.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscDialog.cs -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscDialog.resx -------------------------------------------------------------------------------- /Framework/Atf.Osc/OscService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Osc/OscService.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/ConnectionManager.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/Connections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/Connections.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/Connections.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/Connections.resx -------------------------------------------------------------------------------- /Framework/Atf.Perforce/FileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/FileInfo.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/LoginDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/LoginDialog.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/LoginDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/LoginDialog.resx -------------------------------------------------------------------------------- /Framework/Atf.Perforce/PerforceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/PerforceRequest.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/PerforceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/PerforceService.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/UriPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/UriPaths.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/UsersList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/UsersList.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/UsersList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/UsersList.resx -------------------------------------------------------------------------------- /Framework/Atf.Perforce/WorkspaceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/WorkspaceList.cs -------------------------------------------------------------------------------- /Framework/Atf.Perforce/WorkspaceList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Perforce/WorkspaceList.resx -------------------------------------------------------------------------------- /Framework/Atf.Subversion/Localization.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Framework/Atf.Subversion/Localization.resx -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ReleaseNotes.doc -------------------------------------------------------------------------------- /ReleaseNotes_j.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ReleaseNotes_j.doc -------------------------------------------------------------------------------- /Samples/CircuitEditor/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Annotation.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/BirdEyeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/BirdEyeView.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Circuit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Circuit.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitDocument.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitMagnifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitMagnifier.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitReader.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitRenderer.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitValidator.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/CircuitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/CircuitWriter.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Connection.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Group.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/GroupPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/GroupPin.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/GroupReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/GroupReference.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/GroupingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/GroupingCommands.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/HelpAboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/HelpAboutCommand.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/LayerFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/LayerFolder.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/LayeringCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/LayeringCommands.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/LayeringContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/LayeringContext.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/MissingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/MissingModule.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Module.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/ModuleElementInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/ModuleElementInfo.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/ModulePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/ModulePlugin.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/ModuleProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/ModuleProperties.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/ModuleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/ModuleRef.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/ModuleReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/ModuleReference.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Pin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Pin.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/PrintableDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/PrintableDocument.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Program.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Prototype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Prototype.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/PrototypeFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/PrototypeFolder.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/PrototypingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/PrototypingContext.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources/About.rtf -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources/and_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources/and_16.png -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources/and_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources/and_32.png -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources/or_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources/or_16.png -------------------------------------------------------------------------------- /Samples/CircuitEditor/Resources/or_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Resources/or_32.png -------------------------------------------------------------------------------- /Samples/CircuitEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/Template.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/TemplateFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/TemplateFolder.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/TemplatingCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/TemplatingCommands.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/TemplatingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/TemplatingContext.cs -------------------------------------------------------------------------------- /Samples/CircuitEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/app.config -------------------------------------------------------------------------------- /Samples/CircuitEditor/data/Example.circuit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/data/Example.circuit -------------------------------------------------------------------------------- /Samples/CircuitEditor/schemas/Circuit.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/schemas/Circuit.xsd -------------------------------------------------------------------------------- /Samples/CircuitEditor/schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CircuitEditor/schemas/Schema.cs -------------------------------------------------------------------------------- /Samples/CodeEditor/CodeDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/CodeDocument.cs -------------------------------------------------------------------------------- /Samples/CodeEditor/CodeEditor.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/CodeEditor.vs2010.csproj -------------------------------------------------------------------------------- /Samples/CodeEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/CodeEditor/HelpAboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/HelpAboutCommand.cs -------------------------------------------------------------------------------- /Samples/CodeEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/Program.cs -------------------------------------------------------------------------------- /Samples/CodeEditor/Resources/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/Resources/About.rtf -------------------------------------------------------------------------------- /Samples/CodeEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/CodeEditor/app.config -------------------------------------------------------------------------------- /Samples/DiagramEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DiagramEditor/Program.cs -------------------------------------------------------------------------------- /Samples/DiagramEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DiagramEditor/app.config -------------------------------------------------------------------------------- /Samples/DomPropertyEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomPropertyEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/DomPropertyEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomPropertyEditor/Program.cs -------------------------------------------------------------------------------- /Samples/DomPropertyEditor/TreeLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomPropertyEditor/TreeLister.cs -------------------------------------------------------------------------------- /Samples/DomPropertyEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomPropertyEditor/app.config -------------------------------------------------------------------------------- /Samples/DomTreeEditor/ControlPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/ControlPoint.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Curve.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Document.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/EditingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/EditingContext.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/EmptyRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/EmptyRef.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/PaletteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/PaletteClient.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Program.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Resources/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Resources/font.png -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Resources/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Resources/form.png -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Resources/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Resources/ref.png -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Resources/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Resources/text.png -------------------------------------------------------------------------------- /Samples/DomTreeEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/TreeLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/TreeLister.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/TreeView.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UI.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIAnimation.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIControl.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIFont.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIForm.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIObject.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIPackage.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIRef.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UIShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UIShader.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UISprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UISprite.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UITextItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UITextItem.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UITexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UITexture.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/UITransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/UITransform.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/Validator.cs -------------------------------------------------------------------------------- /Samples/DomTreeEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/DomTreeEditor/app.config -------------------------------------------------------------------------------- /Samples/FileExplorer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/App.config -------------------------------------------------------------------------------- /Samples/FileExplorer/FileViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/FileViewer.cs -------------------------------------------------------------------------------- /Samples/FileExplorer/FolderViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/FolderViewer.cs -------------------------------------------------------------------------------- /Samples/FileExplorer/HelpAboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/HelpAboutCommand.cs -------------------------------------------------------------------------------- /Samples/FileExplorer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/MainForm.cs -------------------------------------------------------------------------------- /Samples/FileExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/Program.cs -------------------------------------------------------------------------------- /Samples/FileExplorer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/README.txt -------------------------------------------------------------------------------- /Samples/FileExplorer/Resources/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FileExplorer/Resources/About.rtf -------------------------------------------------------------------------------- /Samples/FsmEditor/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Annotation.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Document.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/EditingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/EditingContext.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Fsm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Fsm.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/HelpAboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/HelpAboutCommand.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/PaletteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/PaletteClient.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/PrintableDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/PrintableDocument.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Program.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Prototype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Prototype.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/PrototypeFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/PrototypeFolder.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/PrototypingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/PrototypingContext.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Resources/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Resources/About.rtf -------------------------------------------------------------------------------- /Samples/FsmEditor/Resources/state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Resources/state.png -------------------------------------------------------------------------------- /Samples/FsmEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/State.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/Transition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/Transition.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/TransitionRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/TransitionRouter.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/ViewingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/ViewingContext.cs -------------------------------------------------------------------------------- /Samples/FsmEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/app.config -------------------------------------------------------------------------------- /Samples/FsmEditor/data/Example.fsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/data/Example.fsm -------------------------------------------------------------------------------- /Samples/FsmEditor/schemas/FSM.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/schemas/FSM.xsd -------------------------------------------------------------------------------- /Samples/FsmEditor/schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/FsmEditor/schemas/Schema.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/HelpAboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/HelpAboutCommand.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/ModelDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/ModelDocument.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/ModelViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/ModelViewer.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/Program.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/RenderCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/RenderCommands.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/RenderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/RenderView.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/Resources.cs -------------------------------------------------------------------------------- /Samples/ModelViewer/Resources/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/Resources/About.rtf -------------------------------------------------------------------------------- /Samples/ModelViewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/ModelViewer/app.config -------------------------------------------------------------------------------- /Samples/Samples.vs2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/Samples.vs2010.sln -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/EventContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/EventContext.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/PaletteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/PaletteClient.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/Program.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditor/app.config -------------------------------------------------------------------------------- /Samples/SimpleDomEditorWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditorWpf/App.xaml -------------------------------------------------------------------------------- /Samples/SimpleDomEditorWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditorWpf/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditorWpf/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditorWpf/Editor.cs -------------------------------------------------------------------------------- /Samples/SimpleDomEditorWpf/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomEditorWpf/Resources.cs -------------------------------------------------------------------------------- /Samples/SimpleDomNoXmlEditor/DomTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomNoXmlEditor/DomTypes.cs -------------------------------------------------------------------------------- /Samples/SimpleDomNoXmlEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomNoXmlEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/SimpleDomNoXmlEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomNoXmlEditor/Program.cs -------------------------------------------------------------------------------- /Samples/SimpleDomNoXmlEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/SimpleDomNoXmlEditor/app.config -------------------------------------------------------------------------------- /Samples/StatechartEditor/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Annotation.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Document.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Editor.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/FinalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/FinalState.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/HistoryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/HistoryState.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Program.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Prototype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Prototype.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Reaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Reaction.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/StartState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/StartState.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/State.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/StateBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/StateBase.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Statechart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Statechart.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/Transition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/Transition.cs -------------------------------------------------------------------------------- /Samples/StatechartEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/StatechartEditor/app.config -------------------------------------------------------------------------------- /Samples/TargetManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TargetManager/Program.cs -------------------------------------------------------------------------------- /Samples/TargetManager/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TargetManager/app.config -------------------------------------------------------------------------------- /Samples/TimelineEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/Program.cs -------------------------------------------------------------------------------- /Samples/TimelineEditor/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/Resources.cs -------------------------------------------------------------------------------- /Samples/TimelineEditor/Resources/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/Resources/key.png -------------------------------------------------------------------------------- /Samples/TimelineEditor/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/Schema.cs -------------------------------------------------------------------------------- /Samples/TimelineEditor/SchemaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/SchemaLoader.cs -------------------------------------------------------------------------------- /Samples/TimelineEditor/TimelineEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/TimelineEditor.cs -------------------------------------------------------------------------------- /Samples/TimelineEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/app.config -------------------------------------------------------------------------------- /Samples/TimelineEditor/data/100.timeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TimelineEditor/data/100.timeline -------------------------------------------------------------------------------- /Samples/TreeListControl/CoolSUVs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/CoolSUVs.xml -------------------------------------------------------------------------------- /Samples/TreeListControl/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/Form1.cs -------------------------------------------------------------------------------- /Samples/TreeListControl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/Program.cs -------------------------------------------------------------------------------- /Samples/TreeListControl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/ReadMe.txt -------------------------------------------------------------------------------- /Samples/TreeListControl/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/TreeView.cs -------------------------------------------------------------------------------- /Samples/TreeListControl/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListControl/app.config -------------------------------------------------------------------------------- /Samples/TreeListEditor/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListEditor/DataGenerator.cs -------------------------------------------------------------------------------- /Samples/TreeListEditor/Editors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListEditor/Editors.cs -------------------------------------------------------------------------------- /Samples/TreeListEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListEditor/Program.cs -------------------------------------------------------------------------------- /Samples/TreeListEditor/RawUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListEditor/RawUsage.cs -------------------------------------------------------------------------------- /Samples/TreeListEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/TreeListEditor/app.config -------------------------------------------------------------------------------- /Samples/UsingDirect2D/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDirect2D/Form1.cs -------------------------------------------------------------------------------- /Samples/UsingDirect2D/GdiCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDirect2D/GdiCanvas.cs -------------------------------------------------------------------------------- /Samples/UsingDirect2D/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDirect2D/Program.cs -------------------------------------------------------------------------------- /Samples/UsingDirect2D/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDirect2D/app.config -------------------------------------------------------------------------------- /Samples/UsingDom/DomNodeAdapters/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/DomNodeAdapters/Game.cs -------------------------------------------------------------------------------- /Samples/UsingDom/DomNodeAdapters/Ogre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/DomNodeAdapters/Ogre.cs -------------------------------------------------------------------------------- /Samples/UsingDom/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/Program.cs -------------------------------------------------------------------------------- /Samples/UsingDom/Schemas/GameSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/Schemas/GameSchema.cs -------------------------------------------------------------------------------- /Samples/UsingDom/Schemas/game.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/Schemas/game.xsd -------------------------------------------------------------------------------- /Samples/UsingDom/UsingDom.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/UsingDom.vs2010.csproj -------------------------------------------------------------------------------- /Samples/UsingDom/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/UsingDom/app.config -------------------------------------------------------------------------------- /Samples/WpfPropertyEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/WpfPropertyEditor/App.xaml -------------------------------------------------------------------------------- /Samples/WpfPropertyEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/WpfPropertyEditor/App.xaml.cs -------------------------------------------------------------------------------- /Samples/WpfPropertyEditor/CoolSUVs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/WpfPropertyEditor/CoolSUVs.xml -------------------------------------------------------------------------------- /Samples/WpfPropertyEditor/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/WpfPropertyEditor/ReadMe.txt -------------------------------------------------------------------------------- /Samples/WpfPropertyEditor/Suv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Samples/WpfPropertyEditor/Suv.cs -------------------------------------------------------------------------------- /Test/BuildAll.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAll.cmd -------------------------------------------------------------------------------- /Test/BuildAllDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllDebug.cmd -------------------------------------------------------------------------------- /Test/BuildAllRelease.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllRelease.cmd -------------------------------------------------------------------------------- /Test/BuildAllReleaseAndSmokeTest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllReleaseAndSmokeTest.cmd -------------------------------------------------------------------------------- /Test/BuildAllVS2010.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllVS2010.cmd -------------------------------------------------------------------------------- /Test/BuildAllVS2010Debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllVS2010Debug.cmd -------------------------------------------------------------------------------- /Test/BuildAllVS2010Release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAllVS2010Release.cmd -------------------------------------------------------------------------------- /Test/BuildAndRunAllTests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/BuildAndRunAllTests.cmd -------------------------------------------------------------------------------- /Test/Everything.vs2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/Everything.vs2010.sln -------------------------------------------------------------------------------- /Test/Everything.vs2010.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/Everything.vs2010.sln.DotSettings -------------------------------------------------------------------------------- /Test/FunctionalTests/CodeEditorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/CodeEditorTests.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/FsmEditorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/FsmEditorTests.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/ModelViewerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/ModelViewerTests.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/Program.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/Resources/bike.atgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/Resources/bike.atgi -------------------------------------------------------------------------------- /Test/FunctionalTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/TestBase.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/UsingDomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/UsingDomTests.cs -------------------------------------------------------------------------------- /Test/FunctionalTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/FunctionalTests/app.config -------------------------------------------------------------------------------- /Test/NativeTestHelpers/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/AssemblyInfo.cpp -------------------------------------------------------------------------------- /Test/NativeTestHelpers/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/Stdafx.cpp -------------------------------------------------------------------------------- /Test/NativeTestHelpers/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/Stdafx.h -------------------------------------------------------------------------------- /Test/NativeTestHelpers/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/app.ico -------------------------------------------------------------------------------- /Test/NativeTestHelpers/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/app.rc -------------------------------------------------------------------------------- /Test/NativeTestHelpers/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/NativeTestHelpers/resource.h -------------------------------------------------------------------------------- /Test/ProcessLauncher/ProcessLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/ProcessLauncher/ProcessLauncher.exe -------------------------------------------------------------------------------- /Test/ProcessLauncher/ProcessLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/ProcessLauncher/ProcessLauncher.sln -------------------------------------------------------------------------------- /Test/ProcessLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/ProcessLauncher/Program.cs -------------------------------------------------------------------------------- /Test/ProcessLauncher/SpecialLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/ProcessLauncher/SpecialLauncher.cs -------------------------------------------------------------------------------- /Test/RunTests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/RunTests.cmd -------------------------------------------------------------------------------- /Test/UnitTests/DllImports/TestCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/DllImports/TestCalls.cs -------------------------------------------------------------------------------- /Test/UnitTests/DomGen/TestSchemaGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/DomGen/TestSchemaGen.cs -------------------------------------------------------------------------------- /Test/UnitTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Program.cs -------------------------------------------------------------------------------- /Test/UnitTests/Resources/TestSkin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Resources/TestSkin.xml -------------------------------------------------------------------------------- /Test/UnitTests/Resources/test.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Resources/test.xsd -------------------------------------------------------------------------------- /Test/UnitTests/Resources/testSchemas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Resources/testSchemas.xsd -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/Dom/DomTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/Dom/DomTest.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/Dom/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/Dom/Validator.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestEmptyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestEmptyArray.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestEnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestEnumUtil.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestEvent.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestIntSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestIntSet.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestLazies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestLazies.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestMathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestMathUtil.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestMultimap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestMultimap.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestPair.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestPath.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestSelection.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestStringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestStringUtil.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestTree.cs -------------------------------------------------------------------------------- /Test/UnitTests/Sce.Atf/TestWeakKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Sce.Atf/TestWeakKey.cs -------------------------------------------------------------------------------- /Test/UnitTests/UnitTests.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/UnitTests.vs2010.csproj -------------------------------------------------------------------------------- /Test/UnitTests/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/Utilities.cs -------------------------------------------------------------------------------- /Test/UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/Test/UnitTests/app.config -------------------------------------------------------------------------------- /ThirdParty/Bespoke/Bespoke.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Bespoke/Bespoke.Common.dll -------------------------------------------------------------------------------- /ThirdParty/Bespoke/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Bespoke/License.txt -------------------------------------------------------------------------------- /ThirdParty/DockPanelSuite/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/DockPanelSuite/license.txt -------------------------------------------------------------------------------- /ThirdParty/Interactivity/Redist.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Interactivity/Redist.en.txt -------------------------------------------------------------------------------- /ThirdParty/IronPython/IronPython.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/IronPython/IronPython.XML -------------------------------------------------------------------------------- /ThirdParty/IronPython/IronPython.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/IronPython/IronPython.dll -------------------------------------------------------------------------------- /ThirdParty/IronPython/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/IronPython/License.html -------------------------------------------------------------------------------- /ThirdParty/Lua/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Lua/License.txt -------------------------------------------------------------------------------- /ThirdParty/Lua/LuaInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Lua/LuaInterface.dll -------------------------------------------------------------------------------- /ThirdParty/Lua/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Lua/lua51.dll -------------------------------------------------------------------------------- /ThirdParty/Lua/luanet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Lua/luanet.dll -------------------------------------------------------------------------------- /ThirdParty/P4API.NET/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/P4API.NET/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty/SharpDX/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/License.txt -------------------------------------------------------------------------------- /ThirdParty/SharpDX/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/Readme.txt -------------------------------------------------------------------------------- /ThirdParty/SharpDX/ReleaseNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/ReleaseNotes.html -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.Animation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.Animation.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.Direct2D1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.Direct2D1.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.RawInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.RawInput.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.XACT3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.XACT3.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.XAudio2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.XAudio2.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.XInput.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.XInput.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/SharpDX.dll -------------------------------------------------------------------------------- /ThirdParty/SharpDX/tkfont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/tkfont.exe -------------------------------------------------------------------------------- /ThirdParty/SharpDX/tkfxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/SharpDX/tkfxc.exe -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/DDSUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/DDSUtils.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/DevIL.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/ILU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/ILU.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/ILUT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/ILUT.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/License.txt -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.Cg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.Cg.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.DevIl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.DevIl.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.FreeGlut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.FreeGlut.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.Glfw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.Glfw.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.Lua.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.Ode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.Ode.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.OpenAl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.OpenAl.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.OpenGl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.OpenGl.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.PhysFs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.PhysFs.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/Tao.Sdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/Tao.Sdl.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/cg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/cg.dll -------------------------------------------------------------------------------- /ThirdParty/Tao.OpenGl/cgGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Tao.OpenGl/cgGL.dll -------------------------------------------------------------------------------- /ThirdParty/Wws.LiveConnect/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Wws.LiveConnect/Readme.txt -------------------------------------------------------------------------------- /ThirdParty/Wws.LiveConnect/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Wws.LiveConnect/license.txt -------------------------------------------------------------------------------- /ThirdParty/Wws.UI/Wws.UI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Wws.UI/Wws.UI.Docking.dll -------------------------------------------------------------------------------- /ThirdParty/Wws.UI/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/Wws.UI/license.txt -------------------------------------------------------------------------------- /ThirdParty/nUnit/Legacy/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/Legacy/nunit.core.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/Legacy/nunit.mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/Legacy/nunit.mocks.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/Legacy/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/Legacy/nunit.util.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/license.rtf -------------------------------------------------------------------------------- /ThirdParty/nUnit/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/nunit.core.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/nunit.fixtures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/nunit.fixtures.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/nunit.framework.dll -------------------------------------------------------------------------------- /ThirdParty/nUnit/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/ThirdParty/nUnit/nunit.util.dll -------------------------------------------------------------------------------- /wws_atf.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyWWS/ATF/HEAD/wws_atf.component --------------------------------------------------------------------------------