summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_multimedia.h
blob: 3dd5ad475b18de81b7a2479123312be17d3f51b6 (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
#ifndef _TOX_MULTIMEDIA_H_
#define _TOX_MULTIMEDIA_H_

class CToxAudioCall : public CToxDlgBase
{
private:
	int callId;

	CCtrlButton ok;
	CCtrlButton cancel;

protected:
	void OnInitDialog();
	void OnOk(CCtrlBase*);
	void OnCancel(CCtrlBase*);
	void OnClose();

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

public:
	CToxAudioCall(CToxProto *proto, int callId);
};

#endif //_TOX_MULTIMEDIA_H_