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:
Birunthan Mohanathas
2010-11-24 15:34:07 +00:00
parent 72da30c565
commit 1f3a04e54e
5 changed files with 46 additions and 6 deletions

View File

@ -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;