summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-09-07 13:14:59 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-09-07 13:14:59 +0300
commitab893836d09a178460b9e64e76e42c89836e5721 (patch)
tree4f802d963792fb8692dad8d61a0010b12d1210a8 /src/defs.h
parentc3e5a0c2d4168515804dc0823c93d0522982108c (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.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index cf04514e..135cc053 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -41,6 +41,13 @@ enum iFileVersion {
41 latest_FileVersion = 4, 41 latest_FileVersion = 4,
42}; 42};
43 43
44enum iImageStyle {
45 original_ImageStyle = 0,
46 grayscale_ImageStyle = 1,
47 textColorized_ImageStyle = 2,
48 preformatColorized_ImageStyle = 3,
49};
50
44enum iScrollType { 51enum iScrollType {
45 keyboard_ScrollType, 52 keyboard_ScrollType,
46 mouse_ScrollType, 53 mouse_ScrollType,