mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
Add some initial widget functionality (prefs partly working)
This commit is contained in:
32
PortabilityLayer/PLLabelWidget.cpp
Normal file
32
PortabilityLayer/PLLabelWidget.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
#include "PLLabelWidget.h"
|
||||
#include "PLQDraw.h"
|
||||
#include "FontFamily.h"
|
||||
#include "PLStandardColors.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
LabelWidget::LabelWidget(const WidgetBasicState &state)
|
||||
: WidgetSpec<LabelWidget>(state)
|
||||
, m_text(state.m_text)
|
||||
{
|
||||
}
|
||||
|
||||
bool LabelWidget::Init(const WidgetBasicState &state)
|
||||
{
|
||||
(void)state;
|
||||
return true;
|
||||
}
|
||||
|
||||
void LabelWidget::DrawControl(DrawSurface *surface)
|
||||
{
|
||||
surface->SetSystemFont(12, PortabilityLayer::FontFamilyFlag_Bold);
|
||||
surface->SetForeColor(StdColors::Black());
|
||||
|
||||
const Point topLeftCorner = Point::Create(m_rect.left, m_rect.top);
|
||||
const Point textStartPoint = topLeftCorner + Point::Create(0, surface->MeasureFontAscender());
|
||||
|
||||
surface->DrawString(textStartPoint, m_text.ToShortStr());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user