summaryrefslogtreecommitdiff
path: root/plugins/Scriver/src/msgs.h
blob: d98d8709ffb7eacb0821ae9369b6276482020710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
Scriver

Copyright (c) 2000-12 Miranda ICQ/IM project,

all portions of this codebase are copyrighted to the people
listed in contributors.txt.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/
#ifndef SRMM_MSGS_H
#define SRMM_MSGS_H

/////////////////////////////////////////////////////////////////////////////////////////

#define MSGERROR_CANCEL	0
#define MSGERROR_RETRY	1
#define MSGERROR_DONE	2

struct ToolbarButton
{
	wchar_t *name;
	UINT controlId;
	int alignment;
	int spacing;
	int width;
};

#define NMWLP_INCOMING 1

class CMsgDialog : public CSrmmBaseDialog
{
	typedef CSrmmBaseDialog CSuper;

	friend class CLogWindow;
	friend struct ParentWindowData;
	friend INT_PTR CALLBACK InfobarWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);

	void   ClearLog(void);
	HICON  GetTabIcon(void);
	void   GetTitlebarIcon(struct TitleBarData *tbd);
	int    InputAreaShortcuts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
	void   MessageDialogResize(int w, int h);
	void   MessageSend(const SendQueue::Item &msg);
	void   ShowAvatar(void);
	void   SetDialogToType(void);
	void   SetStatusIcon(void);
	void   ToggleRtl();
	void   UpdateIcon(void);
	void   UpdateReadChars(void);

	bool   IsTypingNotificationEnabled(void);
	bool   IsTypingNotificationSupported(void);
	void   NotifyTyping(int mode);

	static INT_PTR CALLBACK FilterWndProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);

	bool   m_bIncoming = false, m_bWindowCascaded;

	MEVENT m_hDbUnreadEventFirst;
	int    m_minLogBoxHeight, m_minEditBoxHeight;
	int    m_iShowUnread;
	uint16_t   m_wStatus;
	uint32_t  m_lastMessage;
	int    m_iMessagesInProgress;
	int    m_iSendAllConfirm;
	HICON  m_hStatusIcon, m_hStatusIconBig, m_hStatusIconOverlay;

	char  *m_szProto;
	bool   m_bUseRtl;

	HBITMAP m_hbmpAvatarPic;
	AVATARCACHEENTRY *m_ace;

	TCmdList *cmdList, *cmdListCurrent;
	ParentWindowData *m_pParent;

	// info bar support
	HWND   m_hwndInfo;
	HWND   m_hXStatusTip;

	void   CreateInfobar();
	void   SetupInfobar();
	void   RefreshInfobar();

	// autocomplete
	void   TabAutoComplete(void);
	wchar_t *m_wszSearchQuery, *m_wszSearchResult;
	SESSION_INFO *m_pLastSession;

	CCtrlButton m_btnAdd, m_btnUserMenu, m_btnQuote, m_btnDetails;
	CSplitter m_splitterX, m_splitterY;

public:
	CMsgDialog(MCONTACT hContact, bool);

	bool OnInitDialog() override;
	void OnDestroy() override;

	INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override;

	void onClick_Ok(CCtrlButton *);
	void onClick_Add(CCtrlButton *);
	void onClick_Filter(CCtrlButton *);
	void onClick_Details(CCtrlButton *);
	void onClick_Quote(CCtrlButton *);
	void onClick_UserMenu(CCtrlButton *);
	void onClick_ShowList(CCtrlButton *);

	void onChange_Message(CCtrlEdit *);

	void onChange_SplitterX(CSplitter *);
	void onChange_SplitterY(CSplitter *);

	void onType(CTimer *);

	void CloseTab() override;
	void DrawNickList(USERINFO *ui, DRAWITEMSTRUCT *dis) override;
	void EventAdded(MEVENT, const DB::EventInfo &dbei) override;
	bool GetFirstEvent() override;
	void GetInputFont(LOGFONTW &lf, COLORREF &bg, COLORREF &fg) const override;
	void LoadSettings() override;
	void OnOptionsApplied() override;
	void SetStatusText(const wchar_t *, HICON) override;
	void ShowFilterMenu() override;
	void UpdateFilterButton() override;
	void UpdateStatusBar() override;
	void UpdateTitle() override;

	void HandleError(bool bRetry, SendQueue::Item *pItem);
	void ShowError(const wchar_t *pwszMsg, SendQueue::Item *pItem);

	void FixTabIcons();
	void GetAvatar();
	void SwitchTyping(void);
	void UpdateTabControl(void);
	void UserIsTyping(int iState);

	void StartMessageSending(void);
	void StopMessageSending(void);
	void ShowMessageSending(void);
	
	LRESULT WndProc_Message(UINT msg, WPARAM wParam, LPARAM lParam) override;
	LRESULT WndProc_Nicklist(UINT msg, WPARAM wParam, LPARAM lParam) override;

	__forceinline bool IsActive() const {
		return GetActiveWindow() == m_hwndParent && GetForegroundWindow() == m_hwndParent && m_pParent->m_hwndActive == m_hwnd;
	}

	__forceinline void PopupWindow(bool bIncoming = false) {
		m_pParent->PopupWindow(this, bIncoming);
	}

	__forceinline void StartFlashing() const {
		m_pParent->StartFlashing();
	}

	wchar_t *m_wszInitialText;

	void Reattach(HWND hwndContainer);
};

#define HM_ACKEVENT            (WM_USER+11)

#define DM_REMAKELOG           (WM_USER+12)
#define DM_CASCADENEWWINDOW    (WM_USER+13)
#define DM_OPTIONSAPPLIED      (WM_USER+14)
#define DM_CHANGEICONS         (WM_USER+24)

#define DM_STATUSICONCHANGE    (WM_USER+56)

#define DM_AVATARCHANGED       (WM_USER+64)

#define EM_SUBCLASSED          (WM_USER+0x101)
#define EM_UNSUBCLASSED        (WM_USER+0x102)

#define EVENTTYPE_JABBER_CHATSTATES	2000
#define EVENTTYPE_JABBER_PRESENCE	2001

bool DbEventIsShown(const DB::EventInfo &dbei);
void LoadMsgLogIcons(void);
void FreeMsgLogIcons(void);
int IsAutoPopup(MCONTACT hContact);

#define MSGFONTID_MYMSG           0
#define MSGFONTID_YOURMSG         1
#define MSGFONTID_MYNAME          2
#define MSGFONTID_MYTIME          3
#define MSGFONTID_MYCOLON         4
#define MSGFONTID_YOURNAME        5
#define MSGFONTID_YOURTIME        6
#define MSGFONTID_YOURCOLON       7
#define MSGFONTID_MESSAGEAREA     8
#define MSGFONTID_NOTICE          9
#define MSGFONTID_INFOBAR_NAME   10
#define MSGFONTID_INFOBAR_STATUS 11

void LoadMsgDlgFont(int i, LOGFONT *lf, COLORREF *colour);
extern int fontOptionsListSize;

#define LOADHISTORY_UNREAD		0
#define LOADHISTORY_COUNT		1
#define LOADHISTORY_TIME		2

#define SRMM_MODULE						"SRMM"

#define SRMSGSET_BKGCOLOUR				"BkgColour"
#define SRMSGDEFSET_BKGCOLOUR			GetSysColor(COLOR_WINDOW)
#define SRMSGSET_INPUTBKGCOLOUR			"InputBkgColour"
#define SRMSGDEFSET_INPUTBKGCOLOUR		GetSysColor(COLOR_WINDOW)
#define SRMSGSET_INCOMINGBKGCOLOUR		"IncomingBkgColour"
#define SRMSGDEFSET_INCOMINGBKGCOLOUR	GetSysColor(COLOR_WINDOW)
#define SRMSGSET_OUTGOINGBKGCOLOUR		"OutgoingBkgColour"
#define SRMSGDEFSET_OUTGOINGBKGCOLOUR	GetSysColor(COLOR_WINDOW)
#define SRMSGSET_INFOBARBKGCOLOUR		"InfobarBkgColour"
#define SRMSGDEFSET_INFOBARBKGCOLOUR	GetSysColor(COLOR_3DLIGHT)
#define SRMSGSET_LINECOLOUR				"LineColour"
#define SRMSGDEFSET_LINECOLOUR			GetSysColor(COLOR_WINDOW)

#define SRMSGSET_TYPING				"SupportTyping"

#define SRMSGSET_WINDOWTITLE		"WindowTitle"

#define SRMSGSET_SENDMODE "SendMode"
#define SRMSGDEFSET_SENDMODE 0

#endif