rainmeter-studio/Library/TintedImage.h

130 lines
3.6 KiB
C
Raw Normal View History

/*
Copyright (C) 2010 Kimmo Pekkola, Matt King, spx
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 __TINTEDIMAGE_H__
#define __TINTEDIMAGE_H__
#include <windows.h>
#include <gdiplus.h>
#include <string>
2011-02-07 09:38:27 +00:00
/*
** Helper macro to define an array of option names. A prefix must be given.
2011-02-07 09:38:27 +00:00
**
*/
2012-05-30 18:51:06 +00:00
#define CTintedImageHelper_DefineOptionArray(name, prefix) \
const WCHAR* (name)[CTintedImage::OptionCount] = { \
2011-02-07 09:38:27 +00:00
prefix L"ImageCrop", \
prefix L"Greyscale", \
prefix L"ImageTint", \
prefix L"ImageAlpha", \
prefix L"ColorMatrix1", \
prefix L"ColorMatrix2", \
prefix L"ColorMatrix3", \
prefix L"ColorMatrix4", \
prefix L"ColorMatrix5", \
prefix L"ImageFlip", \
prefix L"ImageRotate" \
};
class CConfigParser;
class CTintedImage
{
public:
2012-05-30 18:51:06 +00:00
enum OptionIndex
2011-02-07 09:38:27 +00:00
{
2012-05-30 18:51:06 +00:00
OptionIndexImageCrop = 0,
OptionIndexGreyscale,
OptionIndexImageTint,
OptionIndexImageAlpha,
OptionIndexColorMatrix1,
OptionIndexColorMatrix2,
OptionIndexColorMatrix3,
OptionIndexColorMatrix4,
OptionIndexColorMatrix5,
OptionIndexImageFlip,
OptionIndexImageRotate,
2011-02-07 09:38:27 +00:00
OptionCount
2011-02-07 09:38:27 +00:00
};
CTintedImage(const WCHAR* name = L"Image", const WCHAR** optionArray = c_DefaultOptionArray, bool disableTransform = false);
2011-11-12 16:20:41 +00:00
~CTintedImage();
2012-05-30 18:53:44 +00:00
void ReadOptions(CConfigParser& parser, const WCHAR* section);
bool IsLoaded() { return (m_Bitmap != NULL); }
bool IsTinted() { return (m_BitmapTint != NULL); }
2012-05-30 18:51:06 +00:00
bool IsOptionsChanged() { return m_NeedsCrop || m_NeedsTinting || m_NeedsTransform; }
void ClearOptionFlags() { m_NeedsCrop = m_NeedsTinting = m_NeedsTransform = false; }
Gdiplus::Bitmap* GetOriginalImage() { return m_Bitmap; }
Gdiplus::Bitmap* GetTintedImage() { return m_BitmapTint; }
Gdiplus::Bitmap* GetImage() { return (m_BitmapTint) ? m_BitmapTint : m_Bitmap; }
void DisposeImage();
void LoadImage(const std::wstring& imageName, bool bLoadAlways);
protected:
enum CROPMODE
{
CROPMODE_TL = 1,
CROPMODE_TR,
CROPMODE_BR,
CROPMODE_BL,
CROPMODE_C
};
void ApplyCrop();
void ApplyTint();
void ApplyTransform();
Gdiplus::Bitmap* LoadImageFromFileHandle(HANDLE fileHandle, DWORD fileSize, HGLOBAL* phBuffer);
static Gdiplus::Bitmap* TurnGreyscale(Gdiplus::Bitmap* source);
2011-02-07 09:38:27 +00:00
static bool CompareColorMatrix(const Gdiplus::ColorMatrix* a, const Gdiplus::ColorMatrix* b);
2012-05-20 17:57:12 +00:00
Gdiplus::Bitmap* m_Bitmap;
Gdiplus::Bitmap* m_BitmapTint; // Tinted bitmap
2012-05-30 18:51:06 +00:00
const WCHAR* m_Name;
const WCHAR** m_OptionArray;
const bool m_DisableTransform;
bool m_NeedsCrop;
bool m_NeedsTinting;
bool m_NeedsTransform;
Gdiplus::Rect m_Crop;
CROPMODE m_CropMode;
bool m_GreyScale;
2011-02-07 09:38:27 +00:00
Gdiplus::ColorMatrix* m_ColorMatrix;
Gdiplus::RotateFlipType m_Flip;
Gdiplus::REAL m_Rotate;
std::wstring m_CacheKey;
static const Gdiplus::ColorMatrix c_GreyScaleMatrix;
2011-11-01 04:56:46 +00:00
static const Gdiplus::ColorMatrix c_IdentityMatrix;
2011-02-07 09:38:27 +00:00
static const WCHAR* c_DefaultOptionArray[OptionCount];
};
#endif