about summary refs log tree commit diff stats
path: root/cannot_write_tests_for
Commit message (Collapse)AuthorAgeFilesLines
* 3854Kartik K. Agaram2017-05-131-4/+6
| | | | Revert commits 3824, 3850 and 3852. We'll redo them more carefully.
* 3853Kartik K. Agaram2017-05-121-0/+6
| | | | | | Bring back commit 3844, albeit in simplified form. I'd forgotten that the one place where we still need to buffer rendering is when people hold down up/down arrow keys.
* 3844Kartik K. Agaram2017-05-061-4/+3
| | | | | Once I start optimizing most events to not repaint everything there's no need to be smart about queued-up events.
* 3824 - experiment: stop buffering in termboxKartik K. Agaram2017-04-161-5/+3
| | | | | | | | | | | | | | | | Now it's much more apparent why things are slow. You can see each repaint happening. Already I fixed one performance bug -- in clear-rest-of-screen. Since this subverts Mu's fake screen there may be bugs. Another salubrious side effect: I've finally internalized that switching to raw mode doesn't have to clear the screen. That was just an artifact of how termbox abstracted operations. Now I can conceive of using termbox to build a repl as well. (I was inspired to poke into termbox internals by http://viewsourcecode.org/snaptoken/kilo and https://github.com/antirez/linenoise)
* 3705 - switch to tested file-system primitivesKartik K. Agaram2016-12-111-1/+1
|
* 3629 - refcount commandline argsKartik K. Agaram2016-11-061-0/+1
|
* 3140Kartik K. Agaram2016-07-231-6/+7
| | | | | Manual tests for parse errors because scenarios can't handle assertion failures yet.
* 2192Kartik K. Agaram2015-09-141-0/+1
|
* 2141 - attempt to deal with slow networksKartik K. Agaram2015-09-041-0/+4
| | | | | | | | | | | | | On slow networks sometimes escape sequences were being partially consumed, causing junk to be added to the editor when you pressed arrow keys and so on. Now we have a way to wait. Empirically seems to work if I page-up and then scroll back up using up-arrow. Before I'd consistently get junk even on my local machine. Now I no longer do. If we still see problems I'll increase the wait time and see if the increase helps. Then we'll know more about this approach.
* 2140 - refresh screen after falling behindKartik K. Agaram2015-09-041-0/+5
This bit of code is complex enough now that I'm bothered I can't write tests for has-more-events?
53d134ed1782e5612e64580'>2a09617 ^
7160f98 ^



8fa4583 ^
2a09617 ^
ecd803a ^
2a09617 ^
8635c70 ^
2a09617 ^
a073d76 ^
8fa4583 ^



661e3ec ^

7160f98 ^
ecd803a ^

7160f98 ^



ecd803a ^











661e3ec ^
5685a17 ^
661e3ec ^

1418e1b ^
8fa4583 ^
661e3ec ^

1170893 ^
8fa4583 ^
661e3ec ^

80e891a ^



cc639a1 ^
8635c70 ^
72e4b5e ^
8635c70 ^
ecd803a ^
8635c70 ^





80e891a ^
72e4b5e ^
8635c70 ^
ecd803a ^
8fa4583 ^

661e3ec ^



ecd803a ^




6838c23 ^
ecd803a ^








6838c23 ^
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
109
110
111
112
               

        
                                  
 
                                         
                                      
                                         

 
                    
                        
                                    
                          
                                             
                               
                                 

 
                                                                                           

                                              
 



                                                                       
                          
                                    
                                    
                                         
                                        
                                   
         



                                                

 
                                                                                

                                                        



                                                                       











                                                        
                                
                           

 
                                         
                          

 
                                     
                             

 



                                                 
                                                    
                                                
                                             
                                      
                                   





                                                          
                                                  
                                             
                                             
                                   

                                                    



                   




                           
                                  








                                     
                              
package widgets

import (
	"github.com/gdamore/tcell"

	"git.sr.ht/~sircmpwn/aerc/config"
	"git.sr.ht/~sircmpwn/aerc/lib"
	"git.sr.ht/~sircmpwn/aerc/lib/ui"
)

type ExLine struct {
	ui.Invalidatable
	commit      func(cmd string)
	finish      func()
	tabcomplete func(cmd string) []string
	cmdHistory  lib.History
	input       *ui.TextInput
}

func NewExLine(conf *config.AercConfig, cmd string, commit func(cmd string), finish func(),
	tabcomplete func(cmd string) []string,
	cmdHistory lib.History) *ExLine {

	input := ui.NewTextInput("").Prompt(":").Set(cmd)
	if conf.Ui.CompletionPopovers {
		input.TabComplete(tabcomplete, conf.Ui.CompletionDelay)
	}
	exline := &ExLine{
		commit:      commit,
		finish:      finish,
		tabcomplete: tabcomplete,
		cmdHistory:  cmdHistory,
		input:       input,
	}
	input.OnInvalidate(func(d ui.Drawable) {
		exline.Invalidate()
	})
	return exline
}

func NewPrompt(conf *config.AercConfig, prompt string, commit func(text string),
	tabcomplete func(cmd string) []string) *ExLine {

	input := ui.NewTextInput("").Prompt(prompt)
	if conf.Ui.CompletionPopovers {
		input.TabComplete(tabcomplete, conf.Ui.CompletionDelay)
	}
	exline := &ExLine{
		commit:      commit,
		tabcomplete: tabcomplete,
		cmdHistory:  &nullHistory{input: input},
		input:       input,
	}
	input.OnInvalidate(func(d ui.Drawable) {
		exline.Invalidate()
	})
	return exline
}

func (ex *ExLine) Invalidate() {
	ex.DoInvalidate(ex)
}

func (ex *ExLine) Draw(ctx *ui.Context) {
	ex.input.Draw(ctx)
}

func (ex *ExLine) Focus(focus bool) {
	ex.input.Focus(focus)
}

func (ex *ExLine) Event(event tcell.Event) bool {
	switch event := event.(type) {
	case *tcell.EventKey:
		switch event.Key() {
		case tcell.KeyEnter, tcell.KeyCtrlJ:
			cmd := ex.input.String()
			ex.input.Focus(false)
			ex.commit(cmd)
			ex.finish()
		case tcell.KeyUp:
			ex.input.Set(ex.cmdHistory.Prev())
			ex.Invalidate()
		case tcell.KeyDown:
			ex.input.Set(ex.cmdHistory.Next())
			ex.Invalidate()
		case tcell.KeyEsc, tcell.KeyCtrlC:
			ex.input.Focus(false)
			ex.cmdHistory.Reset()
			ex.finish()
		default:
			return ex.input.Event(event)
		}
	}
	return true
}

type nullHistory struct {
	input *ui.TextInput
}

func (*nullHistory) Add(string) {}

func (h *nullHistory) Next() string {
	return h.input.String()
}

func (h *nullHistory) Prev() string {
	return h.input.String()
}

func (*nullHistory) Reset() {}