summaryrefslogtreecommitdiff
path: root/plugins/w7ui/srmmproxywindow.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:10:43 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:10:43 +0000
commit725f68b6808a8a30778f58223fac75386f082785 (patch)
treeccba410760749d45139e5e78fd5e08f416ade1a0 /plugins/w7ui/srmmproxywindow.h
parentf920ef497f3299ae24fe783ce03bdd93b419f764 (diff)
plugins folders renaming
git-svn-id: http://svn.miranda-ng.org/main/trunk@61 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__