diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-03 15:47:12 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-03 15:47:12 +0300 |
commit | 0805744c4b2f73149d27f5fbadb767d3d5bd50b1 (patch) | |
tree | fed632071267b83ece5bb710c2c1f08d9c477cba /include/m_srmm_int.h | |
parent | 6936e530d411a5d516e13e86022fb064dd342f77 (diff) |
SRMM: quote panel
Diffstat (limited to 'include/m_srmm_int.h')
-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 a21098ea32..58ecb1ed7d 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -311,6 +311,7 @@ protected: CCtrlRichEdit m_message;
SESSION_INFO *m_si;
COLORREF m_clrInputBG, m_clrInputFG;
+ MEVENT m_hQuoteEvent = 0;
// user typing support;
uint32_t m_nLastTyping = 0;
@@ -322,6 +323,9 @@ protected: int m_iNickSearch = -1;
CMStringW m_wszNickSearch;
+ CCtrlBase m_Quote;
+ CCtrlMButton m_btnCloseQuote;
+
CCtrlButton m_btnColor, m_btnBkColor, m_btnOk;
CCtrlButton m_btnBold, m_btnItalic, m_btnUnderline;
CCtrlButton m_btnHistory, m_btnChannelMgr, m_btnNickList, m_btnFilter;
@@ -332,6 +336,7 @@ protected: void onClick_ChanMgr(CCtrlButton *);
void onClick_History(CCtrlButton *);
+ void onClick_CloseQuote(CCtrlButton *);
void onDblClick_List(CCtrlListBox *);
@@ -350,6 +355,7 @@ public: void RedrawLog();
void ScheduleRedrawLog();
void SetMessageText(const wchar_t *pwszText, bool bAppend = true);
+ void SetQuoteEvent(MEVENT hEvent);
void ShowColorChooser(int iCtrlId);
void UpdateChatOptions();
void UpdateNickList(void);
|