mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Added DisableDrag=1/0 to lock skins into position.
Added DisableRDP=1/0 to disable redraw during RDP session (thanks to FUR10N for the code). Minor changes to the installer and Rainstaller.
This commit is contained in:
@ -135,7 +135,6 @@ public:
|
||||
std::wstring message;
|
||||
};
|
||||
|
||||
|
||||
CRainmeter();
|
||||
~CRainmeter();
|
||||
|
||||
@ -196,6 +195,11 @@ public:
|
||||
void StopLogging();
|
||||
void DeleteLogFile();
|
||||
|
||||
bool GetDisableRDP() { return m_DisableRDP; }
|
||||
|
||||
bool GetDisableDrag() { return m_DisableDrag; }
|
||||
void SetDisableDrag(bool drag);
|
||||
|
||||
void AddAboutLogInfo(const LOG_INFO& logInfo);
|
||||
const std::list<LOG_INFO>& GetAboutLogData() { return m_LogData; }
|
||||
|
||||
@ -279,6 +283,10 @@ private:
|
||||
|
||||
bool m_MenuActive;
|
||||
|
||||
bool m_DisableRDP;
|
||||
|
||||
bool m_DisableDrag;
|
||||
|
||||
bool m_Logging;
|
||||
|
||||
std::list<LOG_INFO> m_LogData;
|
||||
|
Reference in New Issue
Block a user