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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RM_GFX_CANVASD2D_H_
|
|
|
|
#define RM_GFX_CANVASD2D_H_
|
|
|
|
|
|
|
|
#include "Canvas.h"
|
2013-04-09 17:35:49 +00:00
|
|
|
#include "FontCollectionD2D.h"
|
2013-03-25 15:36:12 +00:00
|
|
|
#include "TextFormatD2D.h"
|
2013-04-12 14:09:42 +00:00
|
|
|
#include "Util/WICBitmapDIB.h"
|
2013-03-25 15:36:12 +00:00
|
|
|
#include <string>
|
|
|
|
#include <GdiPlus.h>
|
|
|
|
#include <d2d1.h>
|
|
|
|
#include <d2d1helper.h>
|
|
|
|
#include <dwrite.h>
|
|
|
|
#include <wincodec.h>
|
|
|
|
|
|
|
|
namespace Gfx {
|
|
|
|
|
|
|
|
// Provides a Direct2D/DirectWrite implementation of Canvas.
|
|
|
|
class CanvasD2D : public Canvas
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CanvasD2D();
|
|
|
|
~CanvasD2D();
|
|
|
|
|
|
|
|
virtual void Resize(int w, int h);
|
|
|
|
|
|
|
|
virtual bool BeginDraw();
|
|
|
|
virtual void EndDraw();
|
|
|
|
|
|
|
|
virtual Gdiplus::Graphics& BeginGdiplusContext() override;
|
|
|
|
virtual void EndGdiplusContext() override;
|
|
|
|
|
|
|
|
virtual HDC GetDC() override;
|
|
|
|
virtual void ReleaseDC(HDC dc) override;
|
2013-04-09 17:35:49 +00:00
|
|
|
|
|
|
|
virtual FontCollection* CreateFontCollection() override { return new FontCollectionD2D(); }
|
2013-03-25 15:36:12 +00:00
|
|
|
virtual TextFormat* CreateTextFormat() override { return new TextFormatD2D(); }
|
|
|
|
|
|
|
|
virtual bool IsTransparentPixel(int x, int y) override;
|
|
|
|
|
2013-04-05 08:35:20 +00:00
|
|
|
virtual void SetTransform(const Gdiplus::Matrix& matrix) override;
|
|
|
|
virtual void ResetTransform() override;
|
|
|
|
virtual void RotateTransform(float angle, float x, float y, float dx, float dy) override;
|
|
|
|
|
2013-03-25 15:36:12 +00:00
|
|
|
virtual void SetAntiAliasing(bool enable) override;
|
|
|
|
virtual void SetTextAntiAliasing(bool enable) override;
|
|
|
|
|
|
|
|
virtual void Clear(const Gdiplus::Color& color) override;
|
|
|
|
|
|
|
|
virtual void DrawTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, const Gdiplus::SolidBrush& brush) override;
|
|
|
|
virtual bool MeasureTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect) override;
|
|
|
|
virtual bool MeasureTextLinesW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, UINT& lines) override;
|
|
|
|
|
|
|
|
virtual void DrawBitmap(Gdiplus::Bitmap* bitmap, const Gdiplus::Rect& dstRect, const Gdiplus::Rect& srcRect) override;
|
|
|
|
|
|
|
|
virtual void FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& brush) override;
|
|
|
|
|
|
|
|
private:
|
2013-04-12 14:05:21 +00:00
|
|
|
friend class FontCollectionD2D;
|
2013-03-25 15:36:12 +00:00
|
|
|
friend class TextFormatD2D;
|
|
|
|
|
|
|
|
CanvasD2D(const CanvasD2D& other) {}
|
|
|
|
|
|
|
|
static bool Initialize();
|
|
|
|
static void Finalize();
|
|
|
|
|
2013-03-27 16:14:27 +00:00
|
|
|
void Dispose();
|
2013-03-25 15:36:12 +00:00
|
|
|
|
2013-03-26 19:29:05 +00:00
|
|
|
bool BeginTargetDraw();
|
2013-03-25 15:36:12 +00:00
|
|
|
void EndTargetDraw();
|
|
|
|
|
2013-04-05 08:35:20 +00:00
|
|
|
// Retrieves current GDI+ transform (if any) and converts to a D2D Matrix
|
2013-04-08 14:21:47 +00:00
|
|
|
D2D1_MATRIX_3X2_F GetCurrentTransform();
|
2013-04-05 08:35:20 +00:00
|
|
|
|
2013-03-25 15:36:12 +00:00
|
|
|
ID2D1RenderTarget* m_Target;
|
2013-04-12 14:09:42 +00:00
|
|
|
Util::WICBitmapDIB m_Bitmap;
|
2013-03-25 15:36:12 +00:00
|
|
|
|
|
|
|
// GDI+ objects that share the pixel data of m_Bitmap.
|
|
|
|
Gdiplus::Graphics* m_GdipGraphics;
|
|
|
|
Gdiplus::Bitmap* m_GdipBitmap;
|
|
|
|
|
2013-03-26 19:29:05 +00:00
|
|
|
bool m_TextAntiAliasing;
|
2013-03-25 15:36:12 +00:00
|
|
|
|
|
|
|
static UINT c_Instances;
|
2013-04-07 11:32:41 +00:00
|
|
|
static ID2D1Factory* c_D2DFactory;
|
|
|
|
static IDWriteFactory* c_DWFactory;
|
2013-04-07 11:30:50 +00:00
|
|
|
static IDWriteGdiInterop* c_DWGDIInterop;
|
2013-04-07 11:32:41 +00:00
|
|
|
static IWICImagingFactory* c_WICFactory;
|
2013-03-25 15:36:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Gfx
|
|
|
|
|
|
|
|
#endif
|