diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-04-22 21:28:13 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-04-22 21:28:13 +0200 |
| commit | 863cc559af7382c8a9b71a5f76edfd94171a1950 (patch) | |
| tree | 2a25614a1c3b5a1610ec54be9af813a93f8a69db /alf/alf.h | |
| parent | a61c62ff6d9e95c9cc9a0f55de8e40b8e7339007 (diff) | |
label: add way to customize text color
Diffstat (limited to 'alf/alf.h')
| -rw-r--r-- | alf/alf.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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); |
