summaryrefslogtreecommitdiff
path: root/nucuwin.go
blob: 3cde330a7b1e5a20bd17973d68f1cca412d0cb87 (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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package main

import (
	//"fmt"
	"os"


	"github.com/aarzilli/nucular"
	"github.com/aarzilli/nucular/label"
	nstyle "github.com/aarzilli/nucular/style"
	"github.com/aarzilli/nucular/rect"
	//ncommand "github.com/aarzilli/nucular/command"

	//"golang.org/x/mobile/event/key"
	//"golang.org/x/mobile/event/mouse"
)


type nucularWindow struct {
	ShowMenu    bool
	Titlebar    bool
	Border      bool
	Resize      bool
	Movable     bool
	NoScrollbar bool
	Minimizable bool
	Close       bool

	HeaderAlign nstyle.HeaderAlign

	// Menu status
	Mprog int
	Mslider int
	Mcheck  bool
	Prog    int
	Slider  int
	Check bool

	Theme nstyle.Theme
}

func newNucularWindow() (nw *nucularWindow) {
	nw = &nucularWindow{}
	nw.ShowMenu = true
	nw.Titlebar = true
	nw.Border = true
	nw.Resize = true
	nw.Movable = true
	nw.NoScrollbar = false
	nw.Close = true

	nw.HeaderAlign = nstyle.HeaderRight
	nw.Mprog = 60
	nw.Mslider = 8
	nw.Mcheck = true

	return nw
}

// Master Window
func (nw *nucularWindow) nucularWindow(w *nucular.Window) {
	//keybindings(w)
	mw := w.Master()

	style := mw.Style()
	style.NormalWindow.Header.Align = nw.HeaderAlign
	if nw.ShowMenu {
		nw.nucularMenubar(w)
	}
	w.Row(30).Dynamic(1)
	w.Label(hea,"CC")
	//w.Spacing(2)
	for _,d := range(dat) {
		if w.TreePush(nucular.TreeTab, d.title, true) {
			w.Row(20).Dynamic(2)
			//w.Row(20).Dynamic(3)
			//w.Row(20).Static(100)
			for i,_ := range(d.textl){
				w.Label(d.textl[i], "RC")
				w.Label(d.textr[i], "LC")
				//w.Label("", "LC")
			}

			w.TreePop()
		}
	}
	w.Row(30).Static(300, 100, 100)
	w.Label("", "LC")
	if w.ButtonText("Exit") {
		 os.Exit(0)
	}
}


func (nw *nucularWindow) nucularMenubar(w *nucular.Window) {
	w.MenubarBegin()
	w.Row(25).Static(45, 70, 45, 70, 70)
	if w := w.Menu(label.TA("Menu", "CC"), 120, nil); w != nil {
		w.Row(25).Dynamic(1)
		/*if w.MenuItem(label.TA("Hide", "LC")) {
			w.Label("You Wish","LC")
			//nw.ShowMenu = false
		}*/
		if w.MenuItem(label.TA("About", "LC")) {
			nw.showAppAbout(w.Master())
		}
		if w.MenuItem(label.TA("Quit", "LC")) {
			nw.showQuestion(w.Master()) //,"Do You want to Quit?") {
				//os.Exit(0)
			//}
		}
	}
	if w := w.Menu(label.TA("Theme", "CC"), 180, nil); w != nil {
		w.Row(25).Dynamic(1)
		newtheme := nw.Theme
		if w.OptionText("Default Theme", newtheme == nstyle.DefaultTheme) {
			newtheme = nstyle.DefaultTheme
		}
		if w.OptionText("White Theme", newtheme == nstyle.WhiteTheme) {
			newtheme = nstyle.WhiteTheme
		}
		if w.OptionText("Red Theme", newtheme == nstyle.RedTheme) {
			newtheme = nstyle.RedTheme
		}
		if w.OptionText("Dark Theme", newtheme == nstyle.DarkTheme) {
			newtheme = nstyle.DarkTheme
		}
		if newtheme != nw.Theme {
			nw.Theme = newtheme
			w.Master().SetStyle(nstyle.FromTheme(nw.Theme, w.Master().Style().Scaling))
			w.Close()
		}
	}
	w.MenubarEnd()
}

func (nw *nucularWindow) errorPopup(w *nucular.Window) {
	w.Row(25).Dynamic(1)
	w.Label("A terrible error has occured", "LC")
	w.Row(25).Dynamic(2)
	if w.Button(label.T("OK"), false) {
		w.Close()
	}
	if w.Button(label.T("Cancel"), false) {
		w.Close()
	}
}

func (nw *nucularWindow) questionPopup(w *nucular.Window) {
	w.Row(25).Dynamic(1)
	w.Label("Are You Sure?", "LC")
	w.Row(25).Dynamic(2)
	if w.Button(label.T("OK"), false) {
		os.Exit(0)
	}
	if w.Button(label.T("Cancel"), false) {
		w.Close()
	}
}

func (nw *nucularWindow) aboutPopup(w *nucular.Window) {
	w.Row(20).Dynamic(1)
	w.Label("Fenestra", "LC")
	w.Row(40).Dynamic(1)
	w.LabelWrap("A viewer for my text based Cheatsheets.")
	w.Row(15).Dynamic(1)
	w.Label("Usind Nucular by Alessandro Arzilli", "LC")
	w.Label("based on Nuklear by Micha Mettke", "LC")

	if w.Button(label.T("OK"), false) {
		w.Close()
	}
}

func (nw *nucularWindow) showAppAbout(mw nucular.MasterWindow) {
	var wf nucular.WindowFlags

	if nw.Border {
		wf |= nucular.WindowBorder
	}
	if nw.Resize {
		wf |= nucular.WindowScalable
	}
	if nw.Movable {
		wf |= nucular.WindowMovable
	}
	if nw.NoScrollbar {
		wf |= nucular.WindowNoScrollbar
	}
	if nw.Close {
		wf |= nucular.WindowClosable
	}
	if nw.Titlebar {
		wf |= nucular.WindowTitle
	}
	mw.PopupOpen("About", wf, rect.Rect{20, 100, 300, 190}, true, nw.aboutPopup)
}

func (nw *nucularWindow) showQuestion(mw nucular.MasterWindow) {
	var wf nucular.WindowFlags

	if nw.Border {
		wf |= nucular.WindowBorder
	}
	if nw.Resize {
		wf |= nucular.WindowScalable
	}
	if nw.Movable {
		wf |= nucular.WindowMovable
	}
	if nw.NoScrollbar {
		wf |= nucular.WindowNoScrollbar
	}
	if nw.Close {
		wf |= nucular.WindowClosable
	}
	if nw.Titlebar {
		wf |= nucular.WindowTitle
	}
	mw.PopupOpen("QUIT", wf, rect.Rect{20, 100, 300, 190}, true, nw.questionPopup)
}