mirror of
https://github.com/fadden/6502bench.git
synced 2024-12-05 03:49:53 +00:00
5a560aa9eb
Added a "format help" button to the long comment edit window. This brings up a quick summary of the format tags in a modal dialog. Updated documentation and tutorial.
92 lines
4.4 KiB
XML
92 lines
4.4 KiB
XML
<!--
|
|
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.
|
|
-->
|
|
|
|
<Window x:Class="SourceGen.WpfGui.EditLongComment"
|
|
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"
|
|
xmlns:local="clr-namespace:SourceGen.WpfGui"
|
|
mc:Ignorable="d"
|
|
Title="Edit Long Comment"
|
|
Width="584" Height="700" MinWidth="584" MinHeight="600" ResizeMode="CanResizeWithGrip"
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
|
Loaded="Window_Loaded"
|
|
Closing="Window_Closing">
|
|
|
|
<Window.Resources>
|
|
<RoutedUICommand x:Key="CloseCmd">
|
|
<RoutedUICommand.InputGestures>
|
|
<KeyGesture>Ctrl+Enter</KeyGesture>
|
|
</RoutedUICommand.InputGestures>
|
|
</RoutedUICommand>
|
|
</Window.Resources>
|
|
<Window.CommandBindings>
|
|
<CommandBinding Command="{StaticResource CloseCmd}" Executed="CloseCmd_Executed"/>
|
|
</Window.CommandBindings>
|
|
|
|
<Grid Margin="8">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Row="0" Text="Enter comment text:"/>
|
|
|
|
<TextBox Name="entryTextBox" Grid.Row="1"
|
|
Text="{Binding UserInput, UpdateSourceTrigger=PropertyChanged,
|
|
FallbackValue=01234567890123456789012345678901234567890123456789012345678901234567890123456789}"
|
|
FontFamily="{StaticResource GeneralMonoFont}" VerticalScrollBarVisibility="Visible"
|
|
AcceptsReturn="True" TextWrapping="Wrap"/>
|
|
|
|
<Grid Grid.Row="2" Margin="0,20,0,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<CheckBox Grid.Column="0" Content="Enable fancy formatting" Margin="0,4,0,0"
|
|
IsChecked="{Binding IsFancyEnabled}"/>
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal"
|
|
IsEnabled="{Binding Path=IsFancyEnabled, Converter={StaticResource InvertBool}}">
|
|
<TextBlock Text="Line width:" Margin="0,3,0,0"/>
|
|
<ComboBox Name="maxWidthComboBox" Width="75" Margin="8,0,0,0"
|
|
ItemsSource="{Binding LineWidthItems}" SelectionChanged="MaxWidthComboBox_SelectionChanged"/>
|
|
</StackPanel>
|
|
<CheckBox Grid.Column="2" Content="Render in _box" Margin="0,4,0,0"
|
|
IsEnabled="{Binding Path=IsFancyEnabled, Converter={StaticResource InvertBool}}"
|
|
IsChecked="{Binding RenderInBox}"/>
|
|
</Grid>
|
|
|
|
<TextBlock Grid.Row="3" Text="Expected output:" Margin="0,20,0,0"/>
|
|
<TextBox Name="displayTextBox" Grid.Row="4"
|
|
Text="{Binding TextOutput,
|
|
FallbackValue=01234567890123456789012345678901234567890123456789012345678901234567890123456789}"
|
|
FontFamily="{StaticResource GeneralMonoFont}" VerticalScrollBarVisibility="Visible"
|
|
IsReadOnly="True" Background="#f8f8f8"/>
|
|
|
|
<DockPanel Grid.Row="5" LastChildFill="False" Margin="0,8,0,0">
|
|
<Button Content="Format Help" DockPanel.Dock="Left" Width="100" Click="FormatHelp_Click"/>
|
|
<Button Content="Cancel" DockPanel.Dock="Right" IsCancel="True" Width="70" Margin="4,0,0,0"/>
|
|
<Button Content="OK" DockPanel.Dock="Right" IsDefault="True" Width="70" Click="OkButton_Click"/>
|
|
</DockPanel>
|
|
</Grid>
|
|
</Window>
|