summaryrefslogtreecommitdiff
path: root/plugins/W7ui/srmmproxywindow.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-05-23 07:44:30 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-05-23 07:44:30 +0000
commitf3d44bc057201407373012b7f682881bda7b3d98 (patch)
treeddf031a82529c84e13222131cf184ecf176d3954 /plugins/W7ui/srmmproxywindow.h
parentc2d827972a16f1710406d15e58304aecc4e1c9b5 (diff)
some includes restored, mir_full.sln updated, some renaming of folders and projects
git-svn-id: http://svn.miranda-ng.org/main/trunk@140 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/W7ui/srmmproxywindow.h')
-rw-r--r--plugins/W7ui/srmmproxywindow.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/plugins/W7ui/srmmproxywindow.h b/plugins/W7ui/srmmproxywindow.h
deleted file mode 100644
index f1c447d4e8..0000000000
--- a/plugins/W7ui/srmmproxywindow.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef srmmproxywindow_h__
-#define srmmproxywindow_h__
-
-class CSrmmProxyWindow: public CDwmWindow
-{
-public:
- CSrmmProxyWindow(HANDLE hContact, HWND hwndWindow, HWND hwndParent);
- ~CSrmmProxyWindow();
-
- void OnTabActive();
- void OnTabInactive();
-
-private:
- HANDLE m_hContact;
- HWND m_hwndWindow, m_hwndParent;
- HBITMAP m_hbmpPreview;
- bool m_refreshPreview;
- bool m_bActive, m_bUnread, m_bTyping;
-
- void Refresh();
-
- int __cdecl OnDbEventAdded(WPARAM wParam, LPARAM lParam);
- int __cdecl OnDbSettingChanged(WPARAM wParam, LPARAM lParam);
- int __cdecl OnAvatarChanged(WPARAM wParam, LPARAM lParam);
- int __cdecl OnContactTyping(WPARAM wParam, LPARAM lParam);
-
- HANDLE SetEventHook(char *evt, int (__cdecl CSrmmProxyWindow::*fn)(WPARAM, LPARAM));
-
- void UpdateIcon();
-
- bool IsActive();
-
-protected:
- void OnActivate(HWND hwndFrom);
- void OnToolbar(int id, INT_PTR data);
- void OnRenderThumbnail(int width, int height);
- void OnRenderPreview();
- void OnTimer(int);
- void OnClose();
-};
-
-#endif // srmmproxywindow_h__