restructure

This commit is contained in:
NinjaPug
2025-04-14 12:46:10 -04:00
parent 1cf596b379
commit 21b6ad3d75
22 changed files with 1257 additions and 990 deletions

View File

@@ -1,257 +0,0 @@
namespace PCPalConfigurator
{
partial class ConfiguratorForm
{
private System.ComponentModel.IContainer components = null;
private TabControl tabControl;
private TabPage tab1602;
private TabPage tabTFT;
private TabPage tabOLED;
private TabPage tabHelp;
private TabPage tabAbout;
private ComboBox cmbLine1;
private TextBox txtLine1;
private TextBox txtLine1Post;
private ComboBox cmbLine2;
private TextBox txtLine2;
private TextBox txtLine2Post;
private Button btnSave;
private Label lblLine1;
private Label lblLine1Prefix;
private Label lblLine1Suffix;
private Label lblLine2;
private Label lblLine2Prefix;
private Label lblLine2Suffix;
// OLED tab controls
private TextBox txtOledMarkup;
private Panel panelOledButtons;
private Button btnInsertIcon;
private Button btnLoadOledExample;
private Button btnSaveOled;
private Panel panelOledPreview;
private Button btnPreview;
private Label lblPreviewHeader;
// Help tab controls
private TextBox txtHelpContent;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.tabControl = new TabControl();
this.tab1602 = new TabPage("1602 LCD");
this.tabTFT = new TabPage("4.6\" TFT LCD");
this.tabOLED = new TabPage("OLED Display");
this.tabHelp = new TabPage("Help");
this.tabAbout = new TabPage("About");
this.cmbLine1 = new ComboBox();
this.txtLine1 = new TextBox();
this.txtLine1Post = new TextBox();
this.cmbLine2 = new ComboBox();
this.txtLine2 = new TextBox();
this.txtLine2Post = new TextBox();
this.btnSave = new Button();
this.lblLine1 = new Label();
this.lblLine1Prefix = new Label();
this.lblLine1Suffix = new Label();
this.lblLine2 = new Label();
this.lblLine2Prefix = new Label();
this.lblLine2Suffix = new Label();
// OLED tab controls
this.txtOledMarkup = new TextBox();
this.panelOledButtons = new Panel();
this.btnInsertIcon = new Button();
this.btnLoadOledExample = new Button();
this.btnSaveOled = new Button();
this.panelOledPreview = new Panel();
this.btnPreview = new Button();
this.lblPreviewHeader = new Label();
// Help tab controls
this.txtHelpContent = new TextBox();
// === TabControl ===
this.tabControl.Dock = DockStyle.Fill;
this.tabControl.TabPages.Add(this.tab1602);
this.tabControl.TabPages.Add(this.tabTFT);
this.tabControl.TabPages.Add(this.tabOLED);
this.tabControl.TabPages.Add(this.tabHelp);
this.tabControl.TabPages.Add(this.tabAbout);
this.Controls.Add(this.tabControl);
// === Line 1 UI ===
this.lblLine1.Text = "Line 1:";
this.lblLine1.Location = new System.Drawing.Point(20, 20);
this.lblLine1.AutoSize = true;
this.cmbLine1.Location = new System.Drawing.Point(100, 18);
this.cmbLine1.Size = new System.Drawing.Size(200, 21);
this.lblLine1Prefix.Text = "Prefix:";
this.lblLine1Prefix.Location = new System.Drawing.Point(20, 50);
this.lblLine1Prefix.AutoSize = true;
this.txtLine1.Location = new System.Drawing.Point(100, 48);
this.txtLine1.Size = new System.Drawing.Size(200, 21);
this.lblLine1Suffix.Text = "Suffix / Units:";
this.lblLine1Suffix.Location = new System.Drawing.Point(320, 50);
this.lblLine1Suffix.AutoSize = true;
this.txtLine1Post.Location = new System.Drawing.Point(420, 48);
this.txtLine1Post.Size = new System.Drawing.Size(120, 21);
// === Line 2 UI ===
this.lblLine2.Text = "Line 2:";
this.lblLine2.Location = new System.Drawing.Point(20, 90);
this.lblLine2.AutoSize = true;
this.cmbLine2.Location = new System.Drawing.Point(100, 88);
this.cmbLine2.Size = new System.Drawing.Size(200, 21);
this.lblLine2Prefix.Text = "Prefix:";
this.lblLine2Prefix.Location = new System.Drawing.Point(20, 120);
this.lblLine2Prefix.AutoSize = true;
this.txtLine2.Location = new System.Drawing.Point(100, 118);
this.txtLine2.Size = new System.Drawing.Size(200, 21);
this.lblLine2Suffix.Text = "Suffix / Units:";
this.lblLine2Suffix.Location = new System.Drawing.Point(320, 120);
this.lblLine2Suffix.AutoSize = true;
this.txtLine2Post.Location = new System.Drawing.Point(420, 118);
this.txtLine2Post.Size = new System.Drawing.Size(120, 21);
// === Save Button (renamed from Apply) ===
this.btnSave.Text = "Save";
this.btnSave.Location = new System.Drawing.Point(20, 170);
this.btnSave.Size = new System.Drawing.Size(100, 30);
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
// === Add to 1602 Tab ===
this.tab1602.Controls.AddRange(new Control[]
{
lblLine1, cmbLine1, lblLine1Prefix, txtLine1, lblLine1Suffix, txtLine1Post,
lblLine2, cmbLine2, lblLine2Prefix, txtLine2, lblLine2Suffix, txtLine2Post,
btnSave
});
// === OLED Tab Setup ===
// Main panel for layout
Panel oledMainPanel = new Panel();
oledMainPanel.Dock = DockStyle.Fill;
this.tabOLED.Controls.Add(oledMainPanel);
// Markup editor
this.txtOledMarkup = new TextBox();
this.txtOledMarkup.Multiline = true;
this.txtOledMarkup.ScrollBars = ScrollBars.Vertical;
this.txtOledMarkup.Font = new Font("Consolas", 9.75F);
this.txtOledMarkup.TextChanged += new EventHandler(this.txtOledMarkup_TextChanged);
this.txtOledMarkup.Size = new Size(580, 130);
this.txtOledMarkup.Location = new Point(10, 10);
oledMainPanel.Controls.Add(this.txtOledMarkup);
// Button panel
this.panelOledButtons = new Panel();
this.panelOledButtons.Size = new Size(580, 40);
this.panelOledButtons.Location = new Point(10, 150);
oledMainPanel.Controls.Add(this.panelOledButtons);
this.btnInsertIcon = new Button();
this.btnInsertIcon.Text = "Insert Icon";
this.btnInsertIcon.Location = new Point(0, 7);
this.btnInsertIcon.Size = new Size(120, 26);
this.btnInsertIcon.Click += new EventHandler(this.btnInsertIcon_Click);
this.panelOledButtons.Controls.Add(this.btnInsertIcon);
this.btnLoadOledExample = new Button();
this.btnLoadOledExample.Text = "Load Example";
this.btnLoadOledExample.Location = new Point(130, 7);
this.btnLoadOledExample.Size = new Size(120, 26);
this.btnLoadOledExample.Click += new EventHandler(this.btnLoadOledExample_Click);
this.panelOledButtons.Controls.Add(this.btnLoadOledExample);
this.btnPreview = new Button();
this.btnPreview.Text = "Update Preview";
this.btnPreview.Location = new Point(260, 7);
this.btnPreview.Size = new Size(120, 26);
this.btnPreview.Click += new EventHandler(this.btnPreview_Click);
this.panelOledButtons.Controls.Add(this.btnPreview);
this.btnSaveOled = new Button();
this.btnSaveOled.Text = "Save";
this.btnSaveOled.Location = new Point(480, 7);
this.btnSaveOled.Size = new Size(100, 26);
this.btnSaveOled.Click += new EventHandler(this.btnSave_Click); // Uses same event handler
this.panelOledButtons.Controls.Add(this.btnSaveOled);
// Preview header
this.lblPreviewHeader = new Label();
this.lblPreviewHeader.Text = "OLED Preview (256x64)";
this.lblPreviewHeader.Location = new Point(10, 195);
this.lblPreviewHeader.Size = new Size(580, 20);
this.lblPreviewHeader.TextAlign = ContentAlignment.MiddleCenter;
this.lblPreviewHeader.BackColor = System.Drawing.SystemColors.ControlLight;
this.lblPreviewHeader.BorderStyle = BorderStyle.FixedSingle;
oledMainPanel.Controls.Add(this.lblPreviewHeader);
// Preview panel
this.panelOledPreview = new Panel();
this.panelOledPreview.Location = new Point(10, 215);
this.panelOledPreview.Size = new Size(580, 110);
this.panelOledPreview.BackColor = System.Drawing.Color.Black;
this.panelOledPreview.BorderStyle = BorderStyle.FixedSingle;
this.panelOledPreview.Paint += new PaintEventHandler(this.panelOledPreview_Paint);
oledMainPanel.Controls.Add(this.panelOledPreview);
// === Help Tab Setup ===
this.txtHelpContent = new TextBox();
this.txtHelpContent.Dock = DockStyle.Fill;
this.txtHelpContent.Multiline = true;
this.txtHelpContent.ReadOnly = true;
this.txtHelpContent.ScrollBars = ScrollBars.Vertical;
this.txtHelpContent.Font = new Font("Segoe UI", 9F);
this.tabHelp.Controls.Add(this.txtHelpContent);
// === TFT Tab Placeholder ===
Label lblTFT = new Label()
{
Text = "TFT configuration coming soon...",
Location = new System.Drawing.Point(20, 20),
AutoSize = true
};
this.tabTFT.Controls.Add(lblTFT);
// === About Tab ===
Label lblAbout = new Label()
{
Text = "PCPal Display Configurator\nFor ThermalTake Tower XXX\nVersion 1.0.0\n© 2025 Christopher Koch aka NinjaPug",
Location = new System.Drawing.Point(20, 20),
AutoSize = true
};
this.tabAbout.Controls.Add(lblAbout);
// === Form ===
this.Text = "Display Configurator";
this.ClientSize = new System.Drawing.Size(600, 380); // Adjusted size for compact layout
this.ResumeLayout(false);
this.PerformLayout();
}
}
}

View File

@@ -1,721 +0,0 @@
using System;
using System.IO;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using LibreHardwareMonitor.Hardware;
namespace PCPalConfigurator
{
public partial class ConfiguratorForm : Form
{
private ConfigData config;
private readonly string ConfigFile = GetConfigPath();
private Computer computer;
private System.Windows.Forms.Timer sensorUpdateTimer;
// Preview rendering data
private List<PreviewElement> previewElements = new List<PreviewElement>();
private Dictionary<string, float> sensorValues = new Dictionary<string, float>();
private bool autoUpdatePreview = true;
private const int OledWidth = 256;
private const int OledHeight = 64;
// Classes for preview rendering
private abstract class PreviewElement
{
public abstract void Draw(Graphics g);
}
private class TextElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Size { get; set; }
public string Text { get; set; }
public override void Draw(Graphics g)
{
// Choose font size based on the size parameter
Font font;
switch (Size)
{
case 1: font = new Font("Consolas", 8); break;
case 2: font = new Font("Consolas", 10); break;
case 3: font = new Font("Consolas", 12); break;
default: font = new Font("Consolas", 8); break;
}
// Draw text with white color
g.DrawString(Text, font, Brushes.White, X, Y - font.Height);
}
}
private class BarElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public int Value { get; set; }
public override void Draw(Graphics g)
{
// Draw outline rectangle
g.DrawRectangle(Pens.White, X, Y, Width, Height);
// Calculate fill width based on value (0-100)
int fillWidth = (int)(Width * (Value / 100.0));
if (fillWidth > 0)
{
// Draw filled portion
g.FillRectangle(Brushes.White, X + 1, Y + 1, fillWidth - 1, Height - 2);
}
}
}
private class RectElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public bool Filled { get; set; }
public override void Draw(Graphics g)
{
if (Filled)
{
// Draw filled box
g.FillRectangle(Brushes.White, X, Y, Width, Height);
}
else
{
// Draw outline rectangle
g.DrawRectangle(Pens.White, X, Y, Width, Height);
}
}
}
private class LineElement : PreviewElement
{
public int X1 { get; set; }
public int Y1 { get; set; }
public int X2 { get; set; }
public int Y2 { get; set; }
public override void Draw(Graphics g)
{
g.DrawLine(Pens.White, X1, Y1, X2, Y2);
}
}
private class IconElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public string Name { get; set; }
public override void Draw(Graphics g)
{
// For preview, just draw a placeholder rectangle with icon name
g.DrawRectangle(Pens.Gray, X, Y, 24, 24);
using (Font font = new Font("Arial", 6))
{
g.DrawString(Name, font, Brushes.White, X + 2, Y + 8);
}
}
}
public ConfiguratorForm()
{
InitializeComponent();
InitHardware();
InitSensorTimer();
LoadConfig();
PopulateHelpContent();
UpdatePreview(); // Initial preview rendering
}
private void InitHardware()
{
computer = new Computer
{
IsCpuEnabled = true,
IsGpuEnabled = true,
IsMemoryEnabled = true,
IsMotherboardEnabled = true,
IsControllerEnabled = true,
IsStorageEnabled = true
};
computer.Open();
PopulateSensorOptions();
UpdateSensorValues();
}
private void InitSensorTimer()
{
// Create a timer to regularly update sensor values for the preview
sensorUpdateTimer = new System.Windows.Forms.Timer();
sensorUpdateTimer.Interval = 1000; // Update every second
sensorUpdateTimer.Tick += SensorUpdateTimer_Tick;
sensorUpdateTimer.Start();
}
private void SensorUpdateTimer_Tick(object sender, EventArgs e)
{
// Only update when the OLED tab is selected to save resources
if (tabControl.SelectedTab == tabOLED)
{
UpdateSensorValues();
UpdatePreview();
}
}
private void UpdateSensorValues()
{
// Update all hardware readings
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.Value.HasValue)
{
string sensorId = GetSensorVariableName(hardware.Name, sensor.Name);
sensorValues[sensorId] = sensor.Value.Value;
}
}
}
}
private static string GetConfigPath()
{
string folder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "PCPal");
Directory.CreateDirectory(folder);
return Path.Combine(folder, "config.json");
}
private void LoadConfig()
{
if (File.Exists(ConfigFile))
{
string json = File.ReadAllText(ConfigFile);
config = JsonConvert.DeserializeObject<ConfigData>(json) ?? new ConfigData();
ApplyConfig();
}
else
{
config = new ConfigData();
}
}
private void ApplyConfig()
{
// LCD settings
cmbLine1.SelectedItem = config.Line1Selection;
txtLine1.Text = config.Line1CustomText;
txtLine1Post.Text = config.Line1PostText;
cmbLine2.SelectedItem = config.Line2Selection;
txtLine2.Text = config.Line2CustomText;
txtLine2Post.Text = config.Line2PostText;
// OLED settings
txtOledMarkup.Text = config.OledMarkup;
// Select the appropriate tab based on screen type
if (config.ScreenType == "1602")
tabControl.SelectedTab = tab1602;
else if (config.ScreenType == "TFT4_6")
tabControl.SelectedTab = tabTFT;
else if (config.ScreenType == "OLED")
tabControl.SelectedTab = tabOLED;
}
private void SaveConfig()
{
// Determine screen type based on selected tab
if (tabControl.SelectedTab == tab1602)
config.ScreenType = "1602";
else if (tabControl.SelectedTab == tabTFT)
config.ScreenType = "TFT4_6";
else if (tabControl.SelectedTab == tabOLED)
config.ScreenType = "OLED";
// Save LCD settings
config.Line1Selection = cmbLine1.SelectedItem?.ToString();
config.Line1CustomText = txtLine1.Text;
config.Line1PostText = txtLine1Post.Text;
config.Line2Selection = cmbLine2.SelectedItem?.ToString();
config.Line2CustomText = txtLine2.Text;
config.Line2PostText = txtLine2Post.Text;
// Save OLED settings
config.OledMarkup = txtOledMarkup.Text;
string json = JsonConvert.SerializeObject(config, Formatting.Indented);
File.WriteAllText(ConfigFile, json);
MessageBox.Show("Settings saved!");
}
// Renamed from btnApply_Click to btnSave_Click
private void btnSave_Click(object sender, EventArgs e)
{
SaveConfig();
}
private void PopulateSensorOptions()
{
cmbLine1.Items.Clear();
cmbLine2.Items.Clear();
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == SensorType.Load ||
sensor.SensorType == SensorType.Temperature ||
sensor.SensorType == SensorType.Data ||
sensor.SensorType == SensorType.Fan)
{
string option = $"{hardware.HardwareType}: {sensor.Name} ({sensor.SensorType})";
cmbLine1.Items.Add(option);
cmbLine2.Items.Add(option);
}
}
}
cmbLine1.Items.Add("Custom Text");
cmbLine2.Items.Add("Custom Text");
}
private void PopulateHelpContent()
{
// Create help content for both LCD and OLED displays
StringBuilder sb = new StringBuilder();
// General Information
sb.AppendLine("PCPal Display Configurator Help");
sb.AppendLine("==============================");
sb.AppendLine();
// LCD Display Help
sb.AppendLine("LCD DISPLAY CONFIGURATION");
sb.AppendLine("------------------------");
sb.AppendLine("1. Select a sensor for each line or choose 'Custom Text'");
sb.AppendLine("2. Set prefix text to appear before the sensor value");
sb.AppendLine("3. Set suffix/units to appear after the sensor value");
sb.AppendLine("4. Click 'Save' to apply your settings");
sb.AppendLine();
// OLED Display Help
sb.AppendLine("OLED MARKUP REFERENCE");
sb.AppendLine("---------------------");
sb.AppendLine("The OLED display accepts markup tags to create your layout.");
sb.AppendLine();
sb.AppendLine("Text: <text x=0 y=10 size=1>Hello World</text>");
sb.AppendLine(" - x, y: position coordinates (0,0 is top-left)");
sb.AppendLine(" - size: 1-3 (small to large)");
sb.AppendLine();
sb.AppendLine("Progress Bar: <bar x=0 y=20 w=100 h=8 val=75 />");
sb.AppendLine(" - x, y: position");
sb.AppendLine(" - w, h: width and height");
sb.AppendLine(" - val: value 0-100");
sb.AppendLine();
sb.AppendLine("Icon: <icon x=0 y=0 name=cpu />");
sb.AppendLine(" - Inserts a bitmap icon from the SD card");
sb.AppendLine(" - Use the 'Insert Icon' button to browse available icons");
sb.AppendLine();
sb.AppendLine("Rectangle (outline): <rect x=0 y=0 w=20 h=10 />");
sb.AppendLine();
sb.AppendLine("Filled Box: <box x=0 y=0 w=20 h=10 />");
sb.AppendLine();
sb.AppendLine("Line: <line x1=0 y1=0 x2=20 y2=20 />");
sb.AppendLine();
// Sensor variables
sb.AppendLine("SENSOR VARIABLES");
sb.AppendLine("----------------");
sb.AppendLine("Use {SensorName} syntax to include sensor values.");
sb.AppendLine("Example: <text x=0 y=10>CPU: {CPU_Core_i7_Total_Load}%</text>");
// Add available sensor variables with their current values
sb.AppendLine();
sb.AppendLine("Available sensor variables:");
var sensors = new Dictionary<string, Tuple<float, string, SensorType>>();
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.Value.HasValue &&
(sensor.SensorType == SensorType.Load ||
sensor.SensorType == SensorType.Temperature ||
sensor.SensorType == SensorType.Clock ||
sensor.SensorType == SensorType.Fan ||
sensor.SensorType == SensorType.Power ||
sensor.SensorType == SensorType.Data))
{
string sensorId = GetSensorVariableName(hardware.Name, sensor.Name);
sensors[sensorId] = new Tuple<float, string, SensorType>(
sensor.Value.Value,
$"{hardware.Name} {sensor.Name}",
sensor.SensorType);
}
}
}
// Group sensors by type for easier reading
var sensorGroups = sensors.GroupBy(s => s.Value.Item3);
foreach (var group in sensorGroups)
{
sb.AppendLine();
sb.AppendLine($"-- {group.Key} Sensors --");
foreach (var sensor in group)
{
string unit = GetSensorUnit(group.Key);
string value = FormatSensorValue(sensor.Value.Item1, group.Key);
sb.AppendLine($"{{{sensor.Key}}} = {value}{unit} ({sensor.Value.Item2})");
}
}
txtHelpContent.Text = sb.ToString();
}
private string GetSensorUnit(SensorType sensorType)
{
return sensorType switch
{
SensorType.Temperature => "°C",
SensorType.Load => "%",
SensorType.Clock => "MHz",
SensorType.Power => "W",
SensorType.Fan => "RPM",
SensorType.Flow => "L/h",
SensorType.Control => "%",
SensorType.Level => "%",
_ => ""
};
}
private string FormatSensorValue(float value, SensorType sensorType)
{
// Format different sensor types appropriately
return sensorType switch
{
SensorType.Temperature => value.ToString("F1"),
SensorType.Clock => value.ToString("F0"),
SensorType.Load => value.ToString("F1"),
SensorType.Fan => value.ToString("F0"),
SensorType.Power => value.ToString("F1"),
SensorType.Data => (value > 1024) ? (value / 1024).ToString("F1") : value.ToString("F1"),
_ => value.ToString("F1")
};
}
private string GetSensorVariableName(string hardwareName, string sensorName)
{
// Create a simplified and safe variable name
string name = $"{hardwareName}_{sensorName}"
.Replace(" ", "_")
.Replace("%", "Percent")
.Replace("#", "Num")
.Replace("/", "_")
.Replace("\\", "_")
.Replace("(", "")
.Replace(")", "")
.Replace(",", "");
return name;
}
private void btnInsertIcon_Click(object sender, EventArgs e)
{
using IconBrowser browser = new();
if (browser.ShowDialog() == DialogResult.OK)
{
// Get the icon markup and insert it at the cursor position
string iconMarkup = browser.GetIconMarkup();
if (!string.IsNullOrEmpty(iconMarkup))
{
int selectionStart = txtOledMarkup.SelectionStart;
txtOledMarkup.Text = txtOledMarkup.Text.Insert(selectionStart, iconMarkup);
txtOledMarkup.SelectionStart = selectionStart + iconMarkup.Length;
txtOledMarkup.Focus();
// Update preview
if (autoUpdatePreview)
UpdatePreview();
}
}
}
private void btnLoadOledExample_Click(object sender, EventArgs e)
{
// Create an appropriate example based on the user's hardware
string exampleMarkup = "";
string cpuLoad = FindFirstSensorOfType(HardwareType.Cpu, SensorType.Load);
string cpuTemp = FindFirstSensorOfType(HardwareType.Cpu, SensorType.Temperature);
string gpuLoad = FindFirstSensorOfType(HardwareType.GpuNvidia, SensorType.Load);
string gpuTemp = FindFirstSensorOfType(HardwareType.GpuNvidia, SensorType.Temperature);
string ramUsed = FindFirstSensorOfType(HardwareType.Memory, SensorType.Data);
exampleMarkup = "<text x=0 y=12 size=2>System Monitor</text>\n";
if (!string.IsNullOrEmpty(cpuLoad) && !string.IsNullOrEmpty(cpuTemp))
{
exampleMarkup += $"<text x=0 y=30 size=1>CPU: {{{cpuLoad}}}% ({{{cpuTemp}}}°C)</text>\n";
exampleMarkup += $"<bar x=0 y=35 w=128 h=6 val={{{cpuLoad}}} />\n";
}
else if (!string.IsNullOrEmpty(cpuLoad))
{
exampleMarkup += $"<text x=0 y=30 size=1>CPU: {{{cpuLoad}}}%</text>\n";
exampleMarkup += $"<bar x=0 y=35 w=128 h=6 val={{{cpuLoad}}} />\n";
}
if (!string.IsNullOrEmpty(gpuLoad) && !string.IsNullOrEmpty(gpuTemp))
{
exampleMarkup += $"<text x=130 y=30 size=1>GPU: {{{gpuLoad}}}% ({{{gpuTemp}}}°C)</text>\n";
exampleMarkup += $"<bar x=130 y=35 w=120 h=6 val={{{gpuLoad}}} />\n";
}
else if (!string.IsNullOrEmpty(gpuLoad))
{
exampleMarkup += $"<text x=130 y=30 size=1>GPU: {{{gpuLoad}}}%</text>\n";
exampleMarkup += $"<bar x=130 y=35 w=120 h=6 val={{{gpuLoad}}} />\n";
}
if (!string.IsNullOrEmpty(ramUsed))
{
exampleMarkup += $"<text x=0 y=50 size=1>RAM: {{{ramUsed}}} GB</text>\n";
}
txtOledMarkup.Text = exampleMarkup;
// Update preview
if (autoUpdatePreview)
UpdatePreview();
}
private string FindFirstSensorOfType(HardwareType hardwareType, SensorType sensorType)
{
foreach (var hardware in computer.Hardware)
{
if (hardware.HardwareType == hardwareType)
{
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == sensorType && sensor.Value.HasValue)
{
return GetSensorVariableName(hardware.Name, sensor.Name);
}
}
}
}
return string.Empty;
}
private void btnPreview_Click(object sender, EventArgs e)
{
UpdateSensorValues();
UpdatePreview();
}
private void txtOledMarkup_TextChanged(object sender, EventArgs e)
{
// If auto-update is enabled, update the preview when the markup changes
if (autoUpdatePreview)
{
UpdatePreview();
}
}
private void UpdatePreview()
{
try
{
// Clear existing elements
previewElements.Clear();
// Parse the markup into preview elements
string markup = ProcessVariablesInMarkup(txtOledMarkup.Text);
ParseMarkup(markup);
// Trigger repaint of the preview panel
if (panelOledPreview != null)
panelOledPreview.Invalidate();
}
catch (Exception ex)
{
// Don't show errors during preview - just skip rendering
Console.WriteLine($"Preview error: {ex.Message}");
}
}
private string ProcessVariablesInMarkup(string markup)
{
if (string.IsNullOrEmpty(markup))
return string.Empty;
// Replace variables with actual values
foreach (var sensor in sensorValues)
{
// Look for {variable} syntax in the markup
string variablePattern = $"{{{sensor.Key}}}";
// Format value based on type (integers vs decimals)
string formattedValue;
if (Math.Abs(sensor.Value - Math.Round(sensor.Value)) < 0.01)
{
formattedValue = $"{sensor.Value:F0}";
}
else
{
formattedValue = $"{sensor.Value:F1}";
}
markup = markup.Replace(variablePattern, formattedValue);
}
return markup;
}
private void ParseMarkup(string markup)
{
if (string.IsNullOrEmpty(markup))
return;
// Parse text elements - <text x=0 y=10 size=1>Hello</text>
foreach (Match match in Regex.Matches(markup, @"<text\s+x=(\d+)\s+y=(\d+)(?:\s+size=(\d+))?>([^<]*)</text>"))
{
previewElements.Add(new TextElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Size = match.Groups[3].Success ? int.Parse(match.Groups[3].Value) : 1,
Text = match.Groups[4].Value
});
}
// Parse bar elements - <bar x=0 y=20 w=100 h=8 val=75 />
foreach (Match match in Regex.Matches(markup, @"<bar\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s+val=(\d+)\s*/>"))
{
previewElements.Add(new BarElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Value = int.Parse(match.Groups[5].Value)
});
}
// Parse rect elements - <rect x=0 y=0 w=20 h=10 />
foreach (Match match in Regex.Matches(markup, @"<rect\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s*/>"))
{
previewElements.Add(new RectElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Filled = false
});
}
// Parse box elements - <box x=0 y=0 w=20 h=10 />
foreach (Match match in Regex.Matches(markup, @"<box\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s*/>"))
{
previewElements.Add(new RectElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Filled = true
});
}
// Parse line elements - <line x1=0 y1=0 x2=20 y2=20 />
foreach (Match match in Regex.Matches(markup, @"<line\s+x1=(\d+)\s+y1=(\d+)\s+x2=(\d+)\s+y2=(\d+)\s*/>"))
{
previewElements.Add(new LineElement
{
X1 = int.Parse(match.Groups[1].Value),
Y1 = int.Parse(match.Groups[2].Value),
X2 = int.Parse(match.Groups[3].Value),
Y2 = int.Parse(match.Groups[4].Value)
});
}
// Parse icon elements - <icon x=0 y=0 name=cpu />
foreach (Match match in Regex.Matches(markup, @"<icon\s+x=(\d+)\s+y=(\d+)\s+name=([a-zA-Z0-9_]+)\s*/>"))
{
previewElements.Add(new IconElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Name = match.Groups[3].Value
});
}
}
private void panelOledPreview_Paint(object sender, PaintEventArgs e)
{
// Create graphics object with smooth rendering
e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
// Draw OLED display boundary
int panelWidth = panelOledPreview.Width;
int panelHeight = panelOledPreview.Height;
// Calculate scale to fit preview in panel while maintaining aspect ratio
float scaleX = (float)panelWidth / OledWidth;
float scaleY = (float)panelHeight / OledHeight;
float scale = Math.Min(scaleX, scaleY);
// Calculate centered position
int displayWidth = (int)(OledWidth * scale);
int displayHeight = (int)(OledHeight * scale);
int offsetX = (panelWidth - displayWidth) / 2;
int offsetY = (panelHeight - displayHeight) / 2;
// Draw display outline
Rectangle displayRect = new Rectangle(offsetX, offsetY, displayWidth, displayHeight);
e.Graphics.DrawRectangle(Pens.DarkGray, displayRect);
// Set up transformation to scale the preview elements
e.Graphics.TranslateTransform(offsetX, offsetY);
e.Graphics.ScaleTransform(scale, scale);
// Draw all elements
foreach (var element in previewElements)
{
element.Draw(e.Graphics);
}
// Reset transformation
e.Graphics.ResetTransform();
// Draw labels and guidelines
e.Graphics.DrawString($"OLED: {OledWidth}x{OledHeight}", new Font("Arial", 8), Brushes.Gray, 5, 5);
}
protected override void OnFormClosing(FormClosingEventArgs e)
{
base.OnFormClosing(e);
// Clean up resources
sensorUpdateTimer?.Stop();
sensorUpdateTimer?.Dispose();
computer?.Close();
}
}
}

View File

@@ -1,5 +1,8 @@
namespace PCPalConfigurator namespace PCPalConfigurator.Core
{ {
/// <summary>
/// Stores configuration data for PCPal displays
/// </summary>
public class ConfigData public class ConfigData
{ {
// Common settings // Common settings

View File

@@ -0,0 +1,189 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using LibreHardwareMonitor.Hardware;
using PCPalConfigurator.Rendering;
using PCPalConfigurator.Rendering.Elements;
namespace PCPalConfigurator.Core
{
/// <summary>
/// Parses OLED markup into renderable elements
/// </summary>
public class MarkupParser
{
private readonly Dictionary<string, float> sensorValues;
public MarkupParser(Dictionary<string, float> sensorValues)
{
this.sensorValues = sensorValues ?? new Dictionary<string, float>();
}
/// <summary>
/// Processes sensor variables in markup
/// </summary>
public string ProcessVariables(string markup)
{
if (string.IsNullOrEmpty(markup))
return string.Empty;
// Replace variables with actual values
foreach (var sensor in sensorValues)
{
// Look for {variable} syntax in the markup
string variablePattern = $"{{{sensor.Key}}}";
// Format value based on type (integers vs decimals)
string formattedValue;
if (Math.Abs(sensor.Value - Math.Round(sensor.Value)) < 0.01)
{
formattedValue = $"{sensor.Value:F0}";
}
else
{
formattedValue = $"{sensor.Value:F1}";
}
markup = markup.Replace(variablePattern, formattedValue);
}
return markup;
}
/// <summary>
/// Parses markup and returns a list of preview elements
/// </summary>
public List<PreviewElement> ParseMarkup(string markup)
{
var elements = new List<PreviewElement>();
if (string.IsNullOrEmpty(markup))
return elements;
// Process variables in the markup first
markup = ProcessVariables(markup);
// Parse text elements - <text x=0 y=10 size=1>Hello</text>
foreach (Match match in Regex.Matches(markup, @"<text\s+x=(\d+)\s+y=(\d+)(?:\s+size=(\d+))?>([^<]*)</text>"))
{
elements.Add(new TextElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Size = match.Groups[3].Success ? int.Parse(match.Groups[3].Value) : 1,
Text = match.Groups[4].Value
});
}
// Parse bar elements - <bar x=0 y=20 w=100 h=8 val=75 />
foreach (Match match in Regex.Matches(markup, @"<bar\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s+val=(\d+)\s*/>"))
{
elements.Add(new BarElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Value = int.Parse(match.Groups[5].Value)
});
}
// Parse rect elements - <rect x=0 y=0 w=20 h=10 />
foreach (Match match in Regex.Matches(markup, @"<rect\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s*/>"))
{
elements.Add(new RectElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Filled = false
});
}
// Parse box elements - <box x=0 y=0 w=20 h=10 />
foreach (Match match in Regex.Matches(markup, @"<box\s+x=(\d+)\s+y=(\d+)\s+w=(\d+)\s+h=(\d+)\s*/>"))
{
elements.Add(new RectElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Width = int.Parse(match.Groups[3].Value),
Height = int.Parse(match.Groups[4].Value),
Filled = true
});
}
// Parse line elements - <line x1=0 y1=0 x2=20 y2=20 />
foreach (Match match in Regex.Matches(markup, @"<line\s+x1=(\d+)\s+y1=(\d+)\s+x2=(\d+)\s+y2=(\d+)\s*/>"))
{
elements.Add(new LineElement
{
X1 = int.Parse(match.Groups[1].Value),
Y1 = int.Parse(match.Groups[2].Value),
X2 = int.Parse(match.Groups[3].Value),
Y2 = int.Parse(match.Groups[4].Value)
});
}
// Parse icon elements - <icon x=0 y=0 name=cpu />
foreach (Match match in Regex.Matches(markup, @"<icon\s+x=(\d+)\s+y=(\d+)\s+name=([a-zA-Z0-9_]+)\s*/>"))
{
elements.Add(new IconElement
{
X = int.Parse(match.Groups[1].Value),
Y = int.Parse(match.Groups[2].Value),
Name = match.Groups[3].Value
});
}
return elements;
}
/// <summary>
/// Creates an example OLED markup using available sensors
/// </summary>
public static string CreateExampleMarkup(SensorManager sensorManager)
{
StringBuilder markup = new StringBuilder();
string cpuLoad = sensorManager.FindFirstSensorOfType(HardwareType.Cpu, SensorType.Load);
string cpuTemp = sensorManager.FindFirstSensorOfType(HardwareType.Cpu, SensorType.Temperature);
string gpuLoad = sensorManager.FindFirstSensorOfType(HardwareType.GpuNvidia, SensorType.Load);
string gpuTemp = sensorManager.FindFirstSensorOfType(HardwareType.GpuNvidia, SensorType.Temperature);
string ramUsed = sensorManager.FindFirstSensorOfType(HardwareType.Memory, SensorType.Data);
markup.AppendLine("<text x=0 y=12 size=2>System Monitor</text>");
if (!string.IsNullOrEmpty(cpuLoad) && !string.IsNullOrEmpty(cpuTemp))
{
markup.AppendLine($"<text x=0 y=30 size=1>CPU: {{{cpuLoad}}}% ({{{cpuTemp}}}°C)</text>");
markup.AppendLine($"<bar x=0 y=35 w=128 h=6 val={{{cpuLoad}}} />");
}
else if (!string.IsNullOrEmpty(cpuLoad))
{
markup.AppendLine($"<text x=0 y=30 size=1>CPU: {{{cpuLoad}}}%</text>");
markup.AppendLine($"<bar x=0 y=35 w=128 h=6 val={{{cpuLoad}}} />");
}
if (!string.IsNullOrEmpty(gpuLoad) && !string.IsNullOrEmpty(gpuTemp))
{
markup.AppendLine($"<text x=130 y=30 size=1>GPU: {{{gpuLoad}}}% ({{{gpuTemp}}}°C)</text>");
markup.AppendLine($"<bar x=130 y=35 w=120 h=6 val={{{gpuLoad}}} />");
}
else if (!string.IsNullOrEmpty(gpuLoad))
{
markup.AppendLine($"<text x=130 y=30 size=1>GPU: {{{gpuLoad}}}%</text>");
markup.AppendLine($"<bar x=130 y=35 w=120 h=6 val={{{gpuLoad}}} />");
}
if (!string.IsNullOrEmpty(ramUsed))
{
markup.AppendLine($"<text x=0 y=50 size=1>RAM: {{{ramUsed}}} GB</text>");
}
return markup.ToString();
}
}
}

View File

@@ -0,0 +1,237 @@
using System;
using System.Collections.Generic;
using LibreHardwareMonitor.Hardware;
namespace PCPalConfigurator.Core
{
/// <summary>
/// Manages hardware sensors and provides access to sensor data
/// </summary>
public class SensorManager : IDisposable
{
private readonly Computer computer;
private readonly Dictionary<string, float> sensorValues = new Dictionary<string, float>();
private bool isDisposed = false;
public SensorManager()
{
computer = new Computer
{
IsCpuEnabled = true,
IsGpuEnabled = true,
IsMemoryEnabled = true,
IsMotherboardEnabled = true,
IsControllerEnabled = true,
IsStorageEnabled = true
};
computer.Open();
}
/// <summary>
/// Updates all sensor values from hardware
/// </summary>
public void UpdateSensorValues()
{
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.Value.HasValue)
{
string sensorId = GetSensorVariableName(hardware.Name, sensor.Name);
sensorValues[sensorId] = sensor.Value.Value;
}
}
}
}
/// <summary>
/// Gets a dictionary of all current sensor values
/// </summary>
public Dictionary<string, float> GetAllSensorValues()
{
return new Dictionary<string, float>(sensorValues);
}
/// <summary>
/// Gets the value of a specific sensor
/// </summary>
public float? GetSensorValue(string sensorId)
{
if (sensorValues.TryGetValue(sensorId, out float value))
{
return value;
}
return null;
}
/// <summary>
/// Finds the first available sensor of a specific type
/// </summary>
public string FindFirstSensorOfType(HardwareType hardwareType, SensorType sensorType)
{
foreach (var hardware in computer.Hardware)
{
if (hardware.HardwareType == hardwareType)
{
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == sensorType && sensor.Value.HasValue)
{
return GetSensorVariableName(hardware.Name, sensor.Name);
}
}
}
}
return string.Empty;
}
/// <summary>
/// Creates a variable name for a sensor that's safe to use in markup
/// </summary>
public static string GetSensorVariableName(string hardwareName, string sensorName)
{
string name = $"{hardwareName}_{sensorName}"
.Replace(" ", "_")
.Replace("%", "Percent")
.Replace("#", "Num")
.Replace("/", "_")
.Replace("\\", "_")
.Replace("(", "")
.Replace(")", "")
.Replace(",", "");
return name;
}
/// <summary>
/// Gets the appropriate unit for a sensor type
/// </summary>
public static string GetSensorUnit(SensorType sensorType)
{
return sensorType switch
{
SensorType.Temperature => "°C",
SensorType.Load => "%",
SensorType.Clock => "MHz",
SensorType.Power => "W",
SensorType.Fan => "RPM",
SensorType.Flow => "L/h",
SensorType.Control => "%",
SensorType.Level => "%",
_ => ""
};
}
/// <summary>
/// Formats a sensor value according to its type
/// </summary>
public static string FormatSensorValue(float value, SensorType sensorType)
{
return sensorType switch
{
SensorType.Temperature => value.ToString("F1"),
SensorType.Clock => value.ToString("F0"),
SensorType.Load => value.ToString("F1"),
SensorType.Fan => value.ToString("F0"),
SensorType.Power => value.ToString("F1"),
SensorType.Data => (value > 1024) ? (value / 1024).ToString("F1") : value.ToString("F1"),
_ => value.ToString("F1")
};
}
/// <summary>
/// Gets all hardware sensors grouped by type
/// </summary>
public Dictionary<SensorType, List<SensorInfo>> GetAllSensorsGroupedByType()
{
var result = new Dictionary<SensorType, List<SensorInfo>>();
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.Value.HasValue)
{
var sensorType = sensor.SensorType;
if (!result.ContainsKey(sensorType))
{
result[sensorType] = new List<SensorInfo>();
}
string sensorId = GetSensorVariableName(hardware.Name, sensor.Name);
result[sensorType].Add(new SensorInfo
{
Id = sensorId,
Name = $"{hardware.Name} {sensor.Name}",
Value = sensor.Value.Value,
SensorType = sensorType
});
}
}
}
return result;
}
/// <summary>
/// Gets all hardware for populating dropdown lists
/// </summary>
public List<string> GetSensorOptionsForDropdown()
{
var options = new List<string>();
foreach (var hardware in computer.Hardware)
{
hardware.Update();
foreach (var sensor in hardware.Sensors)
{
if (sensor.SensorType == SensorType.Load ||
sensor.SensorType == SensorType.Temperature ||
sensor.SensorType == SensorType.Data ||
sensor.SensorType == SensorType.Fan)
{
string option = $"{hardware.HardwareType}: {sensor.Name} ({sensor.SensorType})";
options.Add(option);
}
}
}
options.Add("Custom Text");
return options;
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!isDisposed)
{
if (disposing)
{
computer.Close();
}
isDisposed = true;
}
}
}
/// <summary>
/// Represents information about a sensor
/// </summary>
public class SensorInfo
{
public string Id { get; set; }
public string Name { get; set; }
public float Value { get; set; }
public SensorType SensorType { get; set; }
}
}

View File

@@ -28,10 +28,4 @@
</None> </None>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="Core\" />
<Folder Include="Rendering\Elements\" />
<Folder Include="UI\" />
</ItemGroup>
</Project> </Project>

View File

@@ -1,11 +1,14 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup> <ItemGroup>
<Compile Update="ConfiguratorForm.cs"> <Compile Update="UI\ConfiguratorForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="IconBrowser\IconBrowser.cs"> <Compile Update="UI\IconBrowser.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
<Compile Update="UI\OledPreviewPanel.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,14 +1,21 @@
using System;
using System.Windows.Forms;
using PCPalConfigurator.UI;
namespace PCPalConfigurator namespace PCPalConfigurator
{ {
static class Program static class Program
{ {
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread] [STAThread]
static void Main() static void Main()
{ {
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles(); Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false); Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ConfiguratorForm()); Application.Run(new ConfiguratorForm());
} }
} }
} }

View File

@@ -0,0 +1,30 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering.Elements
{
/// <summary>
/// Represents a bar graph element in the OLED preview
/// </summary>
public class BarElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public int Value { get; set; }
public override void Draw(Graphics g)
{
// Draw outline rectangle
g.DrawRectangle(Pens.White, X, Y, Width, Height);
// Calculate fill width based on value (0-100)
int fillWidth = (int)(Width * (Value / 100.0));
if (fillWidth > 0)
{
// Draw filled portion
g.FillRectangle(Brushes.White, X + 1, Y + 1, fillWidth - 1, Height - 2);
}
}
}
}

View File

@@ -0,0 +1,24 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering.Elements
{
/// <summary>
/// Represents an icon element in the OLED preview
/// </summary>
public class IconElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public string Name { get; set; }
public override void Draw(Graphics g)
{
// For preview, just draw a placeholder rectangle with icon name
g.DrawRectangle(Pens.Gray, X, Y, 24, 24);
using (Font font = new Font("Arial", 6))
{
g.DrawString(Name, font, Brushes.White, X + 2, Y + 8);
}
}
}
}

View File

@@ -0,0 +1,20 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering.Elements
{
/// <summary>
/// Represents a line element in the OLED preview
/// </summary>
public class LineElement : PreviewElement
{
public int X1 { get; set; }
public int Y1 { get; set; }
public int X2 { get; set; }
public int Y2 { get; set; }
public override void Draw(Graphics g)
{
g.DrawLine(Pens.White, X1, Y1, X2, Y2);
}
}
}

View File

@@ -0,0 +1,30 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering.Elements
{
/// <summary>
/// Represents a rectangle or box element in the OLED preview
/// </summary>
public class RectElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public bool Filled { get; set; }
public override void Draw(Graphics g)
{
if (Filled)
{
// Draw filled box
g.FillRectangle(Brushes.White, X, Y, Width, Height);
}
else
{
// Draw outline rectangle
g.DrawRectangle(Pens.White, X, Y, Width, Height);
}
}
}
}

View File

@@ -0,0 +1,31 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering.Elements
{
/// <summary>
/// Represents a text element in the OLED preview
/// </summary>
public class TextElement : PreviewElement
{
public int X { get; set; }
public int Y { get; set; }
public int Size { get; set; }
public string Text { get; set; }
public override void Draw(Graphics g)
{
// Choose font size based on the size parameter
Font font;
switch (Size)
{
case 1: font = new Font("Consolas", 8); break;
case 2: font = new Font("Consolas", 10); break;
case 3: font = new Font("Consolas", 12); break;
default: font = new Font("Consolas", 8); break;
}
// Draw text with white color
g.DrawString(Text, font, Brushes.White, X, Y - font.Height);
}
}
}

View File

@@ -0,0 +1,15 @@
using System.Drawing;
namespace PCPalConfigurator.Rendering
{
/// <summary>
/// Base class for all OLED preview elements
/// </summary>
public abstract class PreviewElement
{
/// <summary>
/// Draws the element on the provided graphics context
/// </summary>
public abstract void Draw(Graphics g);
}
}

View File

@@ -0,0 +1,64 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace PCPalConfigurator.Rendering
{
/// <summary>
/// Renders OLED preview elements to a graphics context
/// </summary>
public class OledRenderer
{
private const int OledWidth = 256;
private const int OledHeight = 64;
/// <summary>
/// Renders a list of preview elements to a graphics context
/// </summary>
public void RenderPreview(Graphics g, List<PreviewElement> elements, int panelWidth, int panelHeight)
{
// Create graphics object with smooth rendering
g.SmoothingMode = SmoothingMode.AntiAlias;
// Calculate scale to fit preview in panel while maintaining aspect ratio
float scaleX = (float)panelWidth / OledWidth;
float scaleY = (float)panelHeight / OledHeight;
float scale = Math.Min(scaleX, scaleY);
// Calculate centered position
int displayWidth = (int)(OledWidth * scale);
int displayHeight = (int)(OledHeight * scale);
int offsetX = (panelWidth - displayWidth) / 2;
int offsetY = (panelHeight - displayHeight) / 2;
// Draw display outline
Rectangle displayRect = new Rectangle(offsetX, offsetY, displayWidth, displayHeight);
g.DrawRectangle(Pens.DarkGray, displayRect);
// Set up transformation to scale the preview elements
g.TranslateTransform(offsetX, offsetY);
g.ScaleTransform(scale, scale);
// Draw all elements
foreach (var element in elements)
{
element.Draw(g);
}
// Reset transformation
g.ResetTransform();
// Draw labels and guidelines
g.DrawString($"OLED: {OledWidth}x{OledHeight}", new Font("Arial", 8), Brushes.Gray, 5, 5);
}
/// <summary>
/// Gets the OLED display dimensions
/// </summary>
public static (int Width, int Height) GetDisplayDimensions()
{
return (OledWidth, OledHeight);
}
}
}

View File

@@ -0,0 +1,256 @@
using PCPalConfigurator.Rendering;
using PCPalConfigurator.UI;
namespace PCPalConfigurator.UI
{
partial class ConfiguratorForm
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage tab1602;
private System.Windows.Forms.TabPage tabTFT;
private System.Windows.Forms.TabPage tabOLED;
private System.Windows.Forms.TabPage tabHelp;
private System.Windows.Forms.TabPage tabAbout;
private System.Windows.Forms.ComboBox cmbLine1;
private System.Windows.Forms.TextBox txtLine1;
private System.Windows.Forms.TextBox txtLine1Post;
private System.Windows.Forms.ComboBox cmbLine2;
private System.Windows.Forms.TextBox txtLine2;
private System.Windows.Forms.TextBox txtLine2Post;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label lblLine1;
private System.Windows.Forms.Label lblLine1Prefix;
private System.Windows.Forms.Label lblLine1Suffix;
private System.Windows.Forms.Label lblLine2;
private System.Windows.Forms.Label lblLine2Prefix;
private System.Windows.Forms.Label lblLine2Suffix;
// OLED tab controls
private System.Windows.Forms.TextBox txtOledMarkup;
private System.Windows.Forms.Panel panelOledButtons;
private System.Windows.Forms.Button btnInsertIcon;
private System.Windows.Forms.Button btnLoadOledExample;
private System.Windows.Forms.Button btnSaveOled;
private System.Windows.Forms.Button btnPreview;
private System.Windows.Forms.Label lblPreviewHeader;
private OledPreviewPanel oledPreviewPanel;
// Help tab controls
private System.Windows.Forms.TextBox txtHelpContent;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.tabControl = new System.Windows.Forms.TabControl();
this.tab1602 = new System.Windows.Forms.TabPage("1602 LCD");
this.tabTFT = new System.Windows.Forms.TabPage("4.6\" TFT LCD");
this.tabOLED = new System.Windows.Forms.TabPage("OLED Display");
this.tabHelp = new System.Windows.Forms.TabPage("Help");
this.tabAbout = new System.Windows.Forms.TabPage("About");
this.cmbLine1 = new System.Windows.Forms.ComboBox();
this.txtLine1 = new System.Windows.Forms.TextBox();
this.txtLine1Post = new System.Windows.Forms.TextBox();
this.cmbLine2 = new System.Windows.Forms.ComboBox();
this.txtLine2 = new System.Windows.Forms.TextBox();
this.txtLine2Post = new System.Windows.Forms.TextBox();
this.btnSave = new System.Windows.Forms.Button();
this.lblLine1 = new System.Windows.Forms.Label();
this.lblLine1Prefix = new System.Windows.Forms.Label();
this.lblLine1Suffix = new System.Windows.Forms.Label();
this.lblLine2 = new System.Windows.Forms.Label();
this.lblLine2Prefix = new System.Windows.Forms.Label();
this.lblLine2Suffix = new System.Windows.Forms.Label();
// OLED tab controls
this.txtOledMarkup = new System.Windows.Forms.TextBox();
this.panelOledButtons = new System.Windows.Forms.Panel();
this.btnInsertIcon = new System.Windows.Forms.Button();
this.btnLoadOledExample = new System.Windows.Forms.Button();
this.btnSaveOled = new System.Windows.Forms.Button();
this.btnPreview = new System.Windows.Forms.Button();
this.lblPreviewHeader = new System.Windows.Forms.Label();
this.oledPreviewPanel = new OledPreviewPanel();
// Help tab controls
this.txtHelpContent = new System.Windows.Forms.TextBox();
// === TabControl ===
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.TabPages.Add(this.tab1602);
this.tabControl.TabPages.Add(this.tabTFT);
this.tabControl.TabPages.Add(this.tabOLED);
this.tabControl.TabPages.Add(this.tabHelp);
this.tabControl.TabPages.Add(this.tabAbout);
this.Controls.Add(this.tabControl);
// === Line 1 UI ===
this.lblLine1.Text = "Line 1:";
this.lblLine1.Location = new System.Drawing.Point(20, 20);
this.lblLine1.AutoSize = true;
this.cmbLine1.Location = new System.Drawing.Point(100, 18);
this.cmbLine1.Size = new System.Drawing.Size(200, 21);
this.lblLine1Prefix.Text = "Prefix:";
this.lblLine1Prefix.Location = new System.Drawing.Point(20, 50);
this.lblLine1Prefix.AutoSize = true;
this.txtLine1.Location = new System.Drawing.Point(100, 48);
this.txtLine1.Size = new System.Drawing.Size(200, 21);
this.lblLine1Suffix.Text = "Suffix / Units:";
this.lblLine1Suffix.Location = new System.Drawing.Point(320, 50);
this.lblLine1Suffix.AutoSize = true;
this.txtLine1Post.Location = new System.Drawing.Point(420, 48);
this.txtLine1Post.Size = new System.Drawing.Size(120, 21);
// === Line 2 UI ===
this.lblLine2.Text = "Line 2:";
this.lblLine2.Location = new System.Drawing.Point(20, 90);
this.lblLine2.AutoSize = true;
this.cmbLine2.Location = new System.Drawing.Point(100, 88);
this.cmbLine2.Size = new System.Drawing.Size(200, 21);
this.lblLine2Prefix.Text = "Prefix:";
this.lblLine2Prefix.Location = new System.Drawing.Point(20, 120);
this.lblLine2Prefix.AutoSize = true;
this.txtLine2.Location = new System.Drawing.Point(100, 118);
this.txtLine2.Size = new System.Drawing.Size(200, 21);
this.lblLine2Suffix.Text = "Suffix / Units:";
this.lblLine2Suffix.Location = new System.Drawing.Point(320, 120);
this.lblLine2Suffix.AutoSize = true;
this.txtLine2Post.Location = new System.Drawing.Point(420, 118);
this.txtLine2Post.Size = new System.Drawing.Size(120, 21);
// === Save Button ===
this.btnSave.Text = "Save";
this.btnSave.Location = new System.Drawing.Point(20, 170);
this.btnSave.Size = new System.Drawing.Size(100, 30);
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
// === Add to 1602 Tab ===
this.tab1602.Controls.AddRange(new System.Windows.Forms.Control[]
{
lblLine1, cmbLine1, lblLine1Prefix, txtLine1, lblLine1Suffix, txtLine1Post,
lblLine2, cmbLine2, lblLine2Prefix, txtLine2, lblLine2Suffix, txtLine2Post,
btnSave
});
// === OLED Tab Setup ===
// Main panel for layout
System.Windows.Forms.Panel oledMainPanel = new System.Windows.Forms.Panel();
oledMainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabOLED.Controls.Add(oledMainPanel);
// Markup editor
this.txtOledMarkup = new System.Windows.Forms.TextBox();
this.txtOledMarkup.Multiline = true;
this.txtOledMarkup.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtOledMarkup.Font = new System.Drawing.Font("Consolas", 9.75F);
this.txtOledMarkup.TextChanged += new System.EventHandler(this.txtOledMarkup_TextChanged);
this.txtOledMarkup.Size = new System.Drawing.Size(580, 130);
this.txtOledMarkup.Location = new System.Drawing.Point(10, 10);
oledMainPanel.Controls.Add(this.txtOledMarkup);
// Button panel
this.panelOledButtons = new System.Windows.Forms.Panel();
this.panelOledButtons.Size = new System.Drawing.Size(580, 40);
this.panelOledButtons.Location = new System.Drawing.Point(10, 150);
oledMainPanel.Controls.Add(this.panelOledButtons);
this.btnInsertIcon = new System.Windows.Forms.Button();
this.btnInsertIcon.Text = "Insert Icon";
this.btnInsertIcon.Location = new System.Drawing.Point(0, 7);
this.btnInsertIcon.Size = new System.Drawing.Size(120, 26);
this.btnInsertIcon.Click += new System.EventHandler(this.btnInsertIcon_Click);
this.panelOledButtons.Controls.Add(this.btnInsertIcon);
this.btnLoadOledExample = new System.Windows.Forms.Button();
this.btnLoadOledExample.Text = "Load Example";
this.btnLoadOledExample.Location = new System.Drawing.Point(130, 7);
this.btnLoadOledExample.Size = new System.Drawing.Size(120, 26);
this.btnLoadOledExample.Click += new System.EventHandler(this.btnLoadOledExample_Click);
this.panelOledButtons.Controls.Add(this.btnLoadOledExample);
this.btnPreview = new System.Windows.Forms.Button();
this.btnPreview.Text = "Update Preview";
this.btnPreview.Location = new System.Drawing.Point(260, 7);
this.btnPreview.Size = new System.Drawing.Size(120, 26);
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
this.panelOledButtons.Controls.Add(this.btnPreview);
this.btnSaveOled = new System.Windows.Forms.Button();
this.btnSaveOled.Text = "Save";
this.btnSaveOled.Location = new System.Drawing.Point(480, 7);
this.btnSaveOled.Size = new System.Drawing.Size(100, 26);
this.btnSaveOled.Click += new System.EventHandler(this.btnSave_Click); // Uses same event handler
this.panelOledButtons.Controls.Add(this.btnSaveOled);
// Preview header
this.lblPreviewHeader = new System.Windows.Forms.Label();
this.lblPreviewHeader.Text = "OLED Preview (256x64)";
this.lblPreviewHeader.Location = new System.Drawing.Point(10, 195);
this.lblPreviewHeader.Size = new System.Drawing.Size(580, 20);
this.lblPreviewHeader.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblPreviewHeader.BackColor = System.Drawing.SystemColors.ControlLight;
this.lblPreviewHeader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
oledMainPanel.Controls.Add(this.lblPreviewHeader);
// Preview panel
this.oledPreviewPanel.Location = new System.Drawing.Point(10, 215);
this.oledPreviewPanel.Size = new System.Drawing.Size(580, 110);
oledMainPanel.Controls.Add(this.oledPreviewPanel);
// === Help Tab Setup ===
this.txtHelpContent = new System.Windows.Forms.TextBox();
this.txtHelpContent.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtHelpContent.Multiline = true;
this.txtHelpContent.ReadOnly = true;
this.txtHelpContent.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtHelpContent.Font = new System.Drawing.Font("Segoe UI", 9F);
this.tabHelp.Controls.Add(this.txtHelpContent);
// === TFT Tab Placeholder ===
System.Windows.Forms.Label lblTFT = new System.Windows.Forms.Label()
{
Text = "TFT configuration coming soon...",
Location = new System.Drawing.Point(20, 20),
AutoSize = true
};
this.tabTFT.Controls.Add(lblTFT);
// === About Tab ===
System.Windows.Forms.Label lblAbout = new System.Windows.Forms.Label()
{
Text = "PCPal Display Configurator\nFor ThermalTake Tower XXX\nVersion 1.0.0\n© 2025 Christopher Koch aka NinjaPug",
Location = new System.Drawing.Point(20, 20),
AutoSize = true
};
this.tabAbout.Controls.Add(lblAbout);
// === Form ===
this.Text = "Display Configurator";
this.ClientSize = new System.Drawing.Size(600, 380);
this.ResumeLayout(false);
this.PerformLayout();
}
}
}

View File

@@ -0,0 +1,292 @@
using System;
using System.IO;
using System.Text;
using System.Windows.Forms;
using System.Collections.Generic;
using Newtonsoft.Json;
using PCPalConfigurator.Core;
using PCPalConfigurator.Rendering;
namespace PCPalConfigurator.UI
{
public partial class ConfiguratorForm : Form
{
private ConfigData config;
private readonly string configFile;
private SensorManager sensorManager;
private System.Windows.Forms.Timer sensorUpdateTimer;
private MarkupParser markupParser;
private List<PreviewElement> previewElements = new List<PreviewElement>();
public ConfiguratorForm()
{
InitializeComponent();
// Initialize the configuration path
configFile = GetConfigPath();
// Initialize hardware monitoring
sensorManager = new SensorManager();
sensorManager.UpdateSensorValues();
// Initialize markup parser
markupParser = new MarkupParser(sensorManager.GetAllSensorValues());
// Setup timer for sensor updates
InitSensorTimer();
// Load configuration and populate UI
LoadConfig();
PopulateSensorOptions();
PopulateHelpContent();
// Initial preview update
UpdatePreview();
}
private void InitSensorTimer()
{
// Create a timer to regularly update sensor values for the preview
sensorUpdateTimer = new System.Windows.Forms.Timer();
sensorUpdateTimer.Interval = 1000; // Update every second
sensorUpdateTimer.Tick += SensorUpdateTimer_Tick;
sensorUpdateTimer.Start();
}
private void SensorUpdateTimer_Tick(object sender, EventArgs e)
{
// Only update when the OLED tab is selected to save resources
if (tabControl.SelectedTab == tabOLED)
{
sensorManager.UpdateSensorValues();
markupParser = new MarkupParser(sensorManager.GetAllSensorValues());
UpdatePreview();
}
}
private static string GetConfigPath()
{
string folder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "PCPal");
Directory.CreateDirectory(folder);
return Path.Combine(folder, "config.json");
}
private void LoadConfig()
{
if (File.Exists(configFile))
{
string json = File.ReadAllText(configFile);
config = JsonConvert.DeserializeObject<ConfigData>(json) ?? new ConfigData();
ApplyConfig();
}
else
{
config = new ConfigData();
}
}
private void ApplyConfig()
{
// LCD settings
cmbLine1.SelectedItem = config.Line1Selection;
txtLine1.Text = config.Line1CustomText;
txtLine1Post.Text = config.Line1PostText;
cmbLine2.SelectedItem = config.Line2Selection;
txtLine2.Text = config.Line2CustomText;
txtLine2Post.Text = config.Line2PostText;
// OLED settings
txtOledMarkup.Text = config.OledMarkup;
// Select the appropriate tab based on screen type
if (config.ScreenType == "1602")
tabControl.SelectedTab = tab1602;
else if (config.ScreenType == "TFT4_6")
tabControl.SelectedTab = tabTFT;
else if (config.ScreenType == "OLED")
tabControl.SelectedTab = tabOLED;
}
private void SaveConfig()
{
// Determine screen type based on selected tab
if (tabControl.SelectedTab == tab1602)
config.ScreenType = "1602";
else if (tabControl.SelectedTab == tabTFT)
config.ScreenType = "TFT4_6";
else if (tabControl.SelectedTab == tabOLED)
config.ScreenType = "OLED";
// Save LCD settings
config.Line1Selection = cmbLine1.SelectedItem?.ToString();
config.Line1CustomText = txtLine1.Text;
config.Line1PostText = txtLine1Post.Text;
config.Line2Selection = cmbLine2.SelectedItem?.ToString();
config.Line2CustomText = txtLine2.Text;
config.Line2PostText = txtLine2Post.Text;
// Save OLED settings
config.OledMarkup = txtOledMarkup.Text;
string json = JsonConvert.SerializeObject(config, Formatting.Indented);
File.WriteAllText(configFile, json);
MessageBox.Show("Settings saved!");
}
private void btnSave_Click(object sender, EventArgs e)
{
SaveConfig();
}
private void PopulateSensorOptions()
{
var options = sensorManager.GetSensorOptionsForDropdown();
cmbLine1.Items.Clear();
cmbLine2.Items.Clear();
foreach (var option in options)
{
cmbLine1.Items.Add(option);
cmbLine2.Items.Add(option);
}
}
private void PopulateHelpContent()
{
// Create help content for both LCD and OLED displays
StringBuilder sb = new StringBuilder();
// General Information
sb.AppendLine("PCPal Display Configurator Help");
sb.AppendLine("==============================");
sb.AppendLine();
// LCD Display Help
sb.AppendLine("LCD DISPLAY CONFIGURATION");
sb.AppendLine("------------------------");
sb.AppendLine("1. Select a sensor for each line or choose 'Custom Text'");
sb.AppendLine("2. Set prefix text to appear before the sensor value");
sb.AppendLine("3. Set suffix/units to appear after the sensor value");
sb.AppendLine("4. Click 'Save' to apply your settings");
sb.AppendLine();
// OLED Display Help
sb.AppendLine("OLED MARKUP REFERENCE");
sb.AppendLine("---------------------");
sb.AppendLine("The OLED display accepts markup tags to create your layout.");
sb.AppendLine();
sb.AppendLine("Text: <text x=0 y=10 size=1>Hello World</text>");
sb.AppendLine(" - x, y: position coordinates (0,0 is top-left)");
sb.AppendLine(" - size: 1-3 (small to large)");
sb.AppendLine();
sb.AppendLine("Progress Bar: <bar x=0 y=20 w=100 h=8 val=75 />");
sb.AppendLine(" - x, y: position");
sb.AppendLine(" - w, h: width and height");
sb.AppendLine(" - val: value 0-100");
sb.AppendLine();
sb.AppendLine("Icon: <icon x=0 y=0 name=cpu />");
sb.AppendLine(" - Inserts a bitmap icon from the SD card");
sb.AppendLine(" - Use the 'Insert Icon' button to browse available icons");
sb.AppendLine();
sb.AppendLine("Rectangle (outline): <rect x=0 y=0 w=20 h=10 />");
sb.AppendLine();
sb.AppendLine("Filled Box: <box x=0 y=0 w=20 h=10 />");
sb.AppendLine();
sb.AppendLine("Line: <line x1=0 y1=0 x2=20 y2=20 />");
sb.AppendLine();
// Sensor variables
sb.AppendLine("SENSOR VARIABLES");
sb.AppendLine("----------------");
sb.AppendLine("Use {SensorName} syntax to include sensor values.");
sb.AppendLine("Example: <text x=0 y=10>CPU: {CPU_Core_i7_Total_Load}%</text>");
// Add available sensor variables with their current values
sb.AppendLine();
sb.AppendLine("Available sensor variables:");
var sensorGroups = sensorManager.GetAllSensorsGroupedByType();
foreach (var group in sensorGroups)
{
sb.AppendLine();
sb.AppendLine($"-- {group.Key} Sensors --");
foreach (var sensor in group.Value) // Change here - iterate over group.Value
{
string unit = SensorManager.GetSensorUnit(group.Key);
string value = SensorManager.FormatSensorValue(sensor.Value, group.Key);
sb.AppendLine($"{{{sensor.Id}}} = {value}{unit} ({sensor.Name})");
}
}
txtHelpContent.Text = sb.ToString();
}
private void btnInsertIcon_Click(object sender, EventArgs e)
{
using (var browser = new IconBrowser())
{
if (browser.ShowDialog() == DialogResult.OK)
{
// Get the icon markup and insert it at the cursor position
string iconMarkup = browser.GetIconMarkup();
if (!string.IsNullOrEmpty(iconMarkup))
{
int selectionStart = txtOledMarkup.SelectionStart;
txtOledMarkup.Text = txtOledMarkup.Text.Insert(selectionStart, iconMarkup);
txtOledMarkup.SelectionStart = selectionStart + iconMarkup.Length;
txtOledMarkup.Focus();
}
}
}
}
private void btnLoadOledExample_Click(object sender, EventArgs e)
{
// Create an example with sensors from the current system
string exampleMarkup = MarkupParser.CreateExampleMarkup(sensorManager);
txtOledMarkup.Text = exampleMarkup;
}
private void btnPreview_Click(object sender, EventArgs e)
{
sensorManager.UpdateSensorValues();
markupParser = new MarkupParser(sensorManager.GetAllSensorValues());
UpdatePreview();
}
private void txtOledMarkup_TextChanged(object sender, EventArgs e)
{
UpdatePreview();
}
private void UpdatePreview()
{
try
{
// Parse the markup into preview elements
previewElements = markupParser.ParseMarkup(txtOledMarkup.Text);
// Update the preview panel
oledPreviewPanel.SetPreviewElements(previewElements);
}
catch (Exception ex)
{
// Don't show errors during preview - just log them
Console.WriteLine($"Preview error: {ex.Message}");
}
}
protected override void OnFormClosing(FormClosingEventArgs e)
{
base.OnFormClosing(e);
// Clean up resources
sensorUpdateTimer?.Stop();
sensorUpdateTimer?.Dispose();
sensorManager?.Dispose();
}
}
}

View File

@@ -1,4 +1,7 @@
namespace PCPalConfigurator using System.Windows.Forms;
using System.Drawing;
namespace PCPalConfigurator.UI
{ {
partial class IconBrowser partial class IconBrowser
{ {

View File

@@ -4,8 +4,11 @@ using System.Drawing;
using System.IO; using System.IO;
using System.Windows.Forms; using System.Windows.Forms;
namespace PCPalConfigurator namespace PCPalConfigurator.UI
{ {
/// <summary>
/// Dialog for browsing and selecting icons
/// </summary>
public partial class IconBrowser : Form public partial class IconBrowser : Form
{ {
private string _selectedIconPath = ""; private string _selectedIconPath = "";

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using PCPalConfigurator.Rendering;
namespace PCPalConfigurator.UI
{
/// <summary>
/// Custom panel for displaying OLED preview
/// </summary>
public class OledPreviewPanel : Panel
{
private List<PreviewElement> previewElements = new List<PreviewElement>();
private readonly OledRenderer renderer = new OledRenderer();
public OledPreviewPanel()
{
this.BackColor = Color.Black;
this.BorderStyle = BorderStyle.FixedSingle;
this.DoubleBuffered = true; // Reduces flicker during repaints
}
/// <summary>
/// Updates the preview elements to be rendered
/// </summary>
public void SetPreviewElements(List<PreviewElement> elements)
{
previewElements = elements ?? new List<PreviewElement>();
this.Invalidate(); // Trigger a repaint
}
/// <summary>
/// Handles the paint event to render the OLED preview
/// </summary>
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
// Render the preview elements
renderer.RenderPreview(e.Graphics, previewElements, this.Width, this.Height);
}
}
}