2013-03-25 15:36:12 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2013 Birunthan Mohanathas
|
|
|
|
|
|
|
|
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 2
|
|
|
|
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, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "TextFormatD2D.h"
|
|
|
|
#include "CanvasD2D.h"
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
TextFormatD2D::TextFormatD2D() :
|
|
|
|
m_TextFormat(),
|
2013-03-28 13:51:12 +00:00
|
|
|
m_TextLayout(),
|
2013-03-25 15:36:12 +00:00
|
|
|
m_InlineEllipsis()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TextFormatD2D::~TextFormatD2D()
|
|
|
|
{
|
|
|
|
Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextFormatD2D::Dispose()
|
|
|
|
{
|
|
|
|
if (m_TextFormat)
|
|
|
|
{
|
|
|
|
m_TextFormat->Release();
|
|
|
|
m_TextFormat = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-03-28 13:51:12 +00:00
|
|
|
if (m_TextLayout)
|
|
|
|
{
|
|
|
|
m_TextLayout->Release();
|
|
|
|
m_TextLayout = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-03-25 15:36:12 +00:00
|
|
|
if (m_InlineEllipsis)
|
|
|
|
{
|
|
|
|
m_InlineEllipsis->Release();
|
|
|
|
m_InlineEllipsis = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 13:51:12 +00:00
|
|
|
void TextFormatD2D::CreateLayout(const WCHAR* str, UINT strLen, float maxW, float maxH)
|
|
|
|
{
|
|
|
|
bool strChanged = false;
|
|
|
|
if (strLen != m_LastString.length() ||
|
|
|
|
memcmp(str, m_LastString.c_str(), (strLen + 1) * sizeof(WCHAR)) != 0)
|
|
|
|
{
|
|
|
|
strChanged = true;
|
|
|
|
m_LastString.assign(str, strLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_TextLayout && !strChanged)
|
|
|
|
{
|
|
|
|
if (maxW != m_TextLayout->GetMaxWidth())
|
|
|
|
{
|
|
|
|
m_TextLayout->SetMaxWidth(maxW);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxH != m_TextLayout->GetMaxHeight())
|
|
|
|
{
|
|
|
|
m_TextLayout->SetMaxWidth(maxH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_TextLayout)
|
|
|
|
{
|
|
|
|
m_TextLayout->Release();
|
|
|
|
m_TextLayout = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
CanvasD2D::c_DW->CreateTextLayout(str, strLen, m_TextFormat, maxW, maxH, &m_TextLayout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-28 13:09:46 +00:00
|
|
|
void TextFormatD2D::SetProperties(const WCHAR* fontFamily, int size, bool bold, bool italic, Gdiplus::PrivateFontCollection* fontCollection)
|
2013-03-25 15:36:12 +00:00
|
|
|
{
|
|
|
|
Dispose();
|
|
|
|
|
|
|
|
HRESULT hr = CanvasD2D::c_DW->CreateTextFormat(
|
|
|
|
fontFamily,
|
|
|
|
nullptr,
|
|
|
|
bold ? DWRITE_FONT_WEIGHT_BOLD : DWRITE_FONT_WEIGHT_REGULAR,
|
|
|
|
italic ? DWRITE_FONT_STYLE_ITALIC : DWRITE_FONT_STYLE_NORMAL,
|
|
|
|
DWRITE_FONT_STRETCH_NORMAL,
|
|
|
|
size * (4.0f / 3.0f),
|
|
|
|
L"",
|
|
|
|
&m_TextFormat);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
CanvasD2D::c_DW->CreateEllipsisTrimmingSign(m_TextFormat, &m_InlineEllipsis);
|
|
|
|
|
|
|
|
SetHorizontalAlignment(GetHorizontalAlignment());
|
|
|
|
SetVerticalAlignment(GetVerticalAlignment());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextFormatD2D::SetTrimming(bool trim)
|
|
|
|
{
|
|
|
|
IDWriteInlineObject* inlineObject = nullptr;
|
|
|
|
DWRITE_TRIMMING trimming = {};
|
|
|
|
DWRITE_WORD_WRAPPING wordWrapping = DWRITE_WORD_WRAPPING_NO_WRAP;
|
|
|
|
if (trim)
|
|
|
|
{
|
|
|
|
inlineObject = m_InlineEllipsis;
|
|
|
|
trimming.granularity = DWRITE_TRIMMING_GRANULARITY_CHARACTER;
|
|
|
|
wordWrapping = DWRITE_WORD_WRAPPING_WRAP;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_TextFormat->SetTrimming(&trimming, inlineObject);
|
|
|
|
m_TextFormat->SetWordWrapping(wordWrapping);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextFormatD2D::SetHorizontalAlignment(HorizontalAlignment alignment)
|
|
|
|
{
|
|
|
|
__super::SetHorizontalAlignment(alignment);
|
|
|
|
|
|
|
|
if (m_TextFormat)
|
|
|
|
{
|
|
|
|
m_TextFormat->SetTextAlignment(
|
|
|
|
(alignment == HorizontalAlignment::Left) ? DWRITE_TEXT_ALIGNMENT_LEADING :
|
|
|
|
(alignment == HorizontalAlignment::Center) ? DWRITE_TEXT_ALIGNMENT_CENTER :
|
|
|
|
DWRITE_TEXT_ALIGNMENT_TRAILING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextFormatD2D::SetVerticalAlignment(VerticalAlignment alignment)
|
|
|
|
{
|
|
|
|
__super::SetVerticalAlignment(alignment);
|
|
|
|
|
|
|
|
if (m_TextFormat)
|
|
|
|
{
|
|
|
|
m_TextFormat->SetParagraphAlignment(
|
|
|
|
(alignment == VerticalAlignment::Top) ? DWRITE_PARAGRAPH_ALIGNMENT_NEAR :
|
|
|
|
(alignment == VerticalAlignment::Center) ? DWRITE_PARAGRAPH_ALIGNMENT_CENTER :
|
|
|
|
DWRITE_PARAGRAPH_ALIGNMENT_FAR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Gfx
|