mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
0b3a4d86c4
The D2D implementation is a stub for now.
91 lines
3.3 KiB
C++
91 lines
3.3 KiB
C++
/*
|
|
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_CANVAS_H_
|
|
#define RM_GFX_CANVAS_H_
|
|
|
|
#include "FontCollection.h"
|
|
#include "TextFormat.h"
|
|
#include <Windows.h>
|
|
#include <GdiPlus.h>
|
|
|
|
namespace Gfx {
|
|
|
|
class __declspec(novtable) Canvas
|
|
{
|
|
public:
|
|
virtual ~Canvas();
|
|
|
|
int GetW() const { return m_W; }
|
|
int GetH() const { return m_H; }
|
|
|
|
virtual void Resize(int w, int h);
|
|
|
|
// BeginDraw() must be matched by a corresponding call to EndDraw(). Drawing functions must be
|
|
// be called only between BeginDraw() and EndDraw().
|
|
virtual bool BeginDraw() = 0;
|
|
virtual void EndDraw() = 0;
|
|
|
|
// Allows the use of Gdiplus::Graphics to perform drawing. Must be called between BeginDraw()
|
|
// and EndDraw(). BeginGdiplusGraphicsContext() must be matched by a corresponding call to
|
|
// EndGdiplusGraphicsContext(). While in the Gdiplus context, non-const member functions of
|
|
// this class must not be called.
|
|
virtual Gdiplus::Graphics& BeginGdiplusContext() = 0;
|
|
virtual void EndGdiplusContext() = 0;
|
|
|
|
// Returns a read-only DC. Must be called between BeginDraw() and EndDraw(). GetDC() must be
|
|
// matched by a corresponding call to ReleaseDC(). While in the Gdiplus context, non-const
|
|
// member functions of this class must not be called.
|
|
virtual HDC GetDC() = 0;
|
|
virtual void ReleaseDC(HDC dc) = 0;
|
|
|
|
virtual FontCollection* CreateFontCollection() = 0;
|
|
virtual TextFormat* CreateTextFormat() = 0;
|
|
|
|
virtual bool IsTransparentPixel(int x, int y) = 0;
|
|
|
|
virtual void SetTransform(const Gdiplus::Matrix& matrix) = 0;
|
|
virtual void ResetTransform() = 0;
|
|
virtual void RotateTransform(float angle, float x, float y, float dx, float dy) = 0;
|
|
|
|
virtual void SetAntiAliasing(bool enable) = 0;
|
|
virtual void SetTextAntiAliasing(bool enable) = 0;
|
|
|
|
virtual void Clear(const Gdiplus::Color& color = Gdiplus::Color(0, 0, 0, 0)) = 0;
|
|
|
|
virtual void DrawTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, const Gdiplus::SolidBrush& brush) = 0;
|
|
virtual bool MeasureTextW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect) = 0;
|
|
virtual bool MeasureTextLinesW(const WCHAR* str, UINT strLen, const TextFormat& format, Gdiplus::RectF& rect, UINT& lines) = 0;
|
|
|
|
virtual void DrawBitmap(Gdiplus::Bitmap* bitmap, const Gdiplus::Rect& dstRect, const Gdiplus::Rect& srcRect) = 0;
|
|
|
|
virtual void FillRectangle(Gdiplus::Rect& rect, const Gdiplus::SolidBrush& brush) = 0;
|
|
|
|
protected:
|
|
Canvas();
|
|
|
|
int m_W;
|
|
int m_H;
|
|
|
|
private:
|
|
Canvas(const Canvas& other) {}
|
|
};
|
|
|
|
} // namespace Gfx
|
|
|
|
#endif |