summaryrefslogtreecommitdiff
path: root/include/m_button_int.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-07-21 10:37:30 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-07-21 10:37:30 +0000
commita971c497d5c86f11df8a048e3e9eb88691966169 (patch)
tree2570d81ccc8302aac31b3aaa299627679eeb367e /include/m_button_int.h
parent25bbf4a64df769564aa3b177712dfd21d910edab (diff)
- BUTTONSETSENDONDOWN functionality moved to the core;
- custom button click processing removed from clist_nicer; - control id assignment removed and replaced with the search by HWND git-svn-id: http://svn.miranda-ng.org/main/trunk@5440 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_button_int.h')
-rw-r--r--include/m_button_int.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/m_button_int.h b/include/m_button_int.h
index f40a83ced7..9bdd651731 100644
--- a/include/m_button_int.h
+++ b/include/m_button_int.h
@@ -44,13 +44,14 @@ struct MButtonCtrl
TCHAR cHot;
HWND hwndToolTips;
- bool bIsPushBtn, // button has two states
- bIsPushed, // is button pushed or not
- bIsDefault, // default button
- bIsFlat, // flat button
- bIsThemed, // themed button
- bIsSkinned; // skinned button
-
+ bool bIsPushBtn, // button has two states
+ bIsPushed, // is button pushed or not
+ bIsDefault, // default button
+ bIsFlat, // flat button
+ bIsThemed, // themed button
+ bIsSkinned, // skinned button
+ bSendOnDown; // sends BN_CLICKED on WM_LBUTTONDOWN
+
pfnPainterFunc fnPainter; // custom button painter
IAccPropServices* pAccPropServices;