Files
CMLeonOS/Gui/UILib/TextBlock.cs
2026-03-08 20:22:53 +08:00

141 lines
3.7 KiB
C#

// 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 <https://www.gnu.org/licenses/>.
using System;
using System.Drawing;
namespace CMLeonOS.Gui.UILib
{
internal class TextBlock : Control
{
public TextBlock(Window parent, int x, int y, int width, int height) : base(parent, x, y, width, height)
{
}
private string _text = "TextBlock";
internal string Text
{
get
{
return _text;
}
set
{
_text = value;
Render();
}
}
private Color _background = Color.White;
internal Color Background
{
get
{
return _background;
}
set
{
_background = value;
Render();
}
}
private Color _foreground = Color.Black;
internal Color Foreground
{
get
{
return _foreground;
}
set
{
_foreground = value;
Render();
}
}
private Alignment _horizontalAlignment = Alignment.Start;
internal Alignment HorizontalAlignment
{
get
{
return _horizontalAlignment;
}
set
{
_horizontalAlignment = value;
Render();
}
}
private Alignment _verticalAlignment = Alignment.Start;
internal Alignment VerticalAlignment
{
get
{
return _verticalAlignment;
}
set
{
_verticalAlignment = value;
Render();
}
}
internal override void Render()
{
Clear(Background);
int textX;
int textY;
switch (HorizontalAlignment)
{
case Alignment.Start:
textX = 0;
break;
case Alignment.Middle:
textX = (Width / 2) - (8 * Text.Length / 2);
break;
case Alignment.End:
textX = Width - (8 * Text.Length);
break;
default:
throw new Exception("Invalid horizontal alignment.");
}
switch (VerticalAlignment)
{
case Alignment.Start:
textY = 0;
break;
case Alignment.Middle:
textY = (Height / 2) - (16 / 2);
break;
case Alignment.End:
textY = Height - 16;
break;
default:
throw new Exception("Invalid vertical alignment.");
}
DrawString(Text, Foreground, textX, textY);
WM.Update(this);
}
}
}