2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 01:29:38 -04:00

[Core] Visual improvements to notifications (#144)

* [Core] Visual improvements to notifications

- Notification title was previously missing; it's back!
- Fixed window and label backgrounds to be correctly/consistently transparent.

The click-thru bit is only partially working (transparent areas are click-thru).

* [Core] Reduce notification font size to avoid wrapping

Now that titles work, I noticed a few notification titles were wrapping. Examples:
- System Discovery Complete (from Evaluator)
- Minimum Distance Reached (from BioInsights)

To address, I made the following adjustments:
* Made the test notification title longer by adding the word "Popup" so it is now "Test Popup Notification".
* Reduced the Title font size to 20 (from 24).
* Moved the content box up to close the gap a bit.

* [Core] Exclude the notification popup colour picker button from themes

Noticed it was not the colour it should be and thought the setting was always being reset -- turns out the setting was correct, the button colour was not.

Here's a quick hack to fix.

* [Core] Further notification title tweaking

Now "System Discovery Complete" *actually* fits.

* [Core] Widen the native pop-up font selector so you can see variants

The previous width was a little bit narrow for the family of fonts like Segoe UI Variable...

The new width is 2x the original size and fits all fonts on my system and should do the trick for the moment.
This commit is contained in:
F K 2024-02-29 19:51:40 -05:00 committed by GitHub
parent 9da2ba012b
commit 9adf3fab08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 9 deletions

View File

@ -402,7 +402,7 @@
FontDropdown.FormattingEnabled = true;
FontDropdown.Location = new Point(120, 65);
FontDropdown.Name = "FontDropdown";
FontDropdown.Size = new Size(121, 23);
FontDropdown.Size = new Size(242, 23);
FontDropdown.TabIndex = 5;
FontDropdown.SelectedIndexChanged += FontDropdown_SelectedIndexChanged;
//

View File

@ -264,7 +264,7 @@ namespace Observatory.UI
{
NotificationArgs args = new()
{
Title = "Test Notification",
Title = "Test Popup Notification",
Detail = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at elit maximus, ornare dui nec, accumsan velit. Vestibulum fringilla elit."
};

View File

@ -1,4 +1,4 @@
namespace Observatory.UI
namespace Observatory.UI
{
partial class NotificationForm
{
@ -34,14 +34,15 @@
//
// Title
//
Title.Font = new Font("Segoe UI", 24F, FontStyle.Regular, GraphicsUnit.Point);
Title.Font = new Font("Segoe UI", 18F, FontStyle.Regular, GraphicsUnit.Point);
Title.ForeColor = Color.OrangeRed;
Title.Location = new Point(5, 5);
Title.MaximumSize = new Size(355, 0);
Title.MaximumSize = new Size(345, 45);
Title.Name = "Title";
Title.Size = new Size(338, 45);
Title.Size = new Size(338, 35);
Title.TabIndex = 0;
Title.Text = "Title";
Title.UseCompatibleTextRendering = true;
//
// Body
//
@ -49,7 +50,7 @@
Body.AutoSize = true;
Body.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
Body.ForeColor = Color.OrangeRed;
Body.Location = new Point(12, 45);
Body.Location = new Point(12, 40);
Body.MaximumSize = new Size(320, 85);
Body.Name = "Body";
Body.Size = new Size(51, 31);
@ -74,6 +75,7 @@
ShowIcon = false;
ShowInTaskbar = false;
Text = "NotificationForm";
TransparencyKey = Color.FromArgb(64, 64, 64);
ResumeLayout(false);
PerformLayout();
}

View File

@ -62,7 +62,7 @@ namespace Observatory.UI
Title.ForeColor = _color;
Title.Text = args.Title;
Title.Font = new Font(Properties.Core.Default.NativeNotifyFont, 24);
Title.Font = new Font(Properties.Core.Default.NativeNotifyFont, 18);
Body.ForeColor = _color;
Body.Text = args.Detail;
Body.Font = new Font(Properties.Core.Default.NativeNotifyFont, 14);
@ -203,7 +203,7 @@ namespace Observatory.UI
if (sender != null)
{
var label = (Label)sender;
e.Graphics.Clear(Color.Transparent);
e.Graphics.Clear(Color.FromArgb(64, 64, 64));
using (var sf = new StringFormat())
using (var brush = new SolidBrush(label.ForeColor))
{

View File

@ -16,6 +16,10 @@ namespace Observatory.UI
return _instance.Value;
}
}
private static HashSet<string> _excludedControlNames = new()
{
"ColourButton",
};
private static readonly Lazy<ThemeManager> _instance = new(() => new ThemeManager());
private bool _init;
@ -70,6 +74,7 @@ namespace Observatory.UI
if (control.HasChildren)
foreach (Control child in control.Controls)
{
if (_excludedControlNames.Contains(child.Name)) continue;
RegisterControl(child);
}
}