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
|
// +build windows
package readline
import (
"fmt"
"io"
"syscall"
)
func SuspendMe() {
}
func GetStdin() int {
return int(syscall.Stdin)
}
func init() {
isWindows = true
}
// get width of the terminal
func GetScreenWidth() int {
info, _ := GetConsoleScreenBufferInfo()
if info == nil {
return -1
}
return int(info.dwSize.x)
}
// GetScreenSize returns the width, height of the terminal or -1,-1
func GetScreenSize() (width int, height int) {
info, _ := GetConsoleScreenBufferInfo()
if info == nil {
return -1, -1
}
height = int(info.srWindow.bottom) - int(info.srWindow.top) + 1
width = int(info.srWindow.right) - int(info.srWindow.left) + 1
return
}
// Send the Current cursor position to t.sizeChan.
func SendCursorPosition(t *Terminal) {
info, err := GetConsoleScreenBufferInfo()
if err != nil || info == nil {
t.sizeChan <- "-1;-1"
} else {
t.sizeChan <- fmt.Sprintf("%d;%d", info.dwCursorPosition.y, info.dwCursorPosition.x)
}
}
// ClearScreen clears the console screen
func ClearScreen(_ io.Writer) error {
return SetConsoleCursorPosition(&_COORD{0, 0})
}
func DefaultIsTerminal() bool {
return true
}
func DefaultOnWidthChanged(f func()) {
DefaultOnSizeChanged(f)
}
func DefaultOnSizeChanged(f func()) {
}
|