diff options
author | George Hazan <george.hazan@gmail.com> | 2023-09-26 12:20:03 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-09-26 12:20:03 +0300 |
commit | b6669f0ee3361891e9807e5c734bf9121e9cfb06 (patch) | |
tree | 89f4662ee0f9b743126b213354820fd1671a5657 /include | |
parent | 82228dfaa3f7c387ff1f42e1698c4d68fe8e1335 (diff) |
SRMM options update unification
Diffstat (limited to 'include')
-rw-r--r-- | include/m_srmm_int.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index 67059a625f..29d99e69e0 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -339,6 +339,7 @@ public: virtual bool GetFirstEvent() = 0;
virtual bool IsActive() const = 0;
virtual void LoadSettings() = 0;
+ virtual void OnOptionsApplied() = 0;
virtual void RemakeLog() = 0;
virtual void SetStatusText(const wchar_t *, HICON) {}
virtual void ShowFilterMenu() {}
@@ -374,6 +375,11 @@ class CMsgDialog : public CSrmmBaseDialog {}; MIR_APP_DLL(void) Srmm_AddEvent(MCONTACT hContact, MEVENT hDbEvent);
/////////////////////////////////////////////////////////////////////////////////////////
+// tell all SRMM windows that options were changed
+
+MIR_APP_DLL(void) Srmm_ApplyOptions();
+
+/////////////////////////////////////////////////////////////////////////////////////////
// sends a message to all SRMM windows
MIR_APP_DLL(void) Srmm_Broadcast(UINT, WPARAM, LPARAM);
|