89 lines
2.1 KiB
C++
89 lines
2.1 KiB
C++
// Copyright (C) 2020 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp
|
|
|
|
#include <NazaraSDK/Widgets/RichTextAreaWidget.hpp>
|
|
|
|
namespace Ndk
|
|
{
|
|
inline unsigned int RichTextAreaWidget::GetCharacterSize() const
|
|
{
|
|
return m_drawer.GetDefaultCharacterSize();
|
|
}
|
|
|
|
inline float RichTextAreaWidget::GetCharacterSpacingOffset() const
|
|
{
|
|
return m_drawer.GetDefaultCharacterSpacingOffset();
|
|
}
|
|
|
|
inline float RichTextAreaWidget::GetLineSpacingOffset() const
|
|
{
|
|
return m_drawer.GetDefaultLineSpacingOffset();
|
|
}
|
|
|
|
inline const Nz::Color& RichTextAreaWidget::GetTextColor() const
|
|
{
|
|
return m_drawer.GetDefaultColor();
|
|
}
|
|
|
|
inline Nz::Font* RichTextAreaWidget::GetTextFont() const
|
|
{
|
|
return m_drawer.GetDefaultFont();
|
|
}
|
|
|
|
inline const Nz::Color& RichTextAreaWidget::GetTextOutlineColor() const
|
|
{
|
|
return m_drawer.GetDefaultOutlineColor();
|
|
}
|
|
|
|
inline float RichTextAreaWidget::GetTextOutlineThickness() const
|
|
{
|
|
return m_drawer.GetDefaultOutlineThickness();
|
|
}
|
|
|
|
inline Nz::TextStyleFlags RichTextAreaWidget::GetTextStyle() const
|
|
{
|
|
return m_drawer.GetDefaultStyle();
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetCharacterSize(unsigned int characterSize)
|
|
{
|
|
m_drawer.SetDefaultCharacterSize(characterSize);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetCharacterSpacingOffset(float offset)
|
|
{
|
|
m_drawer.SetDefaultCharacterSpacingOffset(offset);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetLineSpacingOffset(float offset)
|
|
{
|
|
m_drawer.SetDefaultLineSpacingOffset(offset);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetTextColor(const Nz::Color& color)
|
|
{
|
|
m_drawer.SetDefaultColor(color);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetTextFont(Nz::FontRef font)
|
|
{
|
|
m_drawer.SetDefaultFont(std::move(font));
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetTextOutlineColor(const Nz::Color& color)
|
|
{
|
|
m_drawer.SetDefaultOutlineColor(color);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetTextOutlineThickness(float thickness)
|
|
{
|
|
m_drawer.SetDefaultOutlineThickness(thickness);
|
|
}
|
|
|
|
inline void RichTextAreaWidget::SetTextStyle(Nz::TextStyleFlags style)
|
|
{
|
|
m_drawer.SetDefaultStyle(style);
|
|
}
|
|
}
|