From 863cc559af7382c8a9b71a5f76edfd94171a1950 Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Wed, 22 Apr 2020 21:28:13 +0200 Subject: label: add way to customize text color --- alf/alf.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'alf/alf.h') diff --git a/alf/alf.h b/alf/alf.h index 721a2e5..48b7834 100644 --- a/alf/alf.h +++ b/alf/alf.h @@ -104,6 +104,8 @@ typedef struct { #define ALF_WM_LYT_SETROWEXPAND (ALF_WM__BASE + 34) #define ALF_WM_LYT_GETROWFLAGS (ALF_WM__BASE + 35) #define ALF_WM_LYT_SETROWFLAGS (ALF_WM__BASE + 36) +#define ALF_WM_GETTEXTCOLOR (ALF_WM__BASE + 37) +#define ALF_WM_SETTEXTCOLOR (ALF_WM__BASE + 38) #define ALF_WM_LBL_GETSTYLE (ALF_WM__BASE + 201) #define ALF_WM_LBL_SETSTYLE (ALF_WM__BASE + 202) @@ -225,6 +227,12 @@ ALF_SetBackgroundColor(HWND win, ALFColor color); ALFColor ALF_BackgroundColor(HWND win); +ALFColor +ALF_TextColor(HWND win); + +void +ALF_SetTextColor(HWND win, ALFColor color); + void ALF_ResizeWindow(HWND win, int cptWidth, int cptHeight); -- cgit v1.2.3