2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
pulsar/ObservatoryCore/UI/NotificationForm.Designer.cs
F K 9adf3fab08
[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.
2024-02-29 21:21:40 -03:30

88 lines
2.9 KiB
C#

namespace Observatory.UI
{
partial class NotificationForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
Title = new Label();
Body = new Label();
SuspendLayout();
//
// Title
//
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(345, 45);
Title.Name = "Title";
Title.Size = new Size(338, 35);
Title.TabIndex = 0;
Title.Text = "Title";
Title.UseCompatibleTextRendering = true;
//
// Body
//
Body.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
Body.AutoSize = true;
Body.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point);
Body.ForeColor = Color.OrangeRed;
Body.Location = new Point(12, 40);
Body.MaximumSize = new Size(320, 85);
Body.Name = "Body";
Body.Size = new Size(51, 31);
Body.TabIndex = 1;
Body.Text = "Body";
Body.UseCompatibleTextRendering = true;
//
// NotificationForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.FromArgb(64, 64, 64);
ClientSize = new Size(355, 145);
ControlBox = false;
Controls.Add(Body);
Controls.Add(Title);
Enabled = false;
FormBorderStyle = FormBorderStyle.None;
MaximizeBox = false;
MinimizeBox = false;
Name = "NotificationForm";
ShowIcon = false;
ShowInTaskbar = false;
Text = "NotificationForm";
TransparencyKey = Color.FromArgb(64, 64, 64);
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label Title;
private Label Body;
}
}