Browse Source

Move XmlEditor files in Src/Resources subdirectories.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@323 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 21 years ago
parent
commit
cf3eb0d1b9
  1. 6
      AddIns/ICSharpCode.SharpDevelop.addin
  2. 2
      src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin
  3. 2
      src/AddIns/BackendBindings/ILAsmBinding/Project/ILAsmBinding.addin
  4. 2
      src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin
  5. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs
  6. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Resources/SelectXmlSchema.xfrm
  7. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Resources/XmlEditorOptionsPanel.xfrm
  8. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Resources/XmlSchemasPanel.xfrm
  9. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs
  10. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs
  11. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs
  12. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/EncodedStringWriter.cs
  13. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs
  14. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/QualifiedName.cs
  15. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/QualifiedNameCollection.cs
  16. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs
  17. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs
  18. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs
  19. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs
  20. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataImageList.cs
  21. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs
  22. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs
  23. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs
  24. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs
  25. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs
  26. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementPath.cs
  27. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs
  28. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs
  29. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs
  30. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs
  31. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs
  32. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs
  33. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaListBoxItem.cs
  34. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs
  35. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs
  36. 0
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs
  37. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin
  38. 64
      src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.csproj
  39. 2
      src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs

6
AddIns/ICSharpCode.SharpDevelop.addin

@ -6,8 +6,8 @@ @@ -6,8 +6,8 @@
version = "1.0.0">
<Runtime>
<Import assembly="/ICSharpCode.SharpDevelop"/>
<Import assembly="/ICSharpCode.TextEditor"/>
<Import assembly=":ICSharpCode.SharpDevelop"/>
<Import assembly=":ICSharpCode.TextEditor"/>
</Runtime>
<Path name = "/SharpDevelop/Workbench/Ambiences">
@ -734,7 +734,7 @@ @@ -734,7 +734,7 @@
<Condition name="IsProcessRunning" isdebugging="False" action="Disable">
<ToolbarItem id = "RunWithoutDebugger"
icon = "Icons.16x16.Debug.StartWithoutDebugging"
tooltip = "${res:XML.MainMenu.RunMenu.Run.Description}"
tooltip = "${res:XML.MainMenu.DebugMenu.RunWithoutDebug.Description}"
class = "ICSharpCode.SharpDevelop.Project.Commands.ExecuteWithoutDebugger"/>
</Condition>
</Condition>

2
src/AddIns/BackendBindings/CSharpBinding/Project/CSharpBinding.addin

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
<Runtime>
<Import assembly = "CSharpBinding.dll"/>
<Import assembly = "/ICSharpCode.SharpDevelop"/>
<Import assembly = ":ICSharpCode.SharpDevelop"/>
</Runtime>
<Path name = "/SharpDevelop/Workbench/Ambiences">

2
src/AddIns/BackendBindings/ILAsmBinding/Project/ILAsmBinding.addin

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
<Runtime>
<Import assembly = "ILAsmBinding.dll"/>
<Import assembly = "/ICSharpCode.SharpDevelop"/>
<Import assembly = ":ICSharpCode.SharpDevelop"/>
</Runtime>
<Path name = "/SharpDevelop/Workbench/FileFilter">

2
src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.addin

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
<Runtime>
<Import assembly = "VBNetBinding.dll"/>
<Import assembly = "/ICSharpCode.SharpDevelop"/>
<Import assembly = ":ICSharpCode.SharpDevelop"/>
</Runtime>
<Path name = "/SharpDevelop/Workbench/Ambiences">

0
src/AddIns/DisplayBindings/XmlEditor/Project/AssemblyInfo.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Configuration/AssemblyInfo.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/SelectXmlSchema.xfrm → src/AddIns/DisplayBindings/XmlEditor/Project/Resources/SelectXmlSchema.xfrm

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditorOptionsPanel.xfrm → src/AddIns/DisplayBindings/XmlEditor/Project/Resources/XmlEditorOptionsPanel.xfrm

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemasPanel.xfrm → src/AddIns/DisplayBindings/XmlEditor/Project/Resources/XmlSchemasPanel.xfrm

0
src/AddIns/DisplayBindings/XmlEditor/Project/CodeCompletionPopupCommand.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionPopupCommand.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/CodeCompletionWindow.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/CodeCompletionWindow.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/CreateSchemaCommand.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/CreateSchemaCommand.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/EncodedStringWriter.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/EncodedStringWriter.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/Parser.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/Parser.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/QualifiedName.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/QualifiedName.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/QualifiedNameCollection.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/QualifiedNameCollection.cs

2
src/AddIns/DisplayBindings/XmlEditor/Project/SelectXmlSchemaForm.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/SelectXmlSchemaForm.cs

@ -64,7 +64,7 @@ namespace ICSharpCode.XmlEditor @@ -64,7 +64,7 @@ namespace ICSharpCode.XmlEditor
void Initialize()
{
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.SelectXmlSchema.xfrm"));
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.Resources.SelectXmlSchema.xfrm"));
NoSchemaSelectedText = StringParser.Parse("${res:Dialog.Options.IDEOptions.TextEditor.Behaviour.IndentStyle.None}");

0
src/AddIns/DisplayBindings/XmlEditor/Project/ValidateXmlCommand.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/ValidateXmlCommand.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlCompletionData.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionData.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlCompletionDataCollection.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataCollection.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlCompletionDataImageList.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataImageList.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlCompletionDataProvider.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlCompletionDataProvider.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlDisplayBinding.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlDisplayBinding.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditorAddInOptions.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorAddInOptions.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditorControl.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorControl.cs

2
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditorOptionsPanel.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlEditorOptionsPanel.cs

@ -28,7 +28,7 @@ namespace ICSharpCode.XmlEditor @@ -28,7 +28,7 @@ namespace ICSharpCode.XmlEditor
/// </summary>
public override void LoadPanelContents()
{
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.XmlEditorOptionsPanel.xfrm"));
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.Resources.XmlEditorOptionsPanel.xfrm"));
((CheckBox)ControlDictionary[showAttributesWhenFoldedCheckBoxName]).Checked = XmlEditorAddInOptions.ShowAttributesWhenFolded;
((CheckBox)ControlDictionary[showSchemaAnnotationCheckBoxName]).Checked = XmlEditorAddInOptions.ShowSchemaAnnotation;

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlElementPath.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlElementPath.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlFoldingStrategy.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlFoldingStrategy.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlParser.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlParser.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaAssociation.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaAssociationListBoxItem.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociationListBoxItem.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaCompletionData.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionData.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaCompletionDataCollection.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaCompletionDataCollection.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaListBoxItem.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaListBoxItem.cs

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemaManager.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaManager.cs

2
src/AddIns/DisplayBindings/XmlEditor/Project/XmlSchemasPanel.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemasPanel.cs

@ -45,7 +45,7 @@ namespace ICSharpCode.XmlEditor @@ -45,7 +45,7 @@ namespace ICSharpCode.XmlEditor
/// </summary>
public override void LoadPanelContents()
{
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.XmlSchemasPanel.xfrm"));
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.XmlEditor.Resources.XmlSchemasPanel.xfrm"));
schemaListBox = (ListBox)ControlDictionary["schemaListBox"];
schemaListBox.DrawMode = DrawMode.OwnerDrawFixed;

0
src/AddIns/DisplayBindings/XmlEditor/Project/XmlView.cs → src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlView.cs

2
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.addin

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
<Runtime>
<Import assembly = "XmlEditor.dll"/>
<Import assembly = "/ICSharpCode.SharpDevelop"/>
<Import assembly = ":ICSharpCode.SharpDevelop"/>
</Runtime>
<!-- Xml Editor View -->

64
src/AddIns/DisplayBindings/XmlEditor/Project/XmlEditor.csproj

@ -36,38 +36,38 @@ @@ -36,38 +36,38 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="XmlEditorControl.cs" />
<Compile Include="XmlCompletionDataProvider.cs" />
<Compile Include="XmlCompletionData.cs" />
<Compile Include="XmlCompletionDataImageList.cs" />
<Compile Include="XmlParser.cs" />
<Compile Include="XmlSchemaCompletionData.cs" />
<Compile Include="XmlSchemaCompletionDataCollection.cs" />
<Compile Include="XmlFoldingStrategy.cs" />
<Compile Include="QualifiedName.cs" />
<Compile Include="XmlElementPath.cs" />
<Compile Include="QualifiedNameCollection.cs" />
<Compile Include="XmlCompletionDataCollection.cs" />
<Compile Include="XmlDisplayBinding.cs" />
<Compile Include="XmlView.cs" />
<Compile Include="XmlSchemaManager.cs" />
<Compile Include="Parser.cs" />
<Compile Include="ValidateXmlCommand.cs" />
<Compile Include="XmlSchemasPanel.cs" />
<Compile Include="XmlSchemaListBoxItem.cs" />
<Compile Include="CodeCompletionWindow.cs" />
<Compile Include="XmlEditorAddInOptions.cs" />
<Compile Include="SelectXmlSchemaForm.cs" />
<Compile Include="CodeCompletionPopupCommand.cs" />
<Compile Include="XmlSchemaAssociation.cs" />
<Compile Include="XmlSchemaAssociationListBoxItem.cs" />
<Compile Include="XmlEditorOptionsPanel.cs" />
<Compile Include="CreateSchemaCommand.cs" />
<Compile Include="EncodedStringWriter.cs" />
<EmbeddedResource Include="XmlSchemasPanel.xfrm" />
<EmbeddedResource Include="SelectXmlSchema.xfrm" />
<EmbeddedResource Include="XmlEditorOptionsPanel.xfrm" />
<Compile Include="Configuration\AssemblyInfo.cs" />
<Compile Include="Src\XmlEditorControl.cs" />
<Compile Include="Src\XmlCompletionDataProvider.cs" />
<Compile Include="Src\XmlCompletionData.cs" />
<Compile Include="Src\XmlCompletionDataImageList.cs" />
<Compile Include="Src\XmlParser.cs" />
<Compile Include="Src\XmlSchemaCompletionData.cs" />
<Compile Include="Src\XmlSchemaCompletionDataCollection.cs" />
<Compile Include="Src\XmlFoldingStrategy.cs" />
<Compile Include="Src\QualifiedName.cs" />
<Compile Include="Src\XmlElementPath.cs" />
<Compile Include="Src\QualifiedNameCollection.cs" />
<Compile Include="Src\XmlCompletionDataCollection.cs" />
<Compile Include="Src\XmlDisplayBinding.cs" />
<Compile Include="Src\XmlView.cs" />
<Compile Include="Src\XmlSchemaManager.cs" />
<Compile Include="Src\Parser.cs" />
<Compile Include="Src\ValidateXmlCommand.cs" />
<Compile Include="Src\XmlSchemasPanel.cs" />
<Compile Include="Src\XmlSchemaListBoxItem.cs" />
<Compile Include="Src\CodeCompletionWindow.cs" />
<Compile Include="Src\XmlEditorAddInOptions.cs" />
<Compile Include="Src\SelectXmlSchemaForm.cs" />
<Compile Include="Src\CodeCompletionPopupCommand.cs" />
<Compile Include="Src\XmlSchemaAssociation.cs" />
<Compile Include="Src\XmlSchemaAssociationListBoxItem.cs" />
<Compile Include="Src\XmlEditorOptionsPanel.cs" />
<Compile Include="Src\CreateSchemaCommand.cs" />
<Compile Include="Src\EncodedStringWriter.cs" />
<EmbeddedResource Include="Resources\XmlSchemasPanel.xfrm" />
<EmbeddedResource Include="Resources\SelectXmlSchema.xfrm" />
<EmbeddedResource Include="Resources\XmlEditorOptionsPanel.xfrm" />
<None Include="XmlEditor.addin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>

2
src/Main/Core/Project/Src/AddInTree/AddIn/Runtime.cs

@ -45,7 +45,7 @@ namespace ICSharpCode.Core @@ -45,7 +45,7 @@ namespace ICSharpCode.Core
isAssemblyLoaded = true;
try {
if (assembly[0] == '/') {
if (assembly[0] == ':') {
loadedAssembly = System.Reflection.Assembly.Load(assembly.Substring(1));
} else {
loadedAssembly = System.Reflection.Assembly.LoadFrom(Path.Combine(hintPath, assembly));

Loading…
Cancel
Save