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 "CanvasGDIP.h"
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
CanvasGDIP::CanvasGDIP() : Canvas(),
|
2013-05-01 11:38:52 +00:00
|
|
|
m_DIBSection(),
|
|
|
|
m_DIBSectionPixels()
|
2013-03-25 15:36:12 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CanvasGDIP::~CanvasGDIP()
|
|
|
|
{
|
2013-03-27 16:14:27 +00:00
|
|
|
Dispose();
|
2013-03-25 15:36:12 +00:00
|
|
|
}
|
|
|
|
|
2013-03-27 16:14:27 +00:00
|
|
|
void CanvasGDIP::Dispose()
|
2013-03-25 15:36:12 +00:00
|
|
|
{
|
2013-05-01 11:38:52 +00:00
|
|
|
if (m_DIBSection)
|
2013-03-25 15:36:12 +00:00
|
|
|
{
|
2013-05-01 11:38:52 +00:00
|
|
|
DeleteObject(m_DIBSection);
|
|
|
|
m_DIBSection = nullptr;
|
|
|
|
m_DIBSectionPixels = nullptr;
|
2013-03-25 15:36:12 +00:00
|
|
|
}
|
2013-03-27 16:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::Resize(int w, int h)
|
|
|
|
{
|
|
|
|
__super::Resize(w, h);
|
|
|
|
|
|
|
|
Dispose();
|
2013-03-25 15:36:12 +00:00
|
|
|
|
|
|
|
BITMAPV4HEADER bh = {sizeof(BITMAPV4HEADER)};
|
|
|
|
bh.bV4Width = w;
|
|
|
|
bh.bV4Height = -h; // Top-down DIB
|
|
|
|
bh.bV4Planes = 1;
|
|
|
|
bh.bV4BitCount = 32;
|
|
|
|
bh.bV4V4Compression = BI_BITFIELDS;
|
|
|
|
bh.bV4RedMask = 0x00FF0000;
|
|
|
|
bh.bV4GreenMask = 0x0000FF00;
|
|
|
|
bh.bV4BlueMask = 0x000000FF;
|
|
|
|
bh.bV4AlphaMask = 0xFF000000;
|
|
|
|
|
2013-05-01 11:38:52 +00:00
|
|
|
m_DIBSection = CreateDIBSection(
|
2013-03-25 15:36:12 +00:00
|
|
|
nullptr,
|
|
|
|
(BITMAPINFO*)&bh,
|
|
|
|
DIB_RGB_COLORS,
|
2013-05-01 11:38:52 +00:00
|
|
|
(void**)&m_DIBSectionPixels,
|
2013-03-25 15:36:12 +00:00
|
|
|
nullptr,
|
|
|
|
0);
|
|
|
|
|
|
|
|
// Create GDI+ bitmap from the DIBSection pixels
|
2013-05-01 11:38:52 +00:00
|
|
|
m_Bitmap.reset(new Gdiplus::Bitmap(w, h, w * 4, PixelFormat32bppPARGB, (BYTE*)m_DIBSectionPixels));
|
|
|
|
m_Graphics.reset(new Gdiplus::Graphics(m_Bitmap.get()));
|
2013-03-25 15:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CanvasGDIP::BeginDraw()
|
|
|
|
{
|
|
|
|
m_Graphics->SetInterpolationMode(Gdiplus::InterpolationModeDefault);
|
|
|
|
m_Graphics->SetCompositingQuality(Gdiplus::CompositingQualityDefault);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::EndDraw()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Gdiplus::Graphics& CanvasGDIP::BeginGdiplusContext()
|
|
|
|
{
|
|
|
|
return *m_Graphics;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::EndGdiplusContext()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HDC CanvasGDIP::GetDC()
|
|
|
|
{
|
|
|
|
HDC dcMemory = CreateCompatibleDC(nullptr);
|
2013-05-01 11:38:52 +00:00
|
|
|
SelectObject(dcMemory, m_DIBSection);
|
2013-03-25 15:36:12 +00:00
|
|
|
return dcMemory;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::ReleaseDC(HDC dc)
|
|
|
|
{
|
|
|
|
DeleteDC(dc);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CanvasGDIP::IsTransparentPixel(int x, int y)
|
|
|
|
{
|
2013-05-01 11:38:52 +00:00
|
|
|
if (m_DIBSectionPixels && x >= 0 && y >= 0 && x < m_W && y < m_H)
|
2013-03-25 15:36:12 +00:00
|
|
|
{
|
2013-05-01 11:38:52 +00:00
|
|
|
DWORD pixel = m_DIBSectionPixels[y * m_W + x]; // top-down DIB
|
2013-03-25 15:36:12 +00:00
|
|
|
return ((pixel & 0xFF000000) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-29 11:33:11 +00:00
|
|
|
void CanvasGDIP::SetTransform(const Gdiplus::Matrix& matrix)
|
|
|
|
{
|
|
|
|
m_Graphics->SetTransform(&matrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::ResetTransform()
|
|
|
|
{
|
|
|
|
m_Graphics->ResetTransform();
|
|
|
|
}
|
|
|
|
|
2013-04-05 08:35:20 +00:00
|
|
|
void CanvasGDIP::RotateTransform(float angle, float x, float y, float dx, float dy)
|
2013-03-29 11:33:11 +00:00
|
|
|
{
|
2013-04-05 08:35:20 +00:00
|
|
|
m_Graphics->TranslateTransform(x, y);
|
2013-03-29 11:33:11 +00:00
|
|
|
m_Graphics->RotateTransform(angle);
|
|
|
|
m_Graphics->TranslateTransform(dx, dy);
|
|
|
|
}
|
|
|
|
|
2013-03-25 15:36:12 +00:00
|
|
|
void CanvasGDIP::SetAntiAliasing(bool enable)
|
|
|
|
{
|
|
|
|
m_Graphics->SetSmoothingMode(
|
|
|
|
enable ? Gdiplus::SmoothingModeHighQuality : Gdiplus::SmoothingModeNone);
|
|
|
|
m_Graphics->SetPixelOffsetMode(
|
|
|
|
enable ? Gdiplus::PixelOffsetModeHighQuality : Gdiplus::PixelOffsetModeDefault);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::SetTextAntiAliasing(bool enable)
|
|
|
|
{
|
|
|
|
m_Graphics->SetTextRenderingHint(
|
|
|
|
enable ? Gdiplus::TextRenderingHintAntiAlias : Gdiplus::TextRenderingHintSingleBitPerPixelGridFit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::Clear(const Gdiplus::Color& color)
|
|
|
|
{
|
|
|
|
if (color.GetValue() == 0x00000000)
|
|
|
|
{
|
2013-05-01 11:38:52 +00:00
|
|
|
memset(m_DIBSectionPixels, 0, m_W * m_H * 4);
|
2013-03-25 15:36:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Graphics->Clear(color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::DrawTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, const Gdiplus::SolidBrush& brush)
|
|
|
|
{
|
|
|
|
Gdiplus::StringFormat& stringFormat = ((TextFormatGDIP&)format).m_StringFormat;
|
2013-05-01 11:38:52 +00:00
|
|
|
m_Graphics->DrawString(
|
|
|
|
str, (INT)strLen, ((TextFormatGDIP&)format).m_Font.get(), rect, &stringFormat, &brush);
|
2013-03-25 15:36:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CanvasGDIP::MeasureTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect)
|
|
|
|
{
|
|
|
|
Gdiplus::StringFormat& stringFormat = ((TextFormatGDIP&)format).m_StringFormat;
|
2013-05-01 11:38:52 +00:00
|
|
|
const Gdiplus::Status status = m_Graphics->MeasureString(
|
|
|
|
str, (INT)strLen, ((TextFormatGDIP&)format).m_Font.get(), rect, &stringFormat, &rect);
|
2013-03-25 15:36:12 +00:00
|
|
|
return status == Gdiplus::Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CanvasGDIP::MeasureTextLinesW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, UINT& lines)
|
|
|
|
{
|
|
|
|
Gdiplus::StringFormat& stringFormat = ((TextFormatGDIP&)format).m_StringFormat;
|
|
|
|
|
|
|
|
// Set trimming and format temporarily.
|
|
|
|
const Gdiplus::StringTrimming stringTrimming = stringFormat.GetTrimming();
|
|
|
|
stringFormat.SetTrimming(Gdiplus::StringTrimmingNone);
|
|
|
|
|
|
|
|
const INT stringFormatFlags = stringFormat.GetFormatFlags();
|
2013-07-13 16:16:35 +00:00
|
|
|
stringFormat.SetFormatFlags(Gdiplus::StringFormatFlagsMeasureTrailingSpaces | Gdiplus::StringFormatFlagsNoClip);
|
2013-03-25 15:36:12 +00:00
|
|
|
|
|
|
|
INT linesFilled = 0;
|
2013-05-01 11:38:52 +00:00
|
|
|
const Gdiplus::Status status = m_Graphics->MeasureString(
|
|
|
|
str, (INT)strLen, ((TextFormatGDIP&)format).m_Font.get(), rect, &stringFormat, &rect, nullptr, &linesFilled);
|
2013-03-25 15:36:12 +00:00
|
|
|
lines = linesFilled;
|
|
|
|
|
|
|
|
// Restore old options.
|
|
|
|
stringFormat.SetTrimming(stringTrimming);
|
|
|
|
stringFormat.SetFormatFlags(stringFormatFlags);
|
|
|
|
|
|
|
|
return status == Gdiplus::Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::DrawBitmap(Gdiplus::Bitmap* bitmap, const Gdiplus::Rect& dstRect, const Gdiplus::Rect& srcRect)
|
|
|
|
{
|
|
|
|
m_Graphics->DrawImage(bitmap, dstRect, srcRect.X, srcRect.Y, srcRect.Width, srcRect.Height, Gdiplus::UnitPixel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CanvasGDIP::FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& brush)
|
|
|
|
{
|
|
|
|
m_Graphics->FillRectangle(&brush, rect);
|
|
|
|
}
|
|
|
|
|
2013-04-05 21:07:51 +00:00
|
|
|
} // namespace Gfx
|