Browse Source

Cleanup

pull/30/head
PeterForstmeier 13 years ago
parent
commit
6bc5f5afb1
  1. 22
      src/AddIns/BackendBindings/CppBinding/CppBinding/CppBinding.addin
  2. 6
      src/AddIns/BackendBindings/CppBinding/CppBinding/CppBinding.csproj
  3. 4
      src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptions.cs
  4. 2
      src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptions.xaml
  5. 2
      src/AddIns/BackendBindings/CppBinding/CppBinding/Project/old_ApplicationOptions.cs

22
src/AddIns/BackendBindings/CppBinding/CppBinding/CppBinding.addin

@ -14,14 +14,10 @@
</Manifest> </Manifest>
<Path path = "/SharpDevelop/BackendBindings/ProjectOptions/C++"> <Path path = "/SharpDevelop/BackendBindings/ProjectOptions/C++">
<!--
<OptionPanel id = "Application"
label = "${res:Dialog.ProjectOptions.ApplicationSettings}"
class = "ICSharpCode.CppBinding.Project.ApplicationOptions" />
-->
<OptionPanel id = "Application1" <OptionPanel id = "Application1"
label = "${res:Dialog.ProjectOptions.ApplicationSettings}" label = "${res:Dialog.ProjectOptions.ApplicationSettings}"
class = "ICSharpCode.CppBinding.Project.ApplicationOptionsXaml" /> class = "ICSharpCode.CppBinding.Project.ApplicationOptions" />
<OptionPanel id = "Preprocessor" <OptionPanel id = "Preprocessor"
label = "${res:ICSharpCode.CppBinding.ProjectOptions.Preprocessor}" label = "${res:ICSharpCode.CppBinding.ProjectOptions.Preprocessor}"
@ -29,19 +25,7 @@
<OptionPanel id = "Linker" <OptionPanel id = "Linker"
label = "${res:ICSharpCode.CppBinding.ProjectOptions.Linker}" label = "${res:ICSharpCode.CppBinding.ProjectOptions.Linker}"
class = "ICSharpCode.CppBinding.Project.LinkerOptions" /> class = "ICSharpCode.CppBinding.Project.LinkerOptions" />
<!--<OptionPanel id = "BuildEvents"
label = "${res:Dialog.ProjectOptions.BuildEvents}"
class = "ICSharpCode.CppBinding.Project.BuildEventOptions"/>-->
<!--<OptionPanel id = "ReferencePaths"
label = "${res:Dialog.ProjectOptions.ReferencePaths}"
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.ReferencePaths"/>
<OptionPanel id = "Signing"
label = "${res:Dialog.ProjectOptions.Signing}"
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.Signing"/>
<OptionPanel id = "DebugOptions"
label = "${res:Dialog.ProjectOptions.DebugOptions}"
class = "ICSharpCode.SharpDevelop.Gui.OptionPanels.DebugOptions"/>/-->
<Include id = "AllManaged" path="/SharpDevelop/BackendBindings/ProjectOptions/AllManaged"/> <Include id = "AllManaged" path="/SharpDevelop/BackendBindings/ProjectOptions/AllManaged"/>
</Path> </Path>

6
src/AddIns/BackendBindings/CppBinding/CppBinding/CppBinding.csproj

@ -78,8 +78,8 @@
<Compile Include="CppFormattingStrategy.cs" /> <Compile Include="CppFormattingStrategy.cs" />
<Compile Include="CppLanguageBinding.cs" /> <Compile Include="CppLanguageBinding.cs" />
<Compile Include="CppLanguageProperties.cs" /> <Compile Include="CppLanguageProperties.cs" />
<Compile Include="Project\ApplicationOptionsXaml.cs"> <Compile Include="Project\ApplicationOptions.cs">
<DependentUpon>ApplicationOptionsXaml.xaml</DependentUpon> <DependentUpon>ApplicationOptions.xaml</DependentUpon>
<SubType>Code</SubType> <SubType>Code</SubType>
</Compile> </Compile>
<Compile Include="Project\DependencyRelation.cs" /> <Compile Include="Project\DependencyRelation.cs" />
@ -170,6 +170,6 @@
<Folder Include="Resources" /> <Folder Include="Resources" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Page Include="Project\ApplicationOptionsXaml.xaml" /> <Page Include="Project\ApplicationOptions.xaml" />
</ItemGroup> </ItemGroup>
</Project> </Project>

4
src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptionsXaml.cs → src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptions.cs

@ -27,14 +27,14 @@ namespace ICSharpCode.CppBinding.Project
/// <summary> /// <summary>
/// Interaction logic for ApplicationSettingsXaml.xaml /// Interaction logic for ApplicationSettingsXaml.xaml
/// </summary> /// </summary>
public partial class ApplicationOptionsXaml : ProjectOptionPanel public partial class ApplicationOptions : ProjectOptionPanel
{ {
private const string iconsfilter = "${res:SharpDevelop.FileFilter.Icons}|*.ico|${res:SharpDevelop.FileFilter.AllFiles}|*.*"; private const string iconsfilter = "${res:SharpDevelop.FileFilter.Icons}|*.ico|${res:SharpDevelop.FileFilter.AllFiles}|*.*";
private const string manifestFilter = "${res:Dialog.ProjectOptions.ApplicationSettings.Manifest.ManifestFiles}|*.manifest|${res:SharpDevelop.FileFilter.AllFiles}|*.*"; private const string manifestFilter = "${res:Dialog.ProjectOptions.ApplicationSettings.Manifest.ManifestFiles}|*.manifest|${res:SharpDevelop.FileFilter.AllFiles}|*.*";
private const string win32filter = "Win32 Resource files|*.res|${res:SharpDevelop.FileFilter.AllFiles}|*.*"; private const string win32filter = "Win32 Resource files|*.res|${res:SharpDevelop.FileFilter.AllFiles}|*.*";
MSBuildBasedProject project; MSBuildBasedProject project;
public ApplicationOptionsXaml() public ApplicationOptions()
{ {
InitializeComponent(); InitializeComponent();
} }

2
src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptionsXaml.xaml → src/AddIns/BackendBindings/CppBinding/CppBinding/Project/ApplicationOptions.xaml

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<optionpanels:ProjectOptionPanel <optionpanels:ProjectOptionPanel
x:Class="ICSharpCode.CppBinding.Project.ApplicationOptionsXaml" x:Class="ICSharpCode.CppBinding.Project.ApplicationOptions"
xmlns:sys="clr-namespace:System;assembly=mscorlib" xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

2
src/AddIns/BackendBindings/CppBinding/CppBinding/Project/old_ApplicationOptions.cs

@ -23,7 +23,7 @@ namespace ICSharpCode.CppBinding.Project
/// <summary> /// <summary>
/// Application settings panel for c++ project. /// Application settings panel for c++ project.
/// </summary> /// </summary>
public class ApplicationOptions : ICSharpCode.SharpDevelop.Gui.OptionPanels.old_ApplicationSettings public class old_ApplicationOptions : ICSharpCode.SharpDevelop.Gui.OptionPanels.old_ApplicationSettings
{ {
public override void LoadPanelContents() public override void LoadPanelContents()
{ {

Loading…
Cancel
Save