summaryrefslogtreecommitdiff
path: root/eventGocui.go
blob: 5c7ef3da5dda051f69f653f8b778bb55398cac49 (plain)
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
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0

package main

import (
	"errors"
	"fmt"

	"github.com/awesome-gocui/gocui"
	"go.wit.com/log"
)

// Thanks to the gocui developers -- your package kicks ass
// This function is called on every event. It is a callback function from the gocui package
// which has an excellent implementation. While gocui handles things like text highlighting
// and the layout of the text areas -- also things like handling SIGWINCH and lots of really
// complicated console handling, it sends events here in a clean way.
// This is equivalent to the linux command xev (apt install x11-utils)
func gocuiEvent(g *gocui.Gui) error {
	me.ecount += 1
	mouseMove(g)
	return nil
}

// turns off the frame on the global window
func setFrame(b bool) {
	// TODO: figure out what this might be useful for
	// what is this do? I made it just 2 lines for now. Is this useful for something?
	v := SetView("global", 5, 10, 5, 10, 0) // x0, x1, y1, y2, overlap
	if v == nil {
		log.Log(ERROR, "setFrame() global failed")
	}
	v.Frame = b
}

// a test. exits gocui, but the application still runs
// maybe can switch toolkits?
func quit(g *gocui.Gui, v *gocui.View) error {
	return gocui.ErrQuit
}

func (tk *guiWidget) SetView() error {
	if me.baseGui == nil {
		return fmt.Errorf("me.baseGui == nil")
	}

	r := new(rectType)
	r.w0 = tk.gocuiSize.w0
	r.h0 = tk.gocuiSize.h0
	r.w1 = tk.gocuiSize.w1
	r.h1 = tk.gocuiSize.h1

	return tk.SetViewRect(r)
}

func (tk *guiWidget) SetViewRect(r *rectType) error {
	if me.baseGui == nil {
		return fmt.Errorf("me.baseGui == nil")
	}

	var err error
	tk.v, err = me.baseGui.SetView(tk.cuiName, r.w0, r.h0, r.w1, r.h1, 0)
	if err != nil {
		if !errors.Is(err, gocui.ErrUnknownView) {
			log.Log(ERROR, "SetView() global failed on name =", tk.cuiName)
			return err
		}
	}
	return nil
}

func SetView(name string, x0, y0, x1, y1 int, overlaps byte) *gocui.View {
	if me.baseGui == nil {
		log.Log(ERROR, "SetView() ERROR: me.baseGui == nil")
		return nil
	}

	v, err := me.baseGui.SetView(name, x0, y0, x1, y1, overlaps)
	if err != nil {
		if !errors.Is(err, gocui.ErrUnknownView) {
			log.Log(ERROR, "SetView() global failed on name =", name)
		}
		return nil
	}
	return v
}