rainmeter-studio/Library/TrayWindow.cpp

874 lines
23 KiB
C++
Raw Normal View History

2009-02-10 18:37:48 +00:00
/*
Copyright (C) 2004 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
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "StdAfx.h"
2009-02-10 18:37:48 +00:00
#include "TrayWindow.h"
#include "Measure.h"
#include "resource.h"
2009-02-10 18:37:48 +00:00
#include "Litestep.h"
#include "Rainmeter.h"
#include "AboutDialog.h"
#include "Error.h"
#include "RainmeterQuery.h"
#include "../Version.h"
2009-02-10 18:37:48 +00:00
#define TRAYTIMER 3
#define RAINMETER_OFFICIAL L"http://rainmeter.net/RainCMS/"
#define RAINMETER_MANUAL L"http://rainmeter.net/RainCMS/?q=Manual"
#define RAINMETER_MANUALBETA L"http://rainmeter.net/RainCMS/?q=ManualBeta"
#define RAINMETER_DOWNLOADS L"http://rainmeter.net/RainCMS/?q=Downloads"
const UINT WM_TASKBARCREATED = ::RegisterWindowMessage(L"TaskbarCreated");
2009-02-10 18:37:48 +00:00
extern CRainmeter* Rainmeter;
using namespace Gdiplus;
CTrayWindow::CTrayWindow(HINSTANCE instance) : m_Instance(instance),
m_TrayIcon(),
m_Measure(),
m_MeterType(TRAY_METER_TYPE_HISTOGRAM),
m_TrayColor1(0, 100, 0),
m_TrayColor2(0, 255, 0),
m_Bitmap(),
m_TrayValues(),
m_TrayPos(),
m_TrayIconEnabled(true)
2009-02-10 18:37:48 +00:00
{
WNDCLASS wc;
wc.style = 0;
wc.lpfnWndProc = (WNDPROC)WndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = instance;
2010-08-25 15:48:21 +00:00
wc.hIcon = LoadIcon(instance, MAKEINTRESOURCE(IDI_WINDOW));
2009-02-10 18:37:48 +00:00
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
2011-03-29 19:21:57 +00:00
wc.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
2009-02-10 18:37:48 +00:00
wc.lpszMenuName = NULL;
wc.lpszClassName = L"RainmeterTrayClass";
RegisterClass(&wc);
2011-03-29 19:21:57 +00:00
2009-02-10 18:37:48 +00:00
m_Window = CreateWindowEx(
WS_EX_TOOLWINDOW,
L"RainmeterTrayClass",
NULL,
WS_POPUP,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
NULL,
NULL,
instance,
this);
#ifndef _WIN64
SetWindowLong(m_Window, GWL_USERDATA, magicDWord);
#endif
SetWindowPos(m_Window, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOSENDCHANGING);
2009-02-10 18:37:48 +00:00
}
CTrayWindow::~CTrayWindow()
{
KillTimer(m_Window, TRAYTIMER);
RemoveTrayIcon();
delete m_Bitmap;
delete m_Measure;
2009-02-10 18:37:48 +00:00
2011-03-29 19:21:57 +00:00
for (size_t i = 0, isize = m_TrayIcons.size(); i < isize; ++i)
2009-02-10 18:37:48 +00:00
{
DestroyIcon(m_TrayIcons[i]);
}
m_TrayIcons.clear();
if (m_Window) DestroyWindow(m_Window);
}
2011-03-29 19:21:57 +00:00
BOOL CTrayWindow::AddTrayIcon()
{
BOOL res = FALSE;
2009-02-10 18:37:48 +00:00
if (m_TrayIcon)
{
DestroyIcon(m_TrayIcon);
m_TrayIcon = NULL;
}
m_TrayIcon = CreateTrayIcon(0);
if (m_TrayIcon)
{
2010-11-25 22:00:34 +00:00
NOTIFYICONDATA tnid = {sizeof(NOTIFYICONDATA)};
2011-03-29 19:21:57 +00:00
tnid.hWnd = m_Window;
2009-02-10 18:37:48 +00:00
tnid.uID = IDI_TRAY;
2011-03-29 19:21:57 +00:00
tnid.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;
tnid.uCallbackMessage = WM_TRAY_NOTIFYICON;
2009-02-10 18:37:48 +00:00
tnid.hIcon = m_TrayIcon;
2011-03-29 19:21:57 +00:00
wcsncpy_s(tnid.szTip, L"Rainmeter", _TRUNCATE);
res = Shell_NotifyIcon(NIM_ADD, &tnid);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
return res;
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
BOOL CTrayWindow::RemoveTrayIcon()
{
BOOL res = FALSE;
2009-02-10 18:37:48 +00:00
if (m_TrayIcon)
{
2010-11-25 22:00:34 +00:00
NOTIFYICONDATA tnid = {sizeof(NOTIFYICONDATA)};
2011-03-29 19:21:57 +00:00
tnid.hWnd = m_Window;
tnid.uID = IDI_TRAY;
tnid.uFlags = 0;
2009-02-10 18:37:48 +00:00
res = Shell_NotifyIcon(NIM_DELETE, &tnid);
DestroyIcon(m_TrayIcon);
m_TrayIcon = NULL;
}
2011-03-29 19:21:57 +00:00
return res;
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
BOOL CTrayWindow::ModifyTrayIcon(double value)
{
BOOL res = FALSE;
2009-02-10 18:37:48 +00:00
if (m_TrayIcon)
{
DestroyIcon(m_TrayIcon);
m_TrayIcon = NULL;
}
m_TrayIcon = CreateTrayIcon(value);
2011-03-29 19:21:57 +00:00
2010-11-25 22:00:34 +00:00
NOTIFYICONDATA tnid = {sizeof(NOTIFYICONDATA)};
2011-03-29 19:21:57 +00:00
tnid.hWnd = m_Window;
2009-02-10 18:37:48 +00:00
tnid.uID = IDI_TRAY;
2011-03-29 19:21:57 +00:00
tnid.uFlags = NIF_ICON;
2009-02-10 18:37:48 +00:00
tnid.hIcon = m_TrayIcon;
2011-03-29 19:21:57 +00:00
res = Shell_NotifyIcon(NIM_MODIFY, &tnid);
return res;
2009-02-10 18:37:48 +00:00
}
HICON CTrayWindow::CreateTrayIcon(double value)
{
if (m_Measure != NULL)
2009-02-10 18:37:48 +00:00
{
2011-03-29 19:21:57 +00:00
if (m_MeterType == TRAY_METER_TYPE_HISTOGRAM)
2009-02-10 18:37:48 +00:00
{
m_TrayValues[m_TrayPos] = value;
m_TrayPos = (m_TrayPos + 1) % TRAYICON_SIZE;
Bitmap trayBitmap(TRAYICON_SIZE, TRAYICON_SIZE);
Graphics graphics(&trayBitmap);
graphics.SetSmoothingMode(SmoothingModeAntiAlias);
Point points[TRAYICON_SIZE + 2];
points[0].X = 0;
points[0].Y = TRAYICON_SIZE;
points[TRAYICON_SIZE + 1].X = TRAYICON_SIZE - 1;
points[TRAYICON_SIZE + 1].Y = TRAYICON_SIZE;
2010-03-30 22:37:05 +00:00
for (int i = 0; i < TRAYICON_SIZE; ++i)
2009-02-10 18:37:48 +00:00
{
points[i + 1].X = i;
points[i + 1].Y = (int)(TRAYICON_SIZE * (1.0 - m_TrayValues[(m_TrayPos + i) % TRAYICON_SIZE]));
}
SolidBrush brush(m_TrayColor1);
graphics.FillRectangle(&brush, 0, 0, TRAYICON_SIZE, TRAYICON_SIZE);
SolidBrush brush2(m_TrayColor2);
graphics.FillPolygon(&brush2, points, TRAYICON_SIZE + 2);
HICON icon;
trayBitmap.GetHICON(&icon);
return icon;
}
2011-03-29 19:21:57 +00:00
else if (m_MeterType == TRAY_METER_TYPE_BITMAP && (m_Bitmap || m_TrayIcons.size() > 0))
2009-02-10 18:37:48 +00:00
{
2011-03-29 19:21:57 +00:00
if (m_TrayIcons.size() > 0)
2009-02-10 18:37:48 +00:00
{
size_t frame = 0;
size_t frameCount = m_TrayIcons.size();
// Select the correct frame linearly
frame = (size_t)(value * frameCount);
frame = min((frameCount - 1), frame);
return CopyIcon(m_TrayIcons[frame]);
}
else
{
int frame = 0;
int frameCount = 0;
int newX, newY;
2011-03-29 19:21:57 +00:00
if (m_Bitmap->GetWidth() > m_Bitmap->GetHeight())
2009-02-10 18:37:48 +00:00
{
frameCount = m_Bitmap->GetWidth() / TRAYICON_SIZE;
}
else
{
frameCount = m_Bitmap->GetHeight() / TRAYICON_SIZE;
}
// Select the correct frame linearly
frame = (int)(value * frameCount);
frame = min((frameCount - 1), frame);
2011-03-29 19:21:57 +00:00
if (m_Bitmap->GetWidth() > m_Bitmap->GetHeight())
2009-02-10 18:37:48 +00:00
{
newX = frame * TRAYICON_SIZE;
newY = 0;
}
else
{
newX = 0;
newY = frame * TRAYICON_SIZE;
}
Bitmap trayBitmap(TRAYICON_SIZE, TRAYICON_SIZE);
Graphics graphics(&trayBitmap);
graphics.SetSmoothingMode(SmoothingModeAntiAlias);
// Blit the image
Rect r(0, 0, TRAYICON_SIZE, TRAYICON_SIZE);
graphics.DrawImage(m_Bitmap, r, newX, newY, TRAYICON_SIZE, TRAYICON_SIZE, UnitPixel);
2011-03-29 19:21:57 +00:00
2009-02-10 18:37:48 +00:00
HICON icon;
trayBitmap.GetHICON(&icon);
return icon;
}
}
}
// Return the default icon if there is no valid measure
return LoadIcon(m_Instance, MAKEINTRESOURCE(IDI_TRAY));
2009-02-10 18:37:48 +00:00
}
void CTrayWindow::ReadConfig(CConfigParser& parser)
{
2010-12-21 04:49:01 +00:00
KillTimer(m_Window, TRAYTIMER);
delete m_Measure;
m_Measure = NULL;
2011-03-29 19:21:57 +00:00
for (size_t i = 0, isize = m_TrayIcons.size(); i < isize; ++i)
2009-02-10 18:37:48 +00:00
{
DestroyIcon(m_TrayIcons[i]);
}
m_TrayIcons.clear();
std::wstring measureName = parser.ReadString(L"TrayMeasure", L"Measure", L"");
if (!measureName.empty())
{
CConfigParser* oldParser = Rainmeter->GetCurrentParser();
Rainmeter->SetCurrentParser(&parser);
try
{
2011-02-15 16:26:54 +00:00
m_Measure = CMeasure::Create(measureName.c_str(), NULL, L"TrayMeasure");
if (m_Measure)
{
2011-02-15 16:26:54 +00:00
m_Measure->ReadConfig(parser);
}
}
catch (CError& error)
{
delete m_Measure;
m_Measure = NULL;
MessageBox(m_Window, error.GetString().c_str(), APPNAME, MB_OK | MB_TOPMOST | MB_ICONEXCLAMATION);
}
Rainmeter->SetCurrentParser(oldParser);
2009-02-10 18:37:48 +00:00
}
m_MeterType = TRAY_METER_TYPE_NONE;
std::wstring type = parser.ReadString(L"TrayMeasure", L"TrayMeter", L"HISTOGRAM");
2011-03-29 19:21:57 +00:00
if (_wcsicmp(type.c_str(), L"HISTOGRAM") == 0)
2009-02-10 18:37:48 +00:00
{
m_MeterType = TRAY_METER_TYPE_HISTOGRAM;
m_TrayColor1 = parser.ReadColor(L"TrayMeasure", L"TrayColor1", Color(0, 100, 0));
m_TrayColor2 = parser.ReadColor(L"TrayMeasure", L"TrayColor2", Color(0, 255, 0));
}
2011-03-29 19:21:57 +00:00
else if (_wcsicmp(type.c_str(), L"BITMAP") == 0)
2009-02-10 18:37:48 +00:00
{
m_MeterType = TRAY_METER_TYPE_BITMAP;
std::wstring imageName = parser.ReadString(L"TrayMeasure", L"TrayBitmap", L"");
// Load the bitmaps if defined
if (!imageName.empty())
{
2010-11-25 22:00:34 +00:00
imageName.insert(0, Rainmeter->GetSkinPath());
2011-03-29 19:21:57 +00:00
if (imageName.size() > 3)
2009-02-10 18:37:48 +00:00
{
std::wstring extension = imageName.substr(imageName.size() - 3);
2011-03-29 19:21:57 +00:00
if (extension == L"ico" || extension == L"ICO")
2009-02-10 18:37:48 +00:00
{
int count = 1;
HICON hIcon = NULL;
// Load the icons
2011-03-29 19:21:57 +00:00
do
2009-02-10 18:37:48 +00:00
{
WCHAR buffer[MAX_PATH];
_snwprintf_s(buffer, _TRUNCATE, imageName.c_str(), count++);
2009-02-10 18:37:48 +00:00
hIcon = (HICON)LoadImage(NULL, buffer, IMAGE_ICON, TRAYICON_SIZE, TRAYICON_SIZE, LR_LOADFROMFILE);
if (hIcon) m_TrayIcons.push_back(hIcon);
if (imageName == buffer) break;
} while(hIcon != NULL);
}
}
2011-03-29 19:21:57 +00:00
if (m_TrayIcons.empty())
2009-02-10 18:37:48 +00:00
{
// No icons found so load as bitmap
delete m_Bitmap;
2009-02-10 18:37:48 +00:00
m_Bitmap = new Bitmap(imageName.c_str());
Status status = m_Bitmap->GetLastStatus();
2011-03-29 19:21:57 +00:00
if (Ok != status)
2009-02-10 18:37:48 +00:00
{
LogWithArgs(LOG_WARNING, L"Bitmap image not found: %s", imageName.c_str());
2009-02-10 18:37:48 +00:00
delete m_Bitmap;
m_Bitmap = NULL;
}
}
}
}
else
{
LogWithArgs(LOG_ERROR, L"No such TrayMeter: %s", type.c_str());
2009-02-10 18:37:48 +00:00
}
m_TrayIconEnabled = 0!=parser.ReadInt(L"Rainmeter", L"TrayIcon", 1);
if (m_TrayIconEnabled)
2009-02-10 18:37:48 +00:00
{
AddTrayIcon();
2010-12-21 04:49:01 +00:00
if (m_Measure)
{
SetTimer(m_Window, TRAYTIMER, 1000, NULL); // Update the tray once per sec
}
2009-02-10 18:37:48 +00:00
}
else
{
RemoveTrayIcon();
}
2009-02-10 18:37:48 +00:00
}
LRESULT CALLBACK CTrayWindow::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
static CTrayWindow* tray = NULL;
2011-03-29 19:21:57 +00:00
if (uMsg == WM_CREATE)
2009-02-10 18:37:48 +00:00
{
tray=(CTrayWindow*)((LPCREATESTRUCT)lParam)->lpCreateParams;
}
else if (uMsg == WM_TASKBARCREATED)
{
if (tray && tray->IsTrayIconEnabled())
{
tray->RemoveTrayIcon();
tray->AddTrayIcon();
}
}
2009-02-10 18:37:48 +00:00
2011-03-29 19:21:57 +00:00
switch(uMsg)
2009-02-10 18:37:48 +00:00
{
case WM_COMMAND:
if (Rainmeter && tray)
{
if (wParam == ID_CONTEXT_ABOUT)
2009-02-10 18:37:48 +00:00
{
OpenAboutDialog(tray->GetWindow(), Rainmeter->GetInstance());
2011-03-29 19:21:57 +00:00
}
else if (wParam == ID_CONTEXT_DOWNLOADS)
{
LSExecute(NULL, RAINMETER_DOWNLOADS, SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_SHOW_HELP)
2009-02-10 18:37:48 +00:00
{
LSExecute(NULL, revision_beta ? RAINMETER_MANUALBETA : RAINMETER_MANUAL, SW_SHOWNORMAL);
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_NEW_VERSION)
{
LSExecute(NULL, RAINMETER_OFFICIAL, SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_REFRESH)
2009-02-10 18:37:48 +00:00
{
PostMessage(tray->GetWindow(), WM_TRAY_DELAYED_REFRESH_ALL, (WPARAM)NULL, (LPARAM)NULL);
2011-03-29 19:21:57 +00:00
}
else if (wParam == ID_CONTEXT_SHOWLOGFILE)
2009-02-10 18:37:48 +00:00
{
// Check if the file exists
2010-11-25 22:00:34 +00:00
const std::wstring& log = Rainmeter->GetLogFile();
2009-02-10 18:37:48 +00:00
if (_waccess(log.c_str(), 0) != -1)
{
std::wstring command = Rainmeter->GetLogViewer();
2009-02-10 18:37:48 +00:00
command += log;
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_STARTLOG)
{
Rainmeter->StartLogging();
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_STOPLOG)
{
Rainmeter->StopLogging();
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_DELETELOGFILE)
{
Rainmeter->DeleteLogFile();
2009-02-10 18:37:48 +00:00
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_DEBUGLOG)
{
Rainmeter->SetDebug(!CRainmeter::GetDebug());
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_DISABLEDRAG)
{
Rainmeter->SetDisableDragging(!Rainmeter->GetDisableDragging());
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_EDITCONFIG)
2009-02-10 18:37:48 +00:00
{
2010-11-25 22:00:34 +00:00
std::wstring command = Rainmeter->GetConfigEditor() + L" \"";
2009-02-10 18:37:48 +00:00
command += Rainmeter->GetIniFile();
command += L"\"";
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_MANAGETHEMES)
{
2010-11-25 22:00:34 +00:00
std::wstring command = L"\"" + Rainmeter->GetAddonPath();
command += L"RainThemes\\RainThemes.exe\"";
2009-02-10 18:37:48 +00:00
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_MANAGESKINS)
{
2010-11-25 22:00:34 +00:00
std::wstring command = L"\"" + Rainmeter->GetAddonPath();
command += L"RainBrowser\\RainBrowser.exe\"";
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_QUIT)
2009-02-10 18:37:48 +00:00
{
if (Rainmeter->GetDummyLitestep()) PostQuitMessage(0);
quitModule(Rainmeter->GetInstance());
}
2011-03-29 19:21:57 +00:00
else if (wParam == ID_CONTEXT_OPENSKINSFOLDER)
{
2010-11-25 22:00:34 +00:00
std::wstring command = L"\"" + Rainmeter->GetSkinPath();
command += L"\"";
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
2011-03-29 19:21:57 +00:00
else if ((wParam & 0x0ffff) >= ID_THEME_FIRST && (wParam & 0x0ffff) <= ID_THEME_LAST)
{
int pos = (wParam & 0x0ffff) - ID_THEME_FIRST;
const std::vector<std::wstring>& themes = Rainmeter->GetAllThemes();
if (pos >= 0 && pos < (int)themes.size())
{
2010-11-25 22:00:34 +00:00
std::wstring command = L"\"" + Rainmeter->GetAddonPath();
command += L"RainThemes\\RainThemes.exe\" /load \"";
command += themes[pos];
command += L"\"";
LSExecute(tray->GetWindow(), command.c_str(), SW_SHOWNORMAL);
}
}
2011-03-29 19:21:57 +00:00
else if ((wParam & 0x0ffff) >= ID_CONFIG_FIRST && (wParam & 0x0ffff) <= ID_CONFIG_LAST)
2009-02-10 18:37:48 +00:00
{
wParam = wParam & 0x0ffff;
// Check which config was selected
const std::vector<CRainmeter::CONFIG>& configs = Rainmeter->GetAllConfigs();
for (int i = 0, isize = (int)configs.size(); i < isize; ++i)
2009-02-10 18:37:48 +00:00
{
for (int j = 0, jsize = (int)configs[i].commands.size(); j < jsize; ++j)
2009-02-10 18:37:48 +00:00
{
if (configs[i].commands[j] == wParam)
{
if (configs[i].active == j + 1)
{
CMeterWindow* meterWindow = Rainmeter->GetMeterWindow(configs[i].config);
Rainmeter->DeactivateConfig(meterWindow, i);
}
else
{
Rainmeter->ActivateConfig(i, j);
}
return 0;
}
}
}
}
else
{
// Forward the message to correct window
int index = (int)(wParam >> 16);
2011-01-24 10:15:05 +00:00
const std::map<std::wstring, CMeterWindow*>& windows = Rainmeter->GetAllMeterWindows();
2009-02-10 18:37:48 +00:00
2009-02-14 10:11:28 +00:00
if (index < (int)windows.size())
2009-02-10 18:37:48 +00:00
{
2010-03-30 22:37:05 +00:00
std::map<std::wstring, CMeterWindow*>::const_iterator iter = windows.begin();
2011-03-29 19:21:57 +00:00
for ( ; iter != windows.end(); ++iter)
2009-02-10 18:37:48 +00:00
{
2010-03-30 22:37:05 +00:00
--index;
2009-02-10 18:37:48 +00:00
if (index < 0)
{
CMeterWindow* meterWindow = (*iter).second;
SendMessage(meterWindow->GetWindow(), WM_COMMAND, wParam & 0x0FFFF, NULL);
break;
}
}
}
}
}
return 0; // Don't send WM_COMMANDS any further
case WM_TRAY_NOTIFYICON:
2009-02-10 18:37:48 +00:00
{
2011-03-29 19:21:57 +00:00
UINT uMouseMsg = (UINT)lParam;
2009-02-10 18:37:48 +00:00
std::wstring bang;
2011-03-29 19:21:57 +00:00
switch(uMouseMsg)
2009-02-10 18:37:48 +00:00
{
case WM_LBUTTONDOWN:
bang = Rainmeter->GetTrayExecuteL();
break;
case WM_MBUTTONDOWN:
bang = Rainmeter->GetTrayExecuteM();
break;
case WM_RBUTTONDOWN:
bang = Rainmeter->GetTrayExecuteR();
break;
case WM_LBUTTONDBLCLK:
bang = Rainmeter->GetTrayExecuteDL();
break;
case WM_MBUTTONDBLCLK:
bang = Rainmeter->GetTrayExecuteDM();
break;
case WM_RBUTTONDBLCLK:
bang = Rainmeter->GetTrayExecuteDR();
break;
}
if (!bang.empty())
{
Rainmeter->ExecuteCommand(bang.c_str(), NULL);
2009-02-10 18:37:48 +00:00
}
else if (uMouseMsg == WM_RBUTTONDOWN)
{
POINT point;
GetCursorPos(&point);
Rainmeter->ShowContextMenu(point, NULL);
}
}
break;
case WM_QUERY_RAINMETER:
if (Rainmeter && IsWindow((HWND)lParam))
{
2010-11-25 22:00:34 +00:00
COPYDATASTRUCT cds;
2011-03-29 19:21:57 +00:00
if (wParam == RAINMETER_QUERY_ID_SKINS_PATH)
{
2010-11-25 22:00:34 +00:00
const std::wstring& path = Rainmeter->GetSkinPath();
cds.dwData = RAINMETER_QUERY_ID_SKINS_PATH;
cds.cbData = (DWORD)((path.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) path.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
2011-03-29 19:21:57 +00:00
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_SETTINGS_PATH)
{
std::wstring path = Rainmeter->GetSettingsPath();
cds.dwData = RAINMETER_QUERY_ID_SETTINGS_PATH;
cds.cbData = (DWORD)((path.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) path.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_PLUGINS_PATH)
{
2010-11-25 22:00:34 +00:00
const std::wstring& path = Rainmeter->GetPluginPath();
cds.dwData = RAINMETER_QUERY_ID_PLUGINS_PATH;
cds.cbData = (DWORD)((path.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) path.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_PROGRAM_PATH)
{
2010-11-25 22:00:34 +00:00
const std::wstring& path = Rainmeter->GetPath();
cds.dwData = RAINMETER_QUERY_ID_PROGRAM_PATH;
cds.cbData = (DWORD)((path.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) path.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_LOG_PATH)
{
2010-11-25 22:00:34 +00:00
const std::wstring& path = Rainmeter->GetLogFile();
cds.dwData = RAINMETER_QUERY_ID_LOG_PATH;
cds.cbData = (DWORD)((path.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) path.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_CONFIG_EDITOR)
{
2010-11-25 22:00:34 +00:00
const std::wstring& editor = Rainmeter->GetConfigEditor();
cds.dwData = RAINMETER_QUERY_ID_CONFIG_EDITOR;
cds.cbData = (DWORD)((editor.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) editor.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_COMMAND_LINE)
{
std::wstring commandline = Rainmeter->GetCommandLine();
cds.dwData = RAINMETER_QUERY_ID_COMMAND_LINE;
cds.cbData = (DWORD)((commandline.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) commandline.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_VERSION_CHECK)
{
UINT versioncheck = (Rainmeter->GetDisableVersionCheck() * (Rainmeter->GetDisableVersionCheck() + Rainmeter->GetNewVersion()));
2011-03-29 19:21:57 +00:00
SendMessage((HWND)lParam, WM_QUERY_RAINMETER_RETURN, (WPARAM)hWnd, (LPARAM) versioncheck);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_IS_DEBUGGING)
{
BOOL debug = Rainmeter->GetDebug();
SendMessage((HWND)lParam, WM_QUERY_RAINMETER_RETURN, (WPARAM)hWnd, (LPARAM) debug);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_STATS_DATE)
{
2010-11-25 22:00:34 +00:00
const std::wstring& date = Rainmeter->GetStatsDate();
cds.dwData = RAINMETER_QUERY_ID_STATS_DATE;
cds.cbData = (DWORD)((date.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) date.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_L)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteL();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_L;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_R)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteR();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_R;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_M)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteM();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_M;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_DL)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteDL();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_DL;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_DR)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteDR();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_DR;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_TRAY_EX_DM)
{
2010-11-25 22:00:34 +00:00
const std::wstring& tray = Rainmeter->GetTrayExecuteDM();
cds.dwData = RAINMETER_QUERY_ID_TRAY_EX_DM;
cds.cbData = (DWORD)((tray.size() + 1) * sizeof(wchar_t));
cds.lpData = (LPVOID) tray.c_str();
SendMessage((HWND)lParam, WM_COPYDATA, (WPARAM)hWnd, (LPARAM)&cds);
return 0;
}
2011-03-29 19:21:57 +00:00
else if (wParam == RAINMETER_QUERY_ID_IS_LITESTEP)
{
BOOL islitestep = !Rainmeter->GetDummyLitestep();
SendMessage((HWND)lParam, WM_QUERY_RAINMETER_RETURN, (WPARAM)hWnd, (LPARAM) islitestep);
return 0;
}
}
return 1;
case WM_COPYDATA:
2011-03-29 19:21:57 +00:00
if (Rainmeter)
{
COPYDATASTRUCT *cds = (COPYDATASTRUCT*) lParam;
2011-03-29 19:21:57 +00:00
if (cds->dwData == RAINMETER_QUERY_ID_SKIN_WINDOWHANDLE)
{
std::wstring SkinName((LPTSTR) cds->lpData);
std::map<std::wstring, CMeterWindow*> MeterWindows = Rainmeter->GetAllMeterWindows();
std::map<std::wstring, CMeterWindow*>::const_iterator iter = MeterWindows.find(SkinName);
2011-03-29 19:21:57 +00:00
if (iter != MeterWindows.end())
{
return (LRESULT) iter->second->GetWindow();
}
2011-03-29 19:21:57 +00:00
return NULL;
}
}
return 1;
2009-02-10 18:37:48 +00:00
case WM_TIMER:
if (tray && tray->m_Measure)
{
tray->m_Measure->Update();
tray->ModifyTrayIcon(tray->m_Measure->GetRelativeValue());
}
break;
case WM_TRAY_DELAYED_REFRESH_ALL:
if (Rainmeter)
{
// Refresh all
Rainmeter->RefreshAll();
}
return 0;
case WM_TRAY_DELAYED_EXECUTE:
if (Rainmeter && lParam)
{
// Execute bang
WCHAR* bang = (WCHAR*)lParam;
Rainmeter->ExecuteCommand(bang, NULL);
free(bang); // _wcsdup()
}
return 0;
2009-02-10 18:37:48 +00:00
case WM_DESTROY:
if (Rainmeter->GetDummyLitestep()) PostQuitMessage(0);
break;
case LM_GETREVID:
2011-03-29 19:21:57 +00:00
if (lParam != NULL)
2009-02-10 18:37:48 +00:00
{
char* Buffer = (char*)lParam;
if (wParam == 0)
2009-02-10 18:37:48 +00:00
{
sprintf(Buffer, "Rainmeter.dll: %s", APPVERSION);
2011-03-29 19:21:57 +00:00
}
else if (wParam == 1)
2009-02-10 18:37:48 +00:00
{
sprintf(Buffer, "Rainmeter.dll: %s %s, Rainy", APPVERSION, __DATE__);
2011-03-29 19:21:57 +00:00
}
2009-02-10 18:37:48 +00:00
else
{
Buffer[0] = 0;
}
return strlen(Buffer);
}
return 0;
}
return DefWindowProc(hWnd, uMsg, wParam, lParam);
}