diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-19 18:21:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-19 18:21:17 +0000 |
commit | eb8ccdb0ad9e2c508f425b2b25a6eb1e25644461 (patch) | |
tree | 63b0c38f40b34c47ccad7007f18ee1d5deeccec7 /include | |
parent | bf5ea0ead75ae12673081ff30a6dcadc683f96a7 (diff) |
clist nicer+ button sync
git-svn-id: http://svn.miranda-ng.org/main/trunk@485 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_button.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/m_button.h b/include/m_button.h index d5742ce4b0..2e8f9e4cf9 100644 --- a/include/m_button.h +++ b/include/m_button.h @@ -56,6 +56,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // Only works on MButtonClass buttons
#define BUTTONSETASFLATBTN (WM_USER+4)
+// Sets the button type as a flat button without borders v0.3.3+
+// wParam = TRUE/FALSE default on/off
+// lParam = not used
+// Usage: SendMessage(hwndbutton, BUTTONSETASFLATBTN, 1, 0);
+// Only works on MButtonClass buttons
+#define BUTTONSETASTHEMEDBTN (WM_USER+5)
+
// Sets a tooltip for the button v0.3.3+
// wParam = (WPARAM)(char *)szTip
// lParam = not used
|