From b5e61d10d0142734c2d81f48ba4f4507c629d1f8 Mon Sep 17 00:00:00 2001 From: dbuechel Date: Tue, 22 Aug 2017 15:47:42 +0200 Subject: [PATCH] Started implementing classic user interface. --- .../Behaviour/Operations/TaskbarOperation.cs | 4 +-- .../AboutWindow.xaml | 4 +-- .../BrowserWindow.xaml | 2 +- .../Controls/ApplicationButton.xaml | 15 ++++++---- .../Controls/ApplicationButton.xaml.cs | 30 +++++++++++-------- .../Controls/ApplicationInstanceButton.xaml | 14 +++++++-- .../Controls/DateTimeControl.xaml | 6 ++-- .../Controls/NotificationButton.xaml | 10 ++++++- .../Controls/QuitButton.xaml | 10 ++++++- .../LogWindow.xaml | 4 +-- ...feExamBrowser.UserInterface.Classic.csproj | 8 +++++ .../SplashScreen.xaml | 2 +- .../Taskbar.xaml | 8 ++--- .../Templates/Buttons.xaml | 23 ++++++++++++++ .../Templates/Colors.xaml | 5 ++++ .../Utilities/IconResourceLoader.cs | 11 ++++++- 16 files changed, 118 insertions(+), 38 deletions(-) create mode 100644 SafeExamBrowser.UserInterface.Classic/Templates/Buttons.xaml create mode 100644 SafeExamBrowser.UserInterface.Classic/Templates/Colors.xaml diff --git a/SafeExamBrowser.Core/Behaviour/Operations/TaskbarOperation.cs b/SafeExamBrowser.Core/Behaviour/Operations/TaskbarOperation.cs index fec8cda7..4ff4288e 100644 --- a/SafeExamBrowser.Core/Behaviour/Operations/TaskbarOperation.cs +++ b/SafeExamBrowser.Core/Behaviour/Operations/TaskbarOperation.cs @@ -59,9 +59,9 @@ namespace SafeExamBrowser.Core.Behaviour.Operations CreateLogNotification(); } - CreateAboutNotification(); - // TODO: + //CreateAboutNotification(); + //if (systemInfo.HasBattery) //{ // CreatePowerSupplyComponent(); diff --git a/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml index f3724da4..5bdc23cf 100644 --- a/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml +++ b/SafeExamBrowser.UserInterface.Classic/AboutWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic" mc:Ignorable="d" - Title="About Safe Exam Browser" Height="350" Width="450" ResizeMode="NoResize" Icon="./Images/SafeExamBrowser.ico" + Title="About Safe Exam Browser" Background="White" Height="350" Width="450" ResizeMode="NoResize" Icon="./Images/SafeExamBrowser.ico" ShowInTaskbar="False" WindowStartupLocation="CenterScreen"> @@ -17,7 +17,7 @@ - + This application is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/SafeExamBrowser.UserInterface.Classic/BrowserWindow.xaml b/SafeExamBrowser.UserInterface.Classic/BrowserWindow.xaml index af38aab6..1754f754 100644 --- a/SafeExamBrowser.UserInterface.Classic/BrowserWindow.xaml +++ b/SafeExamBrowser.UserInterface.Classic/BrowserWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic" mc:Ignorable="d" - Title="BrowserWindow" Height="500" Width="500" WindowState="Maximized" Icon=".\Images\Chromium.ico"> + Title="BrowserWindow" Background="#FFF0F0F0" Height="500" Width="500" WindowState="Maximized" Icon=".\Images\Chromium.ico"> diff --git a/SafeExamBrowser.UserInterface.Classic/Controls/ApplicationButton.xaml b/SafeExamBrowser.UserInterface.Classic/Controls/ApplicationButton.xaml index 722e4346..a207b192 100644 --- a/SafeExamBrowser.UserInterface.Classic/Controls/ApplicationButton.xaml +++ b/SafeExamBrowser.UserInterface.Classic/Controls/ApplicationButton.xaml @@ -6,18 +6,23 @@ xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls" xmlns:s="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="50"> + + + + + + + + - + 5 - diff --git a/SafeExamBrowser.UserInterface.Classic/Controls/DateTimeControl.xaml b/SafeExamBrowser.UserInterface.Classic/Controls/DateTimeControl.xaml index 4c901650..1ba018ad 100644 --- a/SafeExamBrowser.UserInterface.Classic/Controls/DateTimeControl.xaml +++ b/SafeExamBrowser.UserInterface.Classic/Controls/DateTimeControl.xaml @@ -6,12 +6,12 @@ xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"> - + - - + + diff --git a/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml b/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml index 8d405715..6bb26dfc 100644 --- a/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml +++ b/SafeExamBrowser.UserInterface.Classic/Controls/NotificationButton.xaml @@ -5,7 +5,15 @@ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls" mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="40"> + + + + + + + + - + diff --git a/SafeExamBrowser.UserInterface.Classic/LogWindow.xaml b/SafeExamBrowser.UserInterface.Classic/LogWindow.xaml index 0a0ef0df..98202e7c 100644 --- a/SafeExamBrowser.UserInterface.Classic/LogWindow.xaml +++ b/SafeExamBrowser.UserInterface.Classic/LogWindow.xaml @@ -5,8 +5,8 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic" mc:Ignorable="d" - Title="{Binding Path=WindowTitle}" Height="500" Width="1100" MinHeight="350" MinWidth="350" WindowStartupLocation="CenterScreen" - Icon="./Images/LogNotification.ico"> + Title="{Binding Path=WindowTitle}" Background="WhiteSmoke" Height="500" Width="1100" MinHeight="350" MinWidth="350" + WindowStartupLocation="CenterScreen" Icon="./Images/LogNotification.ico"> diff --git a/SafeExamBrowser.UserInterface.Classic/SafeExamBrowser.UserInterface.Classic.csproj b/SafeExamBrowser.UserInterface.Classic/SafeExamBrowser.UserInterface.Classic.csproj index 8339fa5b..31e62bc7 100644 --- a/SafeExamBrowser.UserInterface.Classic/SafeExamBrowser.UserInterface.Classic.csproj +++ b/SafeExamBrowser.UserInterface.Classic/SafeExamBrowser.UserInterface.Classic.csproj @@ -140,6 +140,14 @@ Taskbar.xaml Code + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + diff --git a/SafeExamBrowser.UserInterface.Classic/SplashScreen.xaml b/SafeExamBrowser.UserInterface.Classic/SplashScreen.xaml index a4206ec1..6d1ab6f7 100644 --- a/SafeExamBrowser.UserInterface.Classic/SplashScreen.xaml +++ b/SafeExamBrowser.UserInterface.Classic/SplashScreen.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic" mc:Ignorable="d" - Title="SplashScreen" Height="200" Width="350" WindowStyle="None" AllowsTransparency="True" WindowStartupLocation="CenterScreen" + Title="SplashScreen" Background="White" Height="200" Width="350" WindowStyle="None" WindowStartupLocation="CenterScreen" Cursor="Wait" Icon="./Images/SafeExamBrowser.ico" ResizeMode="NoResize" Topmost="True"> diff --git a/SafeExamBrowser.UserInterface.Classic/Taskbar.xaml b/SafeExamBrowser.UserInterface.Classic/Taskbar.xaml index cc06a05b..3ba24fd9 100644 --- a/SafeExamBrowser.UserInterface.Classic/Taskbar.xaml +++ b/SafeExamBrowser.UserInterface.Classic/Taskbar.xaml @@ -6,7 +6,7 @@ xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Classic.Controls" xmlns:s="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d" - Title="Taskbar" Height="40" Width="750" WindowStyle="None" AllowsTransparency="True" Topmost="True" Visibility="Visible" + Title="Taskbar" Background="#FFF0F0F0" Height="40" Width="750" WindowStyle="None" Topmost="True" Visibility="Visible" ResizeMode="NoResize" Icon="./Images/SafeExamBrowser.ico"> @@ -22,9 +22,9 @@ - - - + + + diff --git a/SafeExamBrowser.UserInterface.Classic/Templates/Buttons.xaml b/SafeExamBrowser.UserInterface.Classic/Templates/Buttons.xaml new file mode 100644 index 00000000..5a5280c6 --- /dev/null +++ b/SafeExamBrowser.UserInterface.Classic/Templates/Buttons.xaml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SafeExamBrowser.UserInterface.Classic/Templates/Colors.xaml b/SafeExamBrowser.UserInterface.Classic/Templates/Colors.xaml new file mode 100644 index 00000000..9cbf8669 --- /dev/null +++ b/SafeExamBrowser.UserInterface.Classic/Templates/Colors.xaml @@ -0,0 +1,5 @@ + + #FFF0F0F0 + \ No newline at end of file diff --git a/SafeExamBrowser.UserInterface.Classic/Utilities/IconResourceLoader.cs b/SafeExamBrowser.UserInterface.Classic/Utilities/IconResourceLoader.cs index cedad564..0bdb6c62 100644 --- a/SafeExamBrowser.UserInterface.Classic/Utilities/IconResourceLoader.cs +++ b/SafeExamBrowser.UserInterface.Classic/Utilities/IconResourceLoader.cs @@ -34,7 +34,7 @@ namespace SafeExamBrowser.UserInterface.Classic.Utilities } catch (Exception) { - return new TextBlock(new Run("X") { Foreground = Brushes.Red, FontWeight = FontWeights.Bold }); + return NotFoundSymbol(); } throw new NotSupportedException($"Application icon resource of type '{resource.GetType()}' is not supported!"); @@ -55,5 +55,14 @@ namespace SafeExamBrowser.UserInterface.Classic.Utilities return XamlReader.Load(stream) as UIElement; } } + + private static UIElement NotFoundSymbol() + { + return new TextBlock(new Run("X") { Foreground = Brushes.Red, FontWeight = FontWeights.Bold }) + { + HorizontalAlignment = HorizontalAlignment.Center, + VerticalAlignment = VerticalAlignment.Center + }; + } } }