mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			696 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			696 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "Label.h"
 | |
| #include "Painter.h"
 | |
| #include <cstdio>
 | |
| 
 | |
| Label::Label(Widget* parent)
 | |
|     : Widget(parent)
 | |
| {
 | |
| }
 | |
| 
 | |
| Label::~Label()
 | |
| {
 | |
| }
 | |
| 
 | |
| void Label::setText(String&& text)
 | |
| {
 | |
|     if (text == m_text)
 | |
|         return;
 | |
|     m_text = std::move(text);
 | |
|     update();
 | |
| }
 | |
| 
 | |
| void Label::onPaint(PaintEvent&)
 | |
| {
 | |
|     Painter painter(*this);
 | |
|     painter.fillRect({ 0, 0, width(), height() }, Color(0x0, 0x0, 0x0));
 | |
|     if (!text().isEmpty())
 | |
|         painter.drawText({ 4, 4, width(), height() }, text(), Painter::TextAlignment::TopLeft, Color(0xff, 0xff, 0xff));
 | |
| }
 | |
| 
 | |
| void Label::onMouseMove(MouseEvent& event)
 | |
| {
 | |
|     printf("Label::onMouseMove: x=%d, y=%d\n", event.x(), event.y());
 | |
|     Widget::onMouseMove(event);
 | |
| }
 | |
| 
 | 
