rainmeter-studio/Library/System.h

115 lines
3.8 KiB
C
Raw Normal View History

/*
Copyright (C) 2010 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 __RAINMETER_SYSTEM_H__
#define __RAINMETER_SYSTEM_H__
#include <windows.h>
#include <vector>
#include "../Common/Platform.h"
2012-06-01 13:13:01 +00:00
struct MonitorInfo
{
bool active;
HMONITOR handle;
RECT screen;
RECT work;
2012-05-20 17:57:12 +00:00
std::wstring deviceName; // Device name (E.g. "\\.\DISPLAY1")
std::wstring monitorName; // Monitor name (E.g. "Generic Non-PnP Monitor")
};
2012-06-01 13:13:01 +00:00
struct MultiMonitorInfo
{
2012-05-20 17:57:12 +00:00
bool useEnumDisplayDevices; // If true, use EnumDisplayDevices function to obtain the multi-monitor information
bool useEnumDisplayMonitors; // If true, use EnumDisplayMonitors function to obtain the multi-monitor information
2012-05-20 17:57:12 +00:00
int vsT, vsL, vsH, vsW; // Coordinates of the top-left corner (vsT,vsL) and size (vsH,vsW) of the virtual screen
int primary; // Index of the primary monitor
2012-06-01 13:13:01 +00:00
std::vector<MonitorInfo> monitors;
};
2013-05-31 14:18:52 +00:00
class System
{
public:
System(const System& other) = delete;
System& operator=(System other) = delete;
static void Initialize(HINSTANCE instance);
static void Finalize();
2012-06-01 13:13:01 +00:00
static const MultiMonitorInfo& GetMultiMonitorInfo() { return c_Monitors; }
static size_t GetMonitorCount();
static bool GetShowDesktop() { return c_ShowDesktop; }
static HWND GetWindow() { return c_Window; }
static HWND GetBackmostTopWindow();
static HWND GetHelperWindow() { return c_HelperWindow; }
2011-08-13 10:03:16 +00:00
static void PrepareHelperWindow(HWND WorkerW = GetWorkerW());
static ULONGLONG GetTickCount64();
static POINT GetCursorPosition();
2011-11-08 19:02:31 +00:00
static bool IsFileWritable(LPCWSTR file);
2013-05-31 14:28:39 +00:00
static HMODULE RmLoadLibrary(LPCWSTR lpLibFileName, DWORD* dwError = nullptr);
static void ResetWorkingDirectory();
static void InitializeCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
2011-05-22 16:02:43 +00:00
static void SetClipboardText(const std::wstring& text);
static void SetWallpaper(const std::wstring& wallpaper, const std::wstring& style);
2012-05-30 05:10:12 +00:00
static bool CopyFiles(std::wstring from, std::wstring to, bool bMove = false);
static bool RemoveFile(const std::wstring& file);
2012-06-10 10:14:49 +00:00
static bool RemoveFolder(std::wstring folder);
2011-11-10 13:44:19 +00:00
static void UpdateIniFileMappingList();
static std::wstring GetTemporaryFile(const std::wstring& iniFile);
private:
static void CALLBACK MyWinEventProc(HWINEVENTHOOK hWinEventHook, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD dwEventThread, DWORD dwmsEventTime);
static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
static void SetMultiMonitorInfo();
static void ClearMultiMonitorInfo() { c_Monitors.monitors.clear(); }
static void UpdateWorkareaInfo();
static HWND GetDefaultShellWindow();
2011-08-13 10:03:16 +00:00
static HWND GetWorkerW();
static void ChangeZPosInOrder();
static bool CheckDesktopState(HWND WorkerW);
static bool BelongToSameProcess(HWND hwndA, HWND hwndB);
static HWND c_Window;
static HWND c_HelperWindow;
static HWINEVENTHOOK c_WinEventHook;
2012-06-01 13:13:01 +00:00
static MultiMonitorInfo c_Monitors;
static bool c_ShowDesktop;
2011-05-22 16:02:43 +00:00
static std::wstring c_WorkingDirectory;
2011-11-10 13:44:19 +00:00
static std::vector<std::wstring> c_IniFileMappings;
};
#endif