From f65741787bee7c5d143d733efb32b7ec3452edc6 Mon Sep 17 00:00:00 2001 From: Alexander Lantsev Date: Tue, 30 Jun 2015 13:57:53 +0000 Subject: Steam: fixed options git-svn-id: http://svn.miranda-ng.org/main/trunk@14457 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Steam/src/steam_options.cpp | 69 +++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 protocols/Steam/src/steam_options.cpp (limited to 'protocols/Steam/src/steam_options.cpp') diff --git a/protocols/Steam/src/steam_options.cpp b/protocols/Steam/src/steam_options.cpp new file mode 100644 index 0000000000..4f5a2a8dcd --- /dev/null +++ b/protocols/Steam/src/steam_options.cpp @@ -0,0 +1,69 @@ +#include "stdafx.h" + +CSteamOptionsMain::CSteamOptionsMain(CSteamProto *proto, int idDialog, HWND hwndParent) + : CSteamDlgBase(proto, idDialog, false), + m_username(this, IDC_USERNAME), m_password(this, IDC_PASSWORD), + m_group(this, IDC_GROUP), m_biggerAvatars(this, IDC_BIGGER_AVATARS) +{ + SetParent(hwndParent); + + CreateLink(m_username, "Username", _T("")); + CreateLink(m_password, "Password", _T("")); + CreateLink(m_group, "DefaultGroup", _T("Steam")); + CreateLink(m_biggerAvatars, "UseBigAvatars", DBVT_BYTE, FALSE); +} + +void CSteamOptionsMain::OnInitDialog() +{ + CSteamDlgBase::OnInitDialog(); + + SendMessage(m_username.GetHwnd(), EM_LIMITTEXT, 64, 0); + SendMessage(m_password.GetHwnd(), EM_LIMITTEXT, 64, 0); + SendMessage(m_group.GetHwnd(), EM_LIMITTEXT, 64, 0); +} + +void CSteamOptionsMain::OnApply() +{ + TCHAR *group = m_group.GetText(); + if (mir_tstrlen(group) > 0 && Clist_GroupExists(group)) + Clist_CreateGroup(0, group); + + if (m_proto->IsOnline()) + { + // may be we should show message box with warning? + m_proto->SetStatus(ID_STATUS_OFFLINE); + } + if (m_username.IsChanged()) + { + m_proto->delSetting("SteamID"); + m_proto->delSetting("TokenSecret"); + } + if (m_password.IsChanged()) + { + m_proto->delSetting("TokenSecret"); + } + mir_free(group); +} + +///////////////////////////////////////////////////////////////////////////////// + +CSteamOptionsBlockList::CSteamOptionsBlockList(CSteamProto *proto) + : CSuper(proto, IDD_OPT_BLOCK_LIST, false), + m_list(this, IDC_LIST), + m_contacts(this, IDC_CONTACTS), + m_add(this, IDC_BLOCK) +{ + m_add.OnClick = Callback(this, &CSteamOptionsBlockList::OnBlock); +} + +void CSteamOptionsBlockList::OnInitDialog() +{ + m_list.SetExtendedListViewStyle(LVS_EX_SUBITEMIMAGES | LVS_EX_FULLROWSELECT | LVS_EX_LABELTIP); + + m_list.AddColumn(0, TranslateT("Name"), 220); + m_list.AddColumn(1, _T(""), 32 - GetSystemMetrics(SM_CXVSCROLL)); +} + +void CSteamOptionsBlockList::OnBlock(CCtrlButton*) +{ +} \ No newline at end of file -- cgit v1.2.3