remove stale plugins
This commit is contained in:
parent
9772c7c924
commit
ebf50e3110
@ -1,53 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using UniversalEditor.DataFormats.FileSystem.ZIP;
|
||||
|
||||
using UniversalEditor.ObjectModels.FileSystem;
|
||||
using UniversalEditor.ObjectModels.Michelangelo.Canvas;
|
||||
|
||||
namespace UniversalEditor.DataFormats.Michelangelo.Canvas
|
||||
{
|
||||
public class MichelangeloCanvasDataFormat : ZIPDataFormat
|
||||
{
|
||||
private static DataFormatReference _dfr = null;
|
||||
protected override DataFormatReference MakeReferenceInternal()
|
||||
{
|
||||
if (_dfr == null)
|
||||
{
|
||||
_dfr = new DataFormatReference(GetType());
|
||||
_dfr.Capabilities.Add(typeof(CanvasObjectModel), DataFormatCapabilities.All);
|
||||
_dfr.Capabilities.Add(typeof(FileSystemObjectModel), DataFormatCapabilities.Bootstrap);
|
||||
}
|
||||
return _dfr;
|
||||
}
|
||||
|
||||
protected override void BeforeLoadInternal(Stack<ObjectModel> objectModels)
|
||||
{
|
||||
base.BeforeLoadInternal(objectModels);
|
||||
objectModels.Push(new FileSystemObjectModel());
|
||||
}
|
||||
protected override void AfterLoadInternal(Stack<ObjectModel> objectModels)
|
||||
{
|
||||
base.AfterLoadInternal(objectModels);
|
||||
|
||||
FileSystemObjectModel fsom = (objectModels.Pop() as FileSystemObjectModel);
|
||||
CanvasObjectModel canvas = (objectModels.Pop() as CanvasObjectModel);
|
||||
|
||||
}
|
||||
|
||||
protected override void BeforeSaveInternal(Stack<ObjectModel> objectModels)
|
||||
{
|
||||
base.BeforeSaveInternal(objectModels);
|
||||
|
||||
CanvasObjectModel canvas = (objectModels.Pop() as CanvasObjectModel);
|
||||
|
||||
FileSystemObjectModel fsom = new FileSystemObjectModel();
|
||||
|
||||
|
||||
objectModels.Push(fsom);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@ -1,26 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Michelangelo.Canvas
|
||||
{
|
||||
public class CanvasObject
|
||||
{
|
||||
public class CanvasObjectCollection
|
||||
: System.Collections.ObjectModel.Collection<CanvasObject>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private Guid mvarID = Guid.Empty;
|
||||
public Guid ID { get { return mvarID; } set { mvarID = value; } }
|
||||
|
||||
private string mvarName = String.Empty;
|
||||
public string Name { get { return mvarName; } set { mvarName = value; } }
|
||||
|
||||
private CanvasObjectProperty.CanvasObjectPropertyCollection mvarProperties = new CanvasObjectProperty.CanvasObjectPropertyCollection();
|
||||
public CanvasObjectProperty.CanvasObjectPropertyCollection Properties { get { return mvarProperties; } }
|
||||
|
||||
}
|
||||
}
|
||||
@ -1,44 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Michelangelo.Canvas
|
||||
{
|
||||
public class CanvasObjectInstance
|
||||
{
|
||||
public class CanvasObjectInstanceCollection
|
||||
: System.Collections.ObjectModel.Collection<CanvasObjectInstance>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private Guid mvarID = Guid.Empty;
|
||||
public Guid ID { get { return mvarID; } set { mvarID = value; } }
|
||||
|
||||
private string mvarName = String.Empty;
|
||||
public string Name { get { return mvarName; } set { mvarName = value; } }
|
||||
|
||||
private CanvasObject mvarObject = null;
|
||||
public CanvasObject Object { get { return mvarObject; } set { mvarObject = value; } }
|
||||
|
||||
private CanvasObjectPropertyInstance.CanvasObjectPropertyInstanceCollection mvarProperties = new CanvasObjectPropertyInstance.CanvasObjectPropertyInstanceCollection();
|
||||
public CanvasObjectPropertyInstance.CanvasObjectPropertyInstanceCollection Properties { get { return mvarProperties; } }
|
||||
|
||||
private double mvarX = 0.0;
|
||||
public double X { get { return mvarX; } set { mvarX = value; } }
|
||||
private double mvarY = 0.0;
|
||||
public double Y { get { return mvarY; } set { mvarY = value; } }
|
||||
private double mvarZ = 0.0;
|
||||
public double Z { get { return mvarZ; } set { mvarZ = value; } }
|
||||
|
||||
|
||||
private double mvarWidth = 0.0;
|
||||
public double Width { get { return mvarWidth; } set { mvarWidth = value; } }
|
||||
private double mvarHeight = 0.0;
|
||||
public double Height { get { return mvarHeight; } set { mvarHeight = value; } }
|
||||
private double mvarDepth = 0.0;
|
||||
public double Depth { get { return mvarDepth; } set { mvarDepth = value; } }
|
||||
|
||||
}
|
||||
}
|
||||
@ -1,37 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Michelangelo.Canvas
|
||||
{
|
||||
public class CanvasObjectModel : ObjectModel
|
||||
{
|
||||
private static ObjectModelReference _omr = null;
|
||||
protected override ObjectModelReference MakeReferenceInternal()
|
||||
{
|
||||
if (_omr == null)
|
||||
{
|
||||
_omr = base.MakeReferenceInternal();
|
||||
_omr.Title = "Michelangelo canvas";
|
||||
_omr.Path = new string[] { "Michelangelo" };
|
||||
}
|
||||
return _omr;
|
||||
}
|
||||
|
||||
private CanvasObject.CanvasObjectCollection mvarObjects = new CanvasObject.CanvasObjectCollection();
|
||||
public CanvasObject.CanvasObjectCollection Objects { get { return mvarObjects; } }
|
||||
|
||||
private CanvasObjectInstance.CanvasObjectInstanceCollection mvarObjectInstances = new CanvasObjectInstance.CanvasObjectInstanceCollection();
|
||||
public CanvasObjectInstance.CanvasObjectInstanceCollection ObjectInstances { get { return mvarObjectInstances; } }
|
||||
|
||||
public override void Clear()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void CopyTo(ObjectModel where)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,28 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Michelangelo.Canvas
|
||||
{
|
||||
public class CanvasObjectProperty
|
||||
{
|
||||
public class CanvasObjectPropertyCollection
|
||||
: System.Collections.ObjectModel.Collection<CanvasObjectProperty>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private Guid mvarID = Guid.Empty;
|
||||
public Guid ID { get { return mvarID; } set { mvarID = value; } }
|
||||
|
||||
private string mvarName = String.Empty;
|
||||
public string Name { get { return mvarName; } set { mvarName = value; } }
|
||||
|
||||
private Type mvarDataType = null;
|
||||
public Type DataType { get { return mvarDataType; } set { mvarDataType = value; } }
|
||||
|
||||
private object mvarValue = null;
|
||||
public object Value { get { return mvarValue; } set { mvarValue = value; } }
|
||||
}
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace UniversalEditor.ObjectModels.Michelangelo.Canvas
|
||||
{
|
||||
public class CanvasObjectPropertyInstance
|
||||
{
|
||||
public class CanvasObjectPropertyInstanceCollection
|
||||
: System.Collections.ObjectModel.Collection<CanvasObjectPropertyInstance>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private CanvasObjectProperty mvarProperty = null;
|
||||
public CanvasObjectProperty Property { get { return mvarProperty; } set { mvarProperty = value; } }
|
||||
|
||||
private object mvarValue = null;
|
||||
public object Value { get { return mvarValue; } set { mvarValue = value; } }
|
||||
|
||||
}
|
||||
}
|
||||
@ -1,36 +0,0 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("UniversalEditor plugin for Michelangelo")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Mike Becker's Software")]
|
||||
[assembly: AssemblyProduct("Michelangelo")]
|
||||
[assembly: AssemblyCopyright("Copyright ©2014 Mike Becker's Software")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("e90eec42-a07f-447d-a078-ac6be9133744")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
@ -1,74 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{D623EC26-1A04-4BFE-84EE-E738281499C0}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>UniversalEditor</RootNamespace>
|
||||
<AssemblyName>UniversalEditor.Plugins.Michelangelo</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<TargetFrameworkProfile />
|
||||
<ReleaseVersion>4.0.2019.12</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\Output\Debug\Plugins\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\Output\Release\Plugins\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="DataFormats\Michelangelo\Canvas\MichelangeloCanvasDataFormat.cs" />
|
||||
<Compile Include="ObjectModels\Michelangelo\Canvas\CanvasObject.cs" />
|
||||
<Compile Include="ObjectModels\Michelangelo\Canvas\CanvasObjectInstance.cs" />
|
||||
<Compile Include="ObjectModels\Michelangelo\Canvas\CanvasObjectModel.cs" />
|
||||
<Compile Include="ObjectModels\Michelangelo\Canvas\CanvasObjectProperty.cs" />
|
||||
<Compile Include="ObjectModels\Michelangelo\Canvas\CanvasObjectPropertyInstance.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Libraries\UniversalEditor.Compression\UniversalEditor.Compression.csproj">
|
||||
<Project>{3F664673-7E22-4486-9AD0-FC81861D0B78}</Project>
|
||||
<Name>UniversalEditor.Compression</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\UniversalEditor.Core\UniversalEditor.Core.csproj">
|
||||
<Project>{2D4737E6-6D95-408A-90DB-8DFF38147E85}</Project>
|
||||
<Name>UniversalEditor.Core</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\UniversalEditor.Essential\UniversalEditor.Essential.csproj">
|
||||
<Project>{30467E5C-05BC-4856-AADC-13906EF4CADD}</Project>
|
||||
<Name>UniversalEditor.Essential</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\UniversalEditor.Plugins.FileSystem\UniversalEditor.Plugins.FileSystem.csproj">
|
||||
<Project>{76FD1306-9CA4-428F-993B-B7E4EEEACBF3}</Project>
|
||||
<Name>UniversalEditor.Plugins.FileSystem</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
@ -71,8 +71,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Kro
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Lighting", "Plugins\UniversalEditor.Plugins.Lighting\UniversalEditor.Plugins.Lighting.csproj", "{1C24F4F8-9D94-4783-B5C0-11564D70B76A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Michelangelo", "Plugins\UniversalEditor.Plugins.Michelangelo\UniversalEditor.Plugins.Michelangelo.csproj", "{D623EC26-1A04-4BFE-84EE-E738281499C0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Microsoft", "Plugins\UniversalEditor.Plugins.Microsoft\UniversalEditor.Plugins.Microsoft.csproj", "{4698BC3F-EC29-42EB-9AED-3D8F9983A108}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniversalEditor.Plugins.Microsoft.Merlin", "Plugins\UniversalEditor.Plugins.Microsoft.Merlin\UniversalEditor.Plugins.Microsoft.Merlin.csproj", "{9F1FDC26-5F1C-4C2A-BBBF-3A597A72802D}"
|
||||
@ -353,10 +351,6 @@ Global
|
||||
{D4D9C9A6-04A4-46AD-8238-2493A455723F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D4D9C9A6-04A4-46AD-8238-2493A455723F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D4D9C9A6-04A4-46AD-8238-2493A455723F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D623EC26-1A04-4BFE-84EE-E738281499C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D623EC26-1A04-4BFE-84EE-E738281499C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D623EC26-1A04-4BFE-84EE-E738281499C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D623EC26-1A04-4BFE-84EE-E738281499C0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D9D5AC3B-9AC0-4D4E-B295-2134FDCF166C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D9D5AC3B-9AC0-4D4E-B295-2134FDCF166C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D9D5AC3B-9AC0-4D4E-B295-2134FDCF166C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
@ -504,7 +498,6 @@ Global
|
||||
{991F734F-D659-4252-8D2D-E6F828474861} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{47197929-1C1D-4F47-A08A-77FECD8879D6} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{1C24F4F8-9D94-4783-B5C0-11564D70B76A} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{D623EC26-1A04-4BFE-84EE-E738281499C0} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{4698BC3F-EC29-42EB-9AED-3D8F9983A108} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{9F1FDC26-5F1C-4C2A-BBBF-3A597A72802D} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
{05127997-B7F3-4802-8021-06C048C8FE63} = {2ED32D16-6C06-4450-909A-40D32DA67FB4}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user