59 lines
1.2 KiB
Standard ML
59 lines
1.2 KiB
Standard ML
structure AppWith =
|
|
struct
|
|
open AppType
|
|
|
|
fun bufferAndSize (app: app_type, newBuffer, newWidth, newHeight) =
|
|
let
|
|
val
|
|
{ mode
|
|
, buffer = _
|
|
, windowWidth = _
|
|
, windowHeight = _
|
|
, startLine
|
|
, cursorIdx
|
|
} = app
|
|
in
|
|
{ mode = mode
|
|
, buffer = newBuffer
|
|
, windowWidth = newWidth
|
|
, windowHeight = newHeight
|
|
, startLine = startLine
|
|
, cursorIdx = cursorIdx
|
|
}
|
|
end
|
|
|
|
fun bufferAndCursorIdx (app: app_type, newBuffer, newCursorIdx, newMode) =
|
|
let
|
|
val
|
|
{ mode = _
|
|
, buffer = _
|
|
, cursorIdx = _
|
|
, windowWidth
|
|
, windowHeight
|
|
, startLine
|
|
} = app
|
|
in
|
|
{ mode = newMode
|
|
, buffer = newBuffer
|
|
, cursorIdx = newCursorIdx
|
|
, windowWidth = windowWidth
|
|
, windowHeight = windowHeight
|
|
, startLine = startLine
|
|
}
|
|
end
|
|
|
|
fun mode (app: app_type, newMode) =
|
|
let
|
|
val {mode = _, buffer, cursorIdx, windowWidth, windowHeight, startLine} =
|
|
app
|
|
in
|
|
{ mode = newMode
|
|
, buffer = buffer
|
|
, cursorIdx = cursorIdx
|
|
, windowWidth = windowWidth
|
|
, windowHeight = windowHeight
|
|
, startLine = startLine
|
|
}
|
|
end
|
|
end
|