diff options
Diffstat (limited to 'tools/_deprecated/Yahoo/src/user_info.cpp')
-rw-r--r-- | tools/_deprecated/Yahoo/src/user_info.cpp | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/tools/_deprecated/Yahoo/src/user_info.cpp b/tools/_deprecated/Yahoo/src/user_info.cpp new file mode 100644 index 0000000000..965e51acd4 --- /dev/null +++ b/tools/_deprecated/Yahoo/src/user_info.cpp @@ -0,0 +1,131 @@ +/*
+ * $Id: proto.cpp 9802 2009-05-18 03:03:48Z gena01 $
+ *
+ * myYahoo Miranda Plugin
+ *
+ * Authors: Gennady Feldman (aka Gena01)
+ * Laurent Marechal (aka Peorth)
+ *
+ * This code is under GPL and is based on AIM, MSN and Miranda source code.
+ * I want to thank Robert Rainwater and George Hazan for their code and support
+ * and for answering some of my questions during development of this plugin.
+ */
+
+#include "stdafx.h"
+
+#include <m_options.h>
+#include <m_skin.h>
+#include <m_userinfo.h>
+
+#include "resource.h"
+
+#include <commctrl.h>
+
+static INT_PTR CALLBACK YahooUserInfoDlgProc(HWND hwndDlg, UINT msg, WPARAM, LPARAM lParam)
+{
+ switch (msg) {
+ case WM_INITDIALOG:
+ // lParam is hContact
+ TranslateDialogDefault(hwndDlg);
+ break;
+
+ case WM_NOTIFY:
+ if (((LPNMHDR)lParam)->idFrom == 0) {
+ switch (((LPNMHDR)lParam)->code) {
+ case PSN_PARAMCHANGED:
+ SetWindowLongPtr(hwndDlg, GWLP_USERDATA, ((PSHNOTIFY*)lParam)->lParam);
+ break;
+ case PSN_INFOCHANGED:
+ {
+ CYahooProto* ppro = (CYahooProto*)GetWindowLongPtr(hwndDlg, GWLP_USERDATA);
+
+ if (!ppro)
+ break;
+
+ char* szProto;
+ MCONTACT hContact = (MCONTACT)((LPPSHNOTIFY)lParam)->lParam;
+
+ if (hContact == NULL) {
+ szProto = ppro->m_szModuleName;
+ }
+ else {
+ szProto = GetContactProto(hContact);
+ }
+
+ if (!szProto)
+ break;
+
+ if (hContact) {
+ DBVARIANT dbv;
+ char z[128];
+
+ if (ppro->getString(hContact, YAHOO_LOGINID, &dbv) == 0) {
+ mir_strcpy(z, dbv.pszVal);
+ db_free(&dbv);
+ }
+ else {
+ mir_strcpy(z, "???");
+ }
+
+ SetDlgItemTextA(hwndDlg, IDC_SEARCH_ID, z);
+
+ if (ppro->getString(hContact, "Transport", &dbv) == 0) {
+ mir_strcpy(z, dbv.pszVal);
+ db_free(&dbv);
+ }
+ else {
+ mir_strcpy(z, "Yahoo");
+ }
+
+ SetDlgItemTextA(hwndDlg, IDC_SEARCH_PROTOCOL, z);
+
+ if (ppro->getString(hContact, "MirVer", &dbv) == 0) {
+ mir_strcpy(z, dbv.pszVal);
+ db_free(&dbv);
+ }
+ else {
+ mir_strcpy(z, "???");
+ }
+
+ SetDlgItemTextA(hwndDlg, IDC_NFO_CLIENT, z);
+
+ }
+ else {
+ }
+ }
+ break;
+ }
+ }
+ break;
+
+ case WM_CLOSE:
+ DestroyWindow(hwndDlg);
+ break;
+
+ case WM_DESTROY:
+
+ break;
+ }
+ return FALSE;
+}
+
+/////////////////////////////////////////////////////////////////////////////////////////
+// OnInfoInit - initializes user info option dialogs
+
+int __cdecl CYahooProto::OnUserInfoInit(WPARAM wParam, LPARAM lParam)
+{
+ OPTIONSDIALOGPAGE odp = { 0 };
+ odp.hInstance = hInstance;
+ odp.dwInitParam = (LPARAM)this;
+ odp.flags = ODPF_UNICODE | ODPF_DONTTRANSLATE;
+
+ MCONTACT hContact = lParam;
+ if (IsMyContact(hContact)) {
+ odp.pfnDlgProc = YahooUserInfoDlgProc;
+ odp.position = -1900000000;
+ odp.pszTemplate = MAKEINTRESOURCEA(IDD_USER_INFO);
+ odp.pwszTitle = m_tszUserName;
+ UserInfo_AddPage(wParam, &odp);
+ }
+ return 0;
+}
|