mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Add file association for .eop, prompt for install dir * Handle .eop or .aip file passed as arg. * VS2022 version bump * Filter neutron stars and black holes from fast spinning criteria. * Adjustments for new "high value" check * Refactor herald cache * Fix element order and namespaces for voice moods. * Add explicit .Stop() between audio player calls. * Use nullsafe member access instead of skipping * Don't queue up a title that's already queued. * Improve body ordinal handling for explorer speech titles. * Escape strings being inserted into xml * Handle flip-flopping JSON type * Converter for flip-flopping property type * Use the converter * Escape characters *before* we wrap it in xml. * Give Eahlstan his clear button. :D * Exclude all stars from fast rotation check. * Close outstanding popup notifications on exit. * TO DONE * [Herald] Suppress duplicate notification titles for spoken notifications If you have notifications from multiple plugins producing notifications with the same title in quick succession (ie. "Body A 1 e" from both Explorer and BioInsights), the title on successive notifications will not be spoken again to save the breath of our friendly Azure speakers. * Doc update * Remove unintended member hiding * Fix export errors when exporting BioInsights data, cleanup Discovered a couple issues with exporting BioInsights data resulting from using two different types of objects in the data grid; improved error handling as well. Also cleaned up some old-style read all code. * Add read-all on launch setting * Updated framework xml * Improve high-value body description text Co-authored-by: Fred Kuipers <mr.fredk@gmail.com>
108 lines
3.4 KiB
XML
108 lines
3.4 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
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:vw="clr-namespace:Observatory.UI.Views"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Observatory.UI.Views.CoreView">
|
|
<UserControl.Styles>
|
|
<Style Selector="Button.Hyperlink">
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
<Setter Property="BorderThickness" Value="0,0,0,1"/>
|
|
<Setter Property="BorderBrush" Value="White"/>
|
|
<Setter Property="Padding" Value="0"/>
|
|
<Setter Property="FontSize" Value="10"/>
|
|
</Style>
|
|
</UserControl.Styles>
|
|
<Grid RowDefinitions="30,*,Auto">
|
|
<TextBlock Grid.Row="0" VerticalAlignment="Center" Padding="10,0,0,0" Name="Title">
|
|
Elite Observatory - v0
|
|
</TextBlock>
|
|
<TabControl Name="CoreTabs"
|
|
Grid.Row="1" Grid.Column="1"
|
|
VerticalAlignment="Stretch"
|
|
TabStripPlacement="Left"
|
|
Items="{Binding Tabs}"
|
|
BorderBrush="Black"
|
|
BorderThickness="1">
|
|
<TabControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<TabItem>
|
|
<TabItem.Header>
|
|
<TextBlock Text="{Binding Name}"/>
|
|
</TabItem.Header>
|
|
</TabItem>
|
|
</DataTemplate>
|
|
</TabControl.ItemTemplate>
|
|
<TabControl.ContentTemplate>
|
|
<DataTemplate>
|
|
<vw:BasicUIView DataContext="{Binding UI}" UIType="{Binding UIType}"/>
|
|
</DataTemplate>
|
|
</TabControl.ContentTemplate>
|
|
</TabControl>
|
|
<Grid RowDefinitions="Auto,Auto" Grid.Row="2">
|
|
<StackPanel Grid.Column="1" Height="50" VerticalAlignment="Bottom" Orientation="Vertical" HorizontalAlignment="Left">
|
|
<Button
|
|
Classes="Hyperlink"
|
|
Name="github"
|
|
Margin="10,0,0,5"
|
|
Command="{Binding OpenGithub}"
|
|
FontSize="15"
|
|
Cursor="Hand">
|
|
github
|
|
</Button>
|
|
<Button
|
|
Classes="Hyperlink"
|
|
Name="Donate"
|
|
Margin="10,0,0,0"
|
|
Command="{Binding OpenDonate}"
|
|
FontSize="15"
|
|
Cursor="Hand">
|
|
Donate
|
|
</Button>
|
|
</StackPanel>
|
|
<WrapPanel Grid.Column="2" Height="50" VerticalAlignment="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button
|
|
Classes="Hyperlink"
|
|
Name="update"
|
|
Margin="0,0,10,0"
|
|
FontSize="15"
|
|
Command="{Binding GetUpdate}"
|
|
IsVisible="{Binding UpdateAvailable}"
|
|
IsEnabled="{Binding UpdateAvailable}"
|
|
Cursor="Hand">
|
|
Update Available
|
|
</Button>
|
|
<Button
|
|
Name="export"
|
|
Margin="10"
|
|
FontSize="15"
|
|
Command="{Binding ExportGrid}"
|
|
Content="Export">
|
|
Export
|
|
</Button>
|
|
<Button
|
|
Name="clear"
|
|
Margin="10"
|
|
FontSize="15"
|
|
Command="{Binding ClearGrid}"
|
|
Content="Clear">
|
|
Clear
|
|
</Button>
|
|
<Button
|
|
Name="ToggleMonitor"
|
|
Margin="10"
|
|
Command="{Binding ToggleMonitor}"
|
|
Content="{Binding ToggleButtonText}">
|
|
Start Monitor
|
|
</Button>
|
|
<Button
|
|
Name="ReadAll"
|
|
Margin="10"
|
|
Command="{Binding ReadAll}">
|
|
Read All
|
|
</Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |