diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-19 11:12:34 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-19 11:12:34 +0000 |
commit | 927add1b301c9f38808f3d35854d3ce896bff095 (patch) | |
tree | 244dfff95aee5393ec835e5804252ff8cf07866d /plugins/Updater/popups.h | |
parent | e447995b61b645d48ebe837a0ee4fdb28373aa1c (diff) |
adding SpellChecker plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@69 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Updater/popups.h')
-rw-r--r-- | plugins/Updater/popups.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/Updater/popups.h b/plugins/Updater/popups.h new file mode 100644 index 0000000000..a937ec5df1 --- /dev/null +++ b/plugins/Updater/popups.h @@ -0,0 +1,32 @@ +#ifndef _POPUPS_INC
+#define _POPUPS_INC
+
+#include <m_popup.h>
+
+#include "options.h"
+#include "icons.h"
+
+void InitPopups();
+void DeinitPopups();
+
+bool ArePopupsEnabled();
+
+void ShowPopupA(HANDLE hContact, const char* line1, const char* line2, int flags = 0, int timeout = 0);
+void ShowPopupW(HANDLE hContact, const wchar_t* line1, const wchar_t* line2, int flags = 0, int timeout = 0);
+
+void ShowPopup(HANDLE hContact, const TCHAR *line1, const TCHAR *line2, int flags = 0, int timeout = 0);
+
+void ShowWarning(TCHAR *msg);
+void ShowError(TCHAR *msg);
+
+void ChangePopupText(HWND hwnd, TCHAR *msg);
+
+extern HWND hwndPop;
+extern HANDLE hEventPop;
+extern bool pop_cancelled;
+
+#define WMU_CLOSEPOP (WM_USER + 0x191)
+
+#define POPFLAG_SAVEHWND 0x01
+
+#endif
|