2019-06-16 23:34:47 +00:00
|
|
|
<!--
|
|
|
|
Copyright 2019 faddenSoft
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2019-07-20 20:28:10 +00:00
|
|
|
<Window x:Class="SourceGen.WpfGui.EditAddress"
|
2019-06-16 23:34:47 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2021-09-22 21:39:39 +00:00
|
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
2019-07-20 20:28:10 +00:00
|
|
|
xmlns:local="clr-namespace:SourceGen.WpfGui"
|
2019-06-16 23:34:47 +00:00
|
|
|
mc:Ignorable="d"
|
2021-09-22 21:39:39 +00:00
|
|
|
Title="Edit Address Range"
|
2019-06-16 23:34:47 +00:00
|
|
|
SizeToContent="WidthAndHeight" ResizeMode="NoResize"
|
|
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
2019-07-21 22:24:39 +00:00
|
|
|
ContentRendered="Window_ContentRendered">
|
2019-06-16 23:34:47 +00:00
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<Window.Resources>
|
|
|
|
<system:String x:Key="str_HdrCreate">Creating new address range, with properties:</system:String>
|
|
|
|
<system:String x:Key="str_HdrEdit">Editing existing address range, with properties:</system:String>
|
|
|
|
<system:String x:Key="str_HdrResize">Resizing existing address range, with properties:</system:String>
|
|
|
|
</Window.Resources>
|
|
|
|
|
2019-06-16 23:34:47 +00:00
|
|
|
<StackPanel Margin="8">
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Name="headerText" Text="{StaticResource str_HdrCreate}"/>
|
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Column="0" Grid.Row="0" Margin="8,0,0,0" Text="Start:"/>
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="0" Margin="4,2,0,0"
|
|
|
|
Text="{Binding RegionStartOffsetStr, FallbackValue=+123456}"
|
2019-12-26 01:15:37 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="1" Margin="8,0,0,0" Text="End:"/>
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="1" Margin="4,2,0,0"
|
|
|
|
Text="{Binding RegionEndOffsetStr, FallbackValue=+123456}"
|
2019-12-26 01:15:37 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="2" Margin="8,0,0,0" Text="Length:"/>
|
|
|
|
<StackPanel Grid.Column="1" Grid.Row="2" Margin="4,0,0,0" Orientation="Horizontal">
|
|
|
|
<TextBlock Margin="0,2,0,0"
|
|
|
|
Text="{Binding RegionLengthStr, FallbackValue=23456 / $1234}"
|
2019-12-26 01:15:37 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Text="(floating)" Margin="4,0,0,0" FontWeight="Bold"
|
|
|
|
Visibility="{Binding FloatTextVis}"/>
|
2019-12-26 01:15:37 +00:00
|
|
|
</StackPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<!-- failure message goes here -->
|
|
|
|
|
|
|
|
<StackPanel IsEnabled="{Binding IsRegionValid}">
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,8,0,0">
|
|
|
|
<TextBlock Text="Address (hex):"/>
|
|
|
|
|
|
|
|
<TextBox Name="addrTextBox" Width="100" Margin="4,1,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"
|
|
|
|
Text="{Binding Path=AddressText, UpdateSourceTrigger=PropertyChanged}"
|
|
|
|
IsInactiveSelectionHighlightEnabled="True">
|
|
|
|
<TextBox.Resources>
|
|
|
|
<!-- default non-focus highlight color is nearly invisible -->
|
|
|
|
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}"
|
|
|
|
Color="LightBlue"/>
|
|
|
|
</TextBox.Resources>
|
|
|
|
</TextBox>
|
2019-12-26 01:15:37 +00:00
|
|
|
</StackPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
|
|
|
<TextBlock Text="• Enter 16-bit or 24-bit address, e.g. $1000 or 01/be00." Margin="0,4,0,0"/>
|
|
|
|
<TextBlock Text="• Leave the field blank to remove the address override."/>
|
|
|
|
<TextBlock Text="• Enter 'NA' if the region is non-addressable."/>
|
2019-06-16 23:34:47 +00:00
|
|
|
</StackPanel>
|
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<GroupBox Header="Advanced" Padding="2,4" Margin="0,12,0,0">
|
|
|
|
<StackPanel>
|
|
|
|
<CheckBox Content="Use relative addressing"
|
|
|
|
IsChecked="{Binding UseRelativeAddressing}"/>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,12,0,0">
|
|
|
|
<TextBlock Text="Pre-label:"/>
|
|
|
|
<TextBox Name="preLabelTextBox" Width="100" Margin="4,1,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"
|
|
|
|
Text="{Binding Path=PreLabelText, UpdateSourceTrigger=PropertyChanged}"/>
|
|
|
|
<TextBlock Text="(address: " Margin="8,0,0,0"/>
|
|
|
|
<TextBlock Text="{Binding Path=PreLabelAddressStr, FallbackValue=$1234}"
|
|
|
|
Margin="0,2,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
<TextBlock Text=")"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<TextBlock Text="• Must be valid label syntax; may not be a local label." Margin="0,4,0,0"/>
|
|
|
|
<TextBlock Text="• Must not be a duplicate of an existing label."/>
|
|
|
|
<TextBlock Text="• Will be ignored if preceding region is non-addressable."/>
|
|
|
|
</StackPanel>
|
|
|
|
</GroupBox>
|
|
|
|
|
|
|
|
|
2019-10-22 20:52:19 +00:00
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,10,0,0">
|
2019-12-26 01:15:37 +00:00
|
|
|
<Button Content="OK" IsDefault="True" Width="70"
|
2019-07-05 22:05:42 +00:00
|
|
|
IsEnabled="{Binding IsValid}" Click="OkButton_Click"/>
|
2019-12-26 01:15:37 +00:00
|
|
|
<Button Content="Cancel" IsCancel="True" Width="70" Margin="4,0,0,0"/>
|
2019-06-16 23:34:47 +00:00
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
</Window>
|