Browse Source

CppBinding/CppBinding/Project/LinkerOptions.xaml

pull/30/head
PeterForstmeier 14 years ago
parent
commit
b7ff58d580
  1. 83
      src/AddIns/BackendBindings/CppBinding/CppBinding/Project/LinkerOptions.xaml

83
src/AddIns/BackendBindings/CppBinding/CppBinding/Project/LinkerOptions.xaml

@ -1,4 +1,4 @@
<optionpanels:ProjectOptionPanel x:Class="ICSharpCode.CppBinding.Project.LinkerOptions" <optionpanels:ProjectOptionPanel x:Class="ICSharpCode.CppBinding.Project.LinkerOptions"
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"
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop" xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop"
@ -6,64 +6,83 @@
xmlns:project="clr-namespace:ICSharpCode.SharpDevelop.Project;assembly=ICSharpCode.SharpDevelop" xmlns:project="clr-namespace:ICSharpCode.SharpDevelop.Project;assembly=ICSharpCode.SharpDevelop"
xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets"
xmlns:core="http://icsharpcode.net/sharpdevelop/core"> xmlns:core="http://icsharpcode.net/sharpdevelop/core">
<ScrollViewer VerticalScrollBarVisibility="Auto">
<GroupBox Header="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker}"> <GroupBox Header="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker}">
<Grid> <Grid ShowGridLines="True">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="40"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="30"></RowDefinition> <RowDefinition Height="30"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition>
<ColumnDefinition Width="50"></ColumnDefinition> <ColumnDefinition Width="Auto"></ColumnDefinition>
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<CheckBox x:Name="debugInfoCheckBox" Margin="5,15,0,0"
<CheckBox x:Name="debugInfoCheckBox" VerticalAlignment="Center"
IsChecked="{Binding CheckBoxChecked}" IsChecked="{Binding CheckBoxChecked}"
Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.GenerateDebugInfo}"> Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.GenerateDebugInfo}">
</CheckBox> </CheckBox>
<Label Grid.Row="1" Margin="5,5,0,0" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.Library}"></Label> <Label Grid.Row="1" VerticalAlignment="Center"
Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.Library}"></Label>
<TextBox x:Name="libraryPathTextBox" <TextBox x:Name="libraryPathTextBox"
TextChanged="TextBox_TextChanged" Grid.Row="2" TextChanged="TextBox_TextChanged" Grid.Row="2" Margin="0,0,3,0"
Text="{Binding LibraryPath.Value, UpdateSourceTrigger=PropertyChanged}"> Text="{Binding LibraryPath.Value, UpdateSourceTrigger=PropertyChanged}">
</TextBox> </TextBox>
<Button x:Name="libraryPathButton" Click="LibraryPathButton_Click" <!--x:Name="libraryPathButton"-->
Margin="5" Grid.Row="2" <Button VerticalAlignment="Center" Grid.Row="2" Padding="9,1"
Height="20" Click="LibraryPathButton_Click"
Grid.Column="1" Content="...."></Button> Grid.Column="1" Content="..."></Button>
<Label Grid.Row="3" Margin="5,5,0,0" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.AdditionalLibs}"></Label> <Label Grid.Row="3" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.AdditionalLibs}"></Label>
<TextBox x:Name="additionalLibsTextBox"
<TextBox x:Name="additionalLibsTextBox" VerticalAlignment="Center" Margin="0,0,5,0"
TextChanged="TextBox_TextChanged" Grid.Row="4"> TextChanged="TextBox_TextChanged" Grid.Row="4">
</TextBox> </TextBox>
<Button x:Name="additionalLibsButton" Click="AdditionalLibsButton_Click" Grid.Row="4" Grid.Column="1" Margin="5" Content="...." ></Button>
<Label Grid.Row="5" Margin="5,5,0,0" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.AddModule}"></Label>
<TextBox x:Name="addModuleTextBox" <Button Grid.Row="4" Grid.Column="1" VerticalAlignment="Center" Padding="9,1"
Click="AdditionalLibsButton_Click" Content="..." ></Button>
<Label Grid.Row="5"
Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.AddModule}"></Label>
<TextBox x:Name="addModuleTextBox" VerticalAlignment="Center" Margin="0,0,5,0"
TextChanged="TextBox_TextChanged" Grid.Row="6"> TextChanged="TextBox_TextChanged" Grid.Row="6">
</TextBox> </TextBox>
<Button x:Name="addModuleButton" Click="AddModuleButton_Click" Grid.Row="6" Grid.Column="1" Margin="5" Content="...."></Button>
<Button Grid.Column="1" Grid.Row="6" VerticalAlignment="Center" Padding="9,1"
Content="..."
Click="AddModuleButton_Click" ></Button>
<Label Grid.Row="7"
Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.ManagedResourceFile}" ></Label>
<Label Grid.Row="7" Margin="5,5,0,0" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.Linker.ManagedResourceFile}" ></Label> <TextBox x:Name="resourceFileTextBox" VerticalAlignment="Center" Margin="0,0,5,0"
<TextBox x:Name="resourceFileTextBox"
TextChanged="TextBox_TextChanged" Grid.Row="8"></TextBox> TextChanged="TextBox_TextChanged" Grid.Row="8"></TextBox>
<Button x:Name="resourceFileButton" Click="ResourceFileButton_Click" Grid.Row="8" Grid.Column="1" Margin="5" Content="...."></Button>
<Label Grid.Row="9" Margin="5,5,0,0" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.AdditionalOptions}"></Label> <!--x:Name="resourceFileButton"-->
<TextBox x:Name="additionalOptionsTextBox" <Button Grid.Row="8" Grid.Column="1" VerticalAlignment="Center" Padding="9,1"
Click="ResourceFileButton_Click" Content="...."></Button>
<Label Grid.Row="9" Content="{core:Localize ICSharpCode.CppBinding.ProjectOptions.AdditionalOptions}"></Label>
<TextBox x:Name="additionalOptionsTextBox" VerticalAlignment="Center" Margin="0,0,5,0"
TextChanged="TextBox_TextChanged" Grid.Row="10" Grid.ColumnSpan="2"> TextChanged="TextBox_TextChanged" Grid.Row="10" Grid.ColumnSpan="2">
</TextBox> </TextBox>
</Grid> </Grid>
</GroupBox> </GroupBox>
</ScrollViewer>
</optionpanels:ProjectOptionPanel> </optionpanels:ProjectOptionPanel>
Loading…
Cancel
Save