diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-05-08 17:06:19 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-05-08 17:06:19 +0000 |
commit | ee784358546b653f5bafa79f1a61179608b4751a (patch) | |
tree | 31dc97951ee284af9b7d627881f972b1ef1dd2dc /protocols/Skype/src/skype_proto.h | |
parent | 48d039b89c61a20556a0b063974d84d7d7c67c8d (diff) |
- code restructurization
- own info saving on server now
git-svn-id: http://svn.miranda-ng.org/main/trunk@4600 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 2076d12901..0015b5422b 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -165,11 +165,8 @@ public: static int PrebuildContactMenu(WPARAM wParam, LPARAM lParam);
bool IsOnline();
- static std::map<std::wstring, std::wstring> languages;
BYTE NeedUpdate;
- void SaveToDB(HWND hwndPage, int iPage);
- void SaveToServer();
static void ShowNotification(const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
static void ShowNotification(const wchar_t *caption, const wchar_t *message, int flags = 0, HANDLE hContact = NULL);
@@ -180,11 +177,13 @@ protected: CTransfer::Refs transferList;
CContactGroup::Ref commonList;
- CContactGroup::Ref authWaitList;
+ CContactGroup::Ref authWaitList;
+
+ static std::map<std::wstring, std::wstring> languages;
// account
- static wchar_t* LogoutReasons[];
- static wchar_t* PasswordChangeReasons[];
+ static wchar_t *LogoutReasons[];
+ static wchar_t *PasswordChangeReasons[];
wchar_t *login;
char *password;
@@ -334,6 +333,8 @@ protected: void __cdecl LoadOwnInfo(void*);
+ void SaveOwnInfoToServer(HWND hwndPage, int iPage);
+
// utils
static wchar_t* ValidationReasons[];
@@ -424,7 +425,11 @@ protected: static INT_PTR CALLBACK SkypeMainOptionsProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);
static INT_PTR CALLBACK SkypePasswordRequestProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK SkypePasswordChangeProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
- static INT_PTR CALLBACK SkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
- static INT_PTR CALLBACK OwnSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK InviteToChatProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+
+ static INT_PTR CALLBACK SkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK PersonalSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK ContactSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK HomeSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+
};
\ No newline at end of file |