diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-10 23:27:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-10 23:27:21 +0300 |
commit | 432b115c1eaf6f74d7d4d8ac580f5de39c16a533 (patch) | |
tree | a2422374abc6cd0947fc265bcfb3c55a58a2694f /plugins/TabSRMM/src/msgs.h | |
parent | b9a3a98d6f2695a36ca27fa2d88e99fedd72cc98 (diff) |
more UI classes in tabSRMM window
Diffstat (limited to 'plugins/TabSRMM/src/msgs.h')
-rw-r--r-- | plugins/TabSRMM/src/msgs.h | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/plugins/TabSRMM/src/msgs.h b/plugins/TabSRMM/src/msgs.h index 64e9779e0c..1b7699b447 100644 --- a/plugins/TabSRMM/src/msgs.h +++ b/plugins/TabSRMM/src/msgs.h @@ -436,6 +436,8 @@ class CSrmmWindow : public CTabBaseDlg virtual CThumbBase* tabCreateThumb(CProxyWindow *pProxy) const override;
virtual void tabClearLog() override;
+ CCtrlButton m_btnOk, m_btnAdd, m_btnQuote, m_btnCancelAdd;
+
void MsgWindowUpdateState(UINT msg);
void ReplayQueue();
@@ -455,6 +457,15 @@ public: virtual INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;
+ void onClick_Ok(CCtrlButton*);
+ void onClick_Add(CCtrlButton*);
+ void onClick_Quote(CCtrlButton*);
+ void onClick_CancelAdd(CCtrlButton*);
+
+ void onChange_Message(CCtrlEdit*);
+
+ int OnFilter(MSGFILTER*);
+
void DM_OptionsApplied(WPARAM wParam, LPARAM lParam);
};
@@ -486,19 +497,19 @@ public: virtual INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;
- void OnClick_OK(CCtrlButton*);
- void OnClick_Filter(CCtrlButton*);
- void OnClick_History(CCtrlButton*);
- void OnClick_ChanMgr(CCtrlButton*);
- void OnClick_ShowNickList(CCtrlButton*);
+ void onClick_OK(CCtrlButton*);
+ void onClick_Filter(CCtrlButton*);
+ void onClick_History(CCtrlButton*);
+ void onClick_ChanMgr(CCtrlButton*);
+ void onClick_ShowNickList(CCtrlButton*);
- void OnClick_BIU(CCtrlButton*);
- void OnClick_Color(CCtrlButton*);
- void OnClick_BkColor(CCtrlButton*);
+ void onClick_BIU(CCtrlButton*);
+ void onClick_Color(CCtrlButton*);
+ void onClick_BkColor(CCtrlButton*);
- void OnChange_Message(CCtrlEdit*);
+ void onChange_Message(CCtrlEdit*);
- void OnDblClick_List(CCtrlListBox*);
+ void onDblClick_List(CCtrlListBox*);
void StreamInEvents(LOGINFO* lin, SESSION_INFO *si, bool bRedraw);
void UpdateWindowState(UINT msg);
|