2009-02-10 18:37:48 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2005 Kimmo Pekkola
|
|
|
|
|
|
|
|
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
|
2012-01-23 06:36:15 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-02-10 18:37:48 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-07 16:45:14 +00:00
|
|
|
#include "StdAfx.h"
|
2009-02-10 18:37:48 +00:00
|
|
|
#include "MeterButton.h"
|
|
|
|
#include "Measure.h"
|
|
|
|
#include "Rainmeter.h"
|
|
|
|
#include "Error.h"
|
|
|
|
|
|
|
|
extern CRainmeter* Rainmeter;
|
|
|
|
|
|
|
|
using namespace Gdiplus;
|
|
|
|
|
|
|
|
enum BUTTON_STATE
|
|
|
|
{
|
|
|
|
BUTTON_STATE_NORMAL,
|
|
|
|
BUTTON_STATE_DOWN,
|
|
|
|
BUTTON_STATE_HOVER
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** CMeterButton
|
|
|
|
**
|
|
|
|
** The constructor
|
|
|
|
**
|
|
|
|
*/
|
2011-02-15 16:26:54 +00:00
|
|
|
CMeterButton::CMeterButton(CMeterWindow* meterWindow, const WCHAR* name) : CMeter(meterWindow, name),
|
2011-02-07 09:38:27 +00:00
|
|
|
m_Image(L"ButtonImage", NULL, true),
|
2011-01-29 00:11:01 +00:00
|
|
|
m_NeedsReload(false),
|
|
|
|
m_Bitmaps(),
|
|
|
|
m_State(BUTTON_STATE_NORMAL),
|
|
|
|
m_Clicked(false),
|
2011-11-08 10:32:57 +00:00
|
|
|
m_Focus(false)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** ~CMeterButton
|
|
|
|
**
|
|
|
|
** The destructor
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
CMeterButton::~CMeterButton()
|
|
|
|
{
|
2010-03-30 22:37:05 +00:00
|
|
|
for (int i = 0; i < BUTTON_FRAMES; ++i)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-11-27 19:53:23 +00:00
|
|
|
delete m_Bitmaps[i];
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Initialize
|
|
|
|
**
|
|
|
|
** Load the image and get the dimensions of the meter from it.
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
void CMeterButton::Initialize()
|
|
|
|
{
|
|
|
|
CMeter::Initialize();
|
|
|
|
|
2010-11-27 19:53:23 +00:00
|
|
|
for (int i = 0; i < BUTTON_FRAMES; ++i)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
delete m_Bitmaps[i];
|
|
|
|
m_Bitmaps[i] = NULL;
|
2010-11-27 19:53:23 +00:00
|
|
|
}
|
2010-06-03 14:14:53 +00:00
|
|
|
|
2010-11-27 19:53:23 +00:00
|
|
|
// Load the bitmaps if defined
|
2011-03-29 19:21:57 +00:00
|
|
|
if (!m_ImageName.empty())
|
2010-11-27 19:53:23 +00:00
|
|
|
{
|
|
|
|
m_Image.LoadImage(m_ImageName, m_NeedsReload);
|
|
|
|
|
|
|
|
if (m_Image.IsLoaded())
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-11-27 19:53:23 +00:00
|
|
|
Bitmap* bitmap = m_Image.GetImage();
|
|
|
|
|
2011-11-08 10:32:57 +00:00
|
|
|
int bitmapW = bitmap->GetWidth();
|
|
|
|
int bitmapH = bitmap->GetHeight();
|
|
|
|
|
|
|
|
m_W = bitmapW;
|
|
|
|
m_H = bitmapH;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2011-03-29 19:21:57 +00:00
|
|
|
if (m_H > m_W)
|
2010-06-03 14:14:53 +00:00
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
m_H /= BUTTON_FRAMES;
|
2010-06-03 14:14:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
m_W /= BUTTON_FRAMES;
|
2010-06-03 14:14:53 +00:00
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-06-03 14:14:53 +00:00
|
|
|
// Separate the frames
|
|
|
|
for (int i = 0; i < BUTTON_FRAMES; ++i)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2011-01-06 01:44:09 +00:00
|
|
|
Bitmap bitmapPart(m_W, m_H, PixelFormat32bppPARGB);
|
2010-06-03 14:14:53 +00:00
|
|
|
Graphics graphics(&bitmapPart);
|
|
|
|
Rect r(0, 0, m_W, m_H);
|
|
|
|
|
2011-11-08 10:32:57 +00:00
|
|
|
if (bitmapH > bitmapW)
|
2010-06-03 14:14:53 +00:00
|
|
|
{
|
2010-11-27 19:53:23 +00:00
|
|
|
graphics.DrawImage(bitmap, r, 0, m_H * i, m_W, m_H, UnitPixel);
|
2010-06-03 14:14:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-27 19:53:23 +00:00
|
|
|
graphics.DrawImage(bitmap, r, m_W * i, 0, m_W, m_H, UnitPixel);
|
2010-06-03 14:14:53 +00:00
|
|
|
}
|
|
|
|
m_Bitmaps[i] = new CachedBitmap(&bitmapPart, &graphics);
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
2010-06-03 14:14:53 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-27 19:53:23 +00:00
|
|
|
else if (m_Image.IsLoaded())
|
2010-06-03 14:14:53 +00:00
|
|
|
{
|
2010-11-27 19:53:23 +00:00
|
|
|
m_Image.DisposeImage();
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** ReadConfig
|
|
|
|
**
|
|
|
|
** Read the meter-specific configs from the ini-file.
|
|
|
|
**
|
|
|
|
*/
|
2011-02-15 16:26:54 +00:00
|
|
|
void CMeterButton::ReadConfig(CConfigParser& parser, const WCHAR* section)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2009-09-07 20:00:50 +00:00
|
|
|
// Store the current values so we know if the image needs to be updated
|
|
|
|
std::wstring oldImageName = m_ImageName;
|
|
|
|
int oldW = m_W;
|
|
|
|
int oldH = m_H;
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
// Read common configs
|
2011-02-15 16:26:54 +00:00
|
|
|
CMeter::ReadConfig(parser, section);
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2009-09-04 16:37:51 +00:00
|
|
|
m_ImageName = parser.ReadString(section, L"ButtonImage", L"");
|
2010-11-25 22:00:34 +00:00
|
|
|
if (!m_ImageName.empty())
|
|
|
|
{
|
2011-11-28 14:13:20 +00:00
|
|
|
m_MeterWindow->MakePathAbsolute(m_ImageName);
|
2010-11-27 19:53:23 +00:00
|
|
|
|
|
|
|
// Read tinting configs
|
|
|
|
m_Image.ReadConfig(parser, section);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Image.ClearConfigFlags();
|
2010-11-25 22:00:34 +00:00
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2009-10-07 18:47:40 +00:00
|
|
|
m_Command = parser.ReadString(section, L"ButtonCommand", L"", false);
|
2009-09-07 20:00:50 +00:00
|
|
|
|
|
|
|
if (m_Initialized)
|
|
|
|
{
|
2011-11-27 08:30:39 +00:00
|
|
|
m_NeedsReload = (wcscmp(oldImageName.c_str(), m_ImageName.c_str()) != 0);
|
2010-11-27 19:53:23 +00:00
|
|
|
|
|
|
|
if (m_NeedsReload ||
|
|
|
|
m_Image.IsConfigsChanged())
|
2009-09-07 20:00:50 +00:00
|
|
|
{
|
|
|
|
Initialize(); // Reload the image
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Reset to old dimensions
|
|
|
|
m_W = oldW;
|
|
|
|
m_H = oldH;
|
|
|
|
}
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Update
|
|
|
|
**
|
|
|
|
** Updates the value(s) from the measures.
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
bool CMeterButton::Update()
|
|
|
|
{
|
|
|
|
return CMeter::Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Draw
|
|
|
|
**
|
|
|
|
** Draws the meter on the double buffer
|
|
|
|
**
|
|
|
|
*/
|
2009-07-27 11:48:57 +00:00
|
|
|
bool CMeterButton::Draw(Graphics& graphics)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2011-03-29 19:21:57 +00:00
|
|
|
if (!CMeter::Draw(graphics)) return false;
|
2009-02-10 18:37:48 +00:00
|
|
|
|
|
|
|
if (m_Bitmaps[m_State] == NULL) return false; // Unable to continue
|
|
|
|
|
|
|
|
int x = GetX();
|
|
|
|
int y = GetY();
|
|
|
|
|
|
|
|
// Blit the image
|
|
|
|
graphics.DrawCachedBitmap(m_Bitmaps[m_State], x, y);
|
2011-03-29 19:21:57 +00:00
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** BindMeasure
|
|
|
|
**
|
2009-07-24 08:19:01 +00:00
|
|
|
** Overridden method. The meters need not to be bound on anything
|
2009-02-10 18:37:48 +00:00
|
|
|
**
|
|
|
|
*/
|
2010-11-19 07:33:58 +00:00
|
|
|
void CMeterButton::BindMeasure(const std::list<CMeasure*>& measures)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2009-07-24 08:19:01 +00:00
|
|
|
// It's ok not to bind meter to anything
|
|
|
|
if (!m_MeasureName.empty())
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
CMeter::BindMeasure(measures);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
/*
|
|
|
|
** HitTest2
|
|
|
|
**
|
|
|
|
** Checks if the given point is inside the button.
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
bool CMeterButton::HitTest2(int px, int py, bool checkAlpha)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
int x = GetX();
|
|
|
|
int y = GetY();
|
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
if (m_MouseOver &&
|
|
|
|
px >= x && px < x + m_W &&
|
|
|
|
py >= y && py < y + m_H)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
if (checkAlpha)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2011-01-06 01:44:09 +00:00
|
|
|
if (m_SolidColor.GetA() != 0 || m_SolidColor2.GetA() != 0)
|
2010-08-03 15:10:42 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
|
2010-08-03 15:10:42 +00:00
|
|
|
// Check transparent pixels
|
2010-11-27 19:53:23 +00:00
|
|
|
if (m_Image.IsLoaded())
|
2010-08-03 15:10:42 +00:00
|
|
|
{
|
|
|
|
Color color;
|
2010-11-27 19:53:23 +00:00
|
|
|
Status status = m_Image.GetImage()->GetPixel(px - x + m_W * m_State, py - y, &color);
|
2011-01-06 01:44:09 +00:00
|
|
|
if (status != Ok || color.GetA() != 0)
|
2010-08-03 15:10:42 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
return true;
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-03 15:10:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-08 10:32:57 +00:00
|
|
|
bool CMeterButton::MouseUp(POINT pos, bool execute)
|
2010-08-03 15:10:42 +00:00
|
|
|
{
|
|
|
|
if (m_State == BUTTON_STATE_DOWN)
|
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
if (execute && m_Clicked && m_Focus && HitTest2(pos.x, pos.y, true))
|
2010-08-03 15:10:42 +00:00
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
Rainmeter->ExecuteCommand(m_Command.c_str(), m_MeterWindow);
|
2010-08-03 15:10:42 +00:00
|
|
|
}
|
2009-02-10 18:37:48 +00:00
|
|
|
m_State = BUTTON_STATE_NORMAL;
|
|
|
|
m_Clicked = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
m_Clicked = false;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMeterButton::MouseDown(POINT pos)
|
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
if (m_Focus && HitTest2(pos.x, pos.y, true))
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
m_State = BUTTON_STATE_DOWN;
|
|
|
|
m_Clicked = true;
|
|
|
|
return true;
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMeterButton::MouseMove(POINT pos)
|
|
|
|
{
|
2011-11-08 10:32:57 +00:00
|
|
|
if (m_Clicked)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
if (HitTest2(pos.x, pos.y, true))
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
if (m_State == BUTTON_STATE_NORMAL)
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
m_State = BUTTON_STATE_DOWN;
|
|
|
|
return true;
|
2009-02-10 18:37:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-08 04:35:04 +00:00
|
|
|
// If the left button is not down anymore the clicked state needs to be set false
|
|
|
|
if (!(GetKeyState(VK_LBUTTON) < 0))
|
2009-07-29 12:33:02 +00:00
|
|
|
{
|
|
|
|
m_Clicked = false;
|
|
|
|
}
|
|
|
|
|
2009-02-10 18:37:48 +00:00
|
|
|
if (m_State == BUTTON_STATE_DOWN)
|
|
|
|
{
|
|
|
|
m_State = BUTTON_STATE_NORMAL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-08-03 15:10:42 +00:00
|
|
|
if (HitTest2(pos.x, pos.y, false))
|
2009-02-10 18:37:48 +00:00
|
|
|
{
|
|
|
|
if (m_State == BUTTON_STATE_NORMAL)
|
|
|
|
{
|
|
|
|
m_State = BUTTON_STATE_HOVER;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (m_State == BUTTON_STATE_HOVER)
|
|
|
|
{
|
|
|
|
m_State = BUTTON_STATE_NORMAL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|