diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-07 13:14:59 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-07 13:14:59 +0300 |
commit | ab893836d09a178460b9e64e76e42c89836e5721 (patch) | |
tree | 4f802d963792fb8692dad8d61a0010b12d1210a8 /src/defs.h | |
parent | c3e5a0c2d4168515804dc0823c93d0522982108c (diff) |
Added image colorization preference
Option to colorize images to grayscale, text color, or preformatted color.
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -41,6 +41,13 @@ enum iFileVersion { | |||
41 | latest_FileVersion = 4, | 41 | latest_FileVersion = 4, |
42 | }; | 42 | }; |
43 | 43 | ||
44 | enum iImageStyle { | ||
45 | original_ImageStyle = 0, | ||
46 | grayscale_ImageStyle = 1, | ||
47 | textColorized_ImageStyle = 2, | ||
48 | preformatColorized_ImageStyle = 3, | ||
49 | }; | ||
50 | |||
44 | enum iScrollType { | 51 | enum iScrollType { |
45 | keyboard_ScrollType, | 52 | keyboard_ScrollType, |
46 | mouse_ScrollType, | 53 | mouse_ScrollType, |