// 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 CMLeonOS.Gui.SmoothMono; using System; using System.Drawing; namespace CMLeonOS.Gui.UILib { internal class PromptBox : MessageBox { internal PromptBox(Process process, string title, string message, string placeholder, Action submitted) : base(process, title, message) { Placeholder = placeholder; Submitted = submitted; } internal void Show() { WindowManager wm = ProcessManager.GetProcess(); int longestLineLength = 0; foreach (string line in Message.Split('\n')) { longestLineLength = Math.Max(longestLineLength, line.Length); } int width = Math.Max(256, (Padding * 2) + (8 * longestLineLength)); int height = 128 + ((Message.Split('\n').Length - 1) * 16); AppWindow window = new AppWindow(Process, (int)((wm.ScreenWidth / 2) - (height / 2)), (int)((wm.ScreenWidth / 2) - (width / 2)), width, height); window.Title = Title; wm.AddWindow(window); window.Clear(Color.LightGray); window.DrawFilledRectangle(0, window.Height - (Padding * 2) - 20, window.Width, (Padding * 2) + 20, Color.Gray); window.DrawString(Message, Color.Black, Padding, Padding); TextBox textBox = new TextBox(window, Padding, Padding + FontData.Height + 8, 192, 20); textBox.PlaceholderText = Placeholder; wm.AddWindow(textBox); Button ok = new Button(window, window.Width - 80 - Padding, window.Height - 20 - Padding, 80, 20); ok.Text = "OK"; ok.OnClick = (int x, int y) => { wm.RemoveWindow(window); Submitted.Invoke(textBox.Text); }; wm.AddWindow(ok); wm.Update(window); ProcessManager.GetProcess().PlaySystemSound(Sound.SystemSound.Alert); } internal Action Submitted { get; private set; } internal string Placeholder { get; private set; } } }