about summary refs log tree commit diff stats
path: root/res/chawan.html
blob: 7b022f9a26e42b4dd42dd67f49e2781b9554f1b4 (plain) (blame)
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
<!DOCTYPE html>
<head>
	<title>Chawan Browser 0.1</title>
	<style>
	.u {
		text-decoration: underline;
	}
	.logo {
		position: absolute;
		bottom: 0;
		right: 0;
	}
	</style>
</head>
<body>
	<center><h1>Welcome to Chawan!</h1></center>
	This is the default visual home page. You might want to change it in
	your configuration file.
<pre class=logo>
 _......................._
fr.,~.~,,~~.~~~,~,~~~~,,.bl
I!www~www~www~www~www~www!ds
lCHCHCHCHCHCHCHCHCHCHCHCHCp
 kCHCHCHCHCHCHCHCHCHCHCHCp
  sAAAAAAAAAAAAAAAAAAAAAp
   l<span class=u>S</span>WWWWWWWWWWWWWWWWW<span class=u>Z</span>i
     lSAAAAAAAAAAAAAZ/
       \<span class=u>ZM</span>NNNNNNN<span class=u>MZ</span>/
          \<span class=u>HHHHH</span>/
</pre>
</body>
an class="w"> (*UI, error) { screen, err := tcell.NewScreen() if err != nil { return nil, err } if err = screen.Init(); err != nil { return nil, err } screen.Clear() screen.HideCursor() width, height := screen.Size() state := UI{ Content: content, ctx: NewContext(width, height, screen), screen: screen, tcEvents: make(chan tcell.Event, 10), } state.exit.Store(false) go func() { for !state.ShouldExit() { state.tcEvents <- screen.PollEvent() } }() state.invalid = 1 content.OnInvalidate(func(_ Drawable) { atomic.StoreInt32(&state.invalid, 1) }) content.OnBeep(screen.Beep) content.Focus(true) return &state, nil } func (state *UI) ShouldExit() bool { return state.exit.Load().(bool) } func (state *UI) Exit() { state.exit.Store(true) } func (state *UI) Close() { state.screen.Fini() } func (state *UI) Tick() bool { more := false select { case event := <-state.tcEvents: switch event := event.(type) { case *tcell.EventResize: state.screen.Clear() width, height := event.Size() state.ctx = NewContext(width, height, state.screen) state.Content.Invalidate() } state.Content.Event(event) more = true default: } wasInvalid := atomic.SwapInt32(&state.invalid, 0) if wasInvalid != 0 { state.Content.Draw(state.ctx) state.screen.Show() more = true } return more } func (state *UI) EnableMouse() { state.screen.EnableMouse() }