mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
- Added "Group" option to Measure/Meter to operate Measures/Meters in bulk.
Usage: Group=group1 | group2 | group3 * Concatenate group with the "|" if you'd like to assign multiple groups. - Added !Bangs for Group. (!RainmeterShowMeterGroup, !RainmeterHideMeterGroup, !RainmeterToggleMeterGroup, !RainmeterEnableMeasureGroup, !RainmeterDisableMeasureGroup, !RainmeterToggleMeasureGroup) Usage: !RainmeterShowMeterGroup [group] (Config) !RainmeterHideMeterGroup [group] (Config) !RainmeterToggleMeterGroup [group] (Config) !RainmeterEnableMeasureGroup [group] (Config) !RainmeterDisableMeasureGroup [group] (Config) !RainmeterToggleMeasureGroup [group] (Config) - Modified logging feature. Added new "Logging" menu to the context menu. - Added the manifest to Rainmeter.exe to apply visual style to button etc.
This commit is contained in:
@ -137,6 +137,7 @@ public:
|
||||
std::wstring GetSettingsPath() { return ExtractPath(m_IniFile); };
|
||||
|
||||
const std::wstring& GetConfigEditor() { return m_ConfigEditor; };
|
||||
const std::wstring& GetLogViewer() { return m_LogViewer; };
|
||||
const std::wstring& GetStatsDate() { return m_StatsDate; };
|
||||
|
||||
HINSTANCE GetInstance() { return m_Instance; };
|
||||
@ -146,6 +147,7 @@ public:
|
||||
static void SetCommandLine(LPCTSTR CmdLine) { c_CmdLine = CmdLine;};
|
||||
static LPCTSTR GetCommandLine() { return c_CmdLine.c_str(); };
|
||||
static GlobalConfig& GetGlobalConfig() { return c_GlobalConfig; };
|
||||
|
||||
static bool GetDebug() { return c_Debug; }
|
||||
|
||||
void ReloadSettings();
|
||||
@ -160,7 +162,10 @@ public:
|
||||
BOOL GetNewVersion() { return m_NewVersion; };
|
||||
void SetDisableVersionCheck(BOOL check) { m_DisableVersionCheck = check; };
|
||||
void SetNewVersion(BOOL NewVer) { m_NewVersion = NewVer; };
|
||||
|
||||
|
||||
void SetLogging(bool logging);
|
||||
bool GetLogging() { return m_Logging; }
|
||||
void SetDebug(bool debug);
|
||||
|
||||
void ShowContextMenu(POINT pos, CMeterWindow* meterWindow);
|
||||
|
||||
@ -233,7 +238,10 @@ private:
|
||||
BOOL m_DesktopWorkAreaChanged;
|
||||
RECT m_DesktopWorkArea;
|
||||
|
||||
bool m_Logging;
|
||||
|
||||
std::wstring m_ConfigEditor;
|
||||
std::wstring m_LogViewer;
|
||||
|
||||
CConfigParser* m_CurrentParser;
|
||||
|
||||
|
Reference in New Issue
Block a user