// The CMLeonOS Project (https://github.com/Leonmmcoset/CMLeonOS) // Copyright (C) 2025-present LeonOS 2 Developer Team // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . using CMLeonOS; using System; using System.Drawing; namespace CMLeonOS.Gui.UILib { internal class MessageBox { internal MessageBox(Process process, string title, string message) { this.Process = process; Title = title; Message = message; } protected const int Padding = 12; internal void Show() { WindowManager wm = ProcessManager.GetProcess(); string[] lines = Message.Split('\n'); int longestLineLength = 0; foreach (string line in lines) { longestLineLength = Math.Max(longestLineLength, line.Length); } int width = Math.Max(208, (Padding * 2) + (8 * longestLineLength)); int textHeight = lines.Length * 16; int height = Math.Max(112, Padding + textHeight + 16 + 20 + Padding * 2); AppWindow window = new AppWindow(Process, (int)((wm.ScreenWidth / 2) - (width / 2)), (int)((wm.ScreenHeight / 2) - (height / 2)), width, height); window.Title = Title; wm.AddWindow(window); window.Clear(UITheme.Surface); window.DrawRectangle(0, 0, window.Width, window.Height, UITheme.SurfaceBorder); window.DrawFilledRectangle(0, window.Height - (Padding * 2) - 20, window.Width, (Padding * 2) + 20, UITheme.SurfaceMuted); int textY = Padding; foreach (string line in lines) { window.DrawString(line, UITheme.TextPrimary, Padding, textY); textY += 16; } Button ok = new Button(window, window.Width - 80 - Padding, window.Height - 20 - Padding, 80, 20); ok.Text = "OK"; ok.Background = UITheme.Accent; ok.Border = UITheme.AccentDark; ok.OnClick = (int x, int y) => { wm.RemoveWindow(window); }; wm.AddWindow(ok); wm.Update(window); ok.Render(); ProcessManager.GetProcess().PlaySystemSound(Sound.SystemSound.Alert); } internal Process Process { get; private set; } internal string Title { get; private set; } internal string Message { get; private set; } } }