From e5bde584112e57c319c8471fa58259f31bcf00be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Iv=C4=83ncescu?= Date: Mon, 25 Mar 2019 14:20:59 +0200 Subject: [PATCH] include/commctrl: Add style definitions for split buttons. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gabriel Ivăncescu Signed-off-by: Alexandre Julliard --- include/commctrl.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/commctrl.h b/include/commctrl.h index 9b86bdbfb9c..4706946a04d 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -1096,6 +1096,16 @@ typedef struct tagNMBCHOTITEM #define BS_COMMANDLINK 0x0000000E #define BS_DEFCOMMANDLINK 0x0000000F +#define BCSIF_GLYPH 0x00000001 +#define BCSIF_IMAGE 0x00000002 +#define BCSIF_STYLE 0x00000004 +#define BCSIF_SIZE 0x00000008 + +#define BCSS_NOSPLIT 0x00000001 +#define BCSS_STRETCH 0x00000002 +#define BCSS_ALIGNLEFT 0x00000004 +#define BCSS_IMAGE 0x00000008 + /* Button macros */ #define Button_SetNote(button, note) \ (BOOL)SNDMSG(button, BCM_SETNOTE, 0, (LPARAM)(note))