-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPresets.hs
108 lines (88 loc) · 2.7 KB
/
Presets.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{-
sscan --- text UI for scanning with SANE
Copyright (C) 2017 Sean Whitton
This file is part of sscan.
sscan is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
sscan is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with sscan. If not, see <http://www.gnu.org/licenses/>.
-}
{-# LANGUAGE OverloadedStrings #-}
module Presets (presets, lookupPreset) where
import Data.List (find)
import Lens.Micro ((^.))
import Types.Preset
import Types.State
presets :: [Preset]
presets = [ Preset 'H' "handwritten notes" handwrittenNotes
, Preset 'T' "typewritten docs" typewrittenDocs
, Preset 'C' "standard DPI colour PDF, full page" colourPDF
, Preset 'I' "standard DPI colour PNG, full page" colourPNG
, Preset 'A' "standard DPI colour PNG, autocropped" colourCroppedPNG
, Preset 'B' "black and white PDF, full page" bnwPDF
, Preset 'P' "high DPI 6x4 photo" photo
]
lookupPreset :: Char -> Maybe Preset
lookupPreset c = find (\(Preset k _ _) -> c == k) presets
handwrittenNotes :: St -> St
handwrittenNotes = \st -> st
{ _stOCR = False
, _stColour = Greyscale
, _stDPI = 75
, _stPaper = st^.stDefaultPaper
, _stOutFormat = PDF
}
typewrittenDocs :: St -> St
typewrittenDocs = \st -> st
{ _stOCR = True
, _stColour = Greyscale
, _stDPI = 300
, _stPaper = st^.stDefaultPaper
, _stOutFormat = PDF
}
colourPDF :: St -> St
colourPDF = \st -> st
{ _stOCR = False
, _stColour = Colour
, _stDPI = 300
, _stPaper = st^.stDefaultPaper
, _stOutFormat = PDF
}
colourPNG :: St -> St
colourPNG = \st -> st
{ _stOCR = False
, _stColour = Colour
, _stDPI = 300
, _stPaper = st^.stDefaultPaper
, _stOutFormat = PNG
}
colourCroppedPNG :: St -> St
colourCroppedPNG = \st -> st
{ _stOCR = False
, _stColour = Colour
, _stDPI = 300
, _stPaper = Auto
, _stOutFormat = PNG
}
bnwPDF :: St -> St
bnwPDF = \st -> st
{ _stOCR = False
, _stColour = Lineart
, _stDPI = 150
, _stPaper = st^.stDefaultPaper
, _stOutFormat = PDF
}
photo :: St -> St
photo = \st -> st
{ _stOCR = False
, _stColour = Colour
, _stDPI = 600
, _stPaper = Photo
, _stOutFormat = PNG
}