summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/steam_options.h
blob: 86bd7a183ecf835718bc78eec6d2390ccddee1ce (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
#ifndef _SKYPE_OPTIONS_H_
#define _SKYPE_OPTIONS_H_

class CSkypeOptionsMain : public CSkypeDlgBase
{
private:
	typedef CSkypeDlgBase CSuper;

	CCtrlEdit m_skypename;
	CCtrlEdit m_password;
	CCtrlEdit m_group;

protected:
	CSkypeOptionsMain(CSkypeProto *proto, int idDialog, HWND hwndParent = NULL);

	void OnInitDialog();
	void OnApply();

public:
	static CDlgBase *CreateAccountManagerPage(void *param, HWND owner)
	{
		CSkypeOptionsMain *page = new CSkypeOptionsMain((CSkypeProto*)param, IDD_ACCOUNT_MANAGER, owner);
		page->Show();
	}

	static CDlgBase *CreateMainOptionsPage(void *param) { return new CSkypeOptionsMain((CSkypeProto*)param, IDD_OPTIONS_MAIN); }
};

#endif //_SKYPE_OPTIONS_H_