-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
471 lines (395 loc) · 10.9 KB
/
main.go
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
package dialog
import (
_ "embed"
"fmt"
"log"
"strconv"
"github.com/gotk3/gotk3/cairo"
"github.com/gotk3/gotk3/gdk"
"github.com/gotk3/gotk3/gtk"
"github.com/gotk3/gotk3/pango"
)
// Dialog contains information about the dialog the user wants
type Dialog struct {
title string
text, textMarkup string
headerColor string
width, height int
icon iconType
customIconPath string
buttons buttonsType
extra, extraName string
extraHeight int
extraExpand bool
dialog *gtk.Dialog
}
// iconType describes what type of icon the user wants
type iconType int
const (
iconNone iconType = iota
iconInformation
iconWarning
iconQuestion
iconError
iconCustom
)
var (
colors map[iconType][4]float64
)
// buttonsType describes the number of different buttons the user wants
type buttonsType int
const (
buttonsOk buttonsType = iota
buttonsOkCancel
buttonsYesNo
buttonsYesNoCancel
)
//go:embed error.png
var errorIcon []byte
//go:embed warning.png
var warningIcon []byte
//go:embed info.png
var infoIcon []byte
//go:embed question.png
var questionIcon []byte
// gtkButtons holds information about what buttonsType corresponds to which gtk buttons
var gtkButtons = map[buttonsType][][]interface{}{
buttonsOk: {{"Ok", gtk.RESPONSE_OK}},
buttonsOkCancel: {{"Ok", gtk.RESPONSE_OK}, {"Cancel", gtk.RESPONSE_CANCEL}},
buttonsYesNo: {{"Yes", gtk.RESPONSE_YES}, {"No", gtk.RESPONSE_NO}},
buttonsYesNoCancel: {{"Yes", gtk.RESPONSE_YES}, {"No", gtk.RESPONSE_NO}, {"Cancel", gtk.RESPONSE_CANCEL}},
}
//
// Public methods
//
// Title is the starting method (constructor), since every dialog needs a title.
func Title(title string) *Dialog {
colors = make(map[iconType][4]float64, 6)
colors[iconNone] = [4]float64{1, 1, 1, 1}
colors[iconInformation] = [4]float64{1, 1, 1, 1}
colors[iconWarning] = [4]float64{0.941, 0.729, 0.192, 1.0}
colors[iconQuestion] = [4]float64{0.118, 0.69, 0.157, 1.0}
colors[iconError] = [4]float64{0.941, 0.259, 0.192, 1.0}
colors[iconCustom] = [4]float64{1, 1, 1, 1}
return &Dialog{title: title, width: 300, extraName: "Details"}
}
// Text sets the main text in the dialog.
func (d *Dialog) Text(text string) *Dialog {
d.text = text
return d
}
// TextMarkup sets the main text in the dialog in the GTK markup format.
func (d *Dialog) TextMarkup(textMarkup string) *Dialog {
d.textMarkup = textMarkup
return d
}
// HeaderColor sets the color of the header. The default value (if
// HeaderColor is not called) depends on the chosen icon:
//
// No icon : Gives a white header
// InfoIcon : Gives a white header
// WarningIcon : Gives an orange header
// ErrorIcon : Gives a red header
// QuestionIcon : Gives a green header
// CustomIcon : Gives a White header
func (d *Dialog) HeaderColor(color string) *Dialog {
d.headerColor = color
return d
}
// Size sets the minimum size of the dialog.
func (d *Dialog) Size(width, height int) *Dialog {
d.width = width
d.height = height
return d
}
// Width sets the minimum width of the dialog.
// The default width is 300.
func (d *Dialog) Width(width int) *Dialog {
d.width = width
return d
}
// Height sets the minimum height of the dialog. The dialog will expand if the user expands the extra field (by ExtraHeight pixels).
func (d *Dialog) Height(height int) *Dialog {
d.height = height
return d
}
// Extra sets the extra text that will be displayed in a scrollable text box.
func (d *Dialog) Extra(extra string) *Dialog {
d.extra = extra
return d
}
// ExtraExpand sets the extra text that will be displayed in a scrollable text box and expands it.
func (d *Dialog) ExtraExpand(extra string) *Dialog {
d.extra = extra
d.extraExpand = true
return d
}
// ExtraName sets the name of the expander that shows the extra text.
// The default name is "Details".
func (d *Dialog) ExtraName(extraName string) *Dialog {
d.extraName = extraName
return d
}
// ExtraHeight sets the height of the extra field, when it is expanded.
func (d *Dialog) ExtraHeight(extraHeight int) *Dialog {
d.extraHeight = extraHeight
return d
}
// InfoIcon adds an information icon to the dialog
func (d *Dialog) InfoIcon() *Dialog {
d.icon = iconInformation
return d
}
// WarningIcon adds a warning icon to the dialog
func (d *Dialog) WarningIcon() *Dialog {
d.icon = iconWarning
return d
}
// QuestionIcon adds a question icon to the dialog
func (d *Dialog) QuestionIcon() *Dialog {
d.icon = iconQuestion
return d
}
// ErrorIcon adds an error icon to the dialog
func (d *Dialog) ErrorIcon() *Dialog {
d.icon = iconError
return d
}
// CustomIcon adds a custom icon to the dialog
func (d *Dialog) CustomIcon(path string) *Dialog {
d.icon = iconCustom
d.customIconPath = path
return d
}
// OkButton adds an ok button to the dialog
func (d *Dialog) OkButton() *Dialog {
d.buttons = buttonsOk
return d
}
// OkCancelButtons adds an ok button and a cancel button to the dialog
func (d *Dialog) OkCancelButtons() *Dialog {
d.buttons = buttonsOkCancel
return d
}
// YesNoButtons adds a yes button and no cancel button to the dialog
func (d *Dialog) YesNoButtons() *Dialog {
d.buttons = buttonsYesNo
return d
}
// YesNoCancelButtons adds a yes button, a no button, and a cancel button to the dialog
func (d *Dialog) YesNoCancelButtons() *Dialog {
d.buttons = buttonsYesNoCancel
return d
}
// Show will display the dialog
func (d *Dialog) Show() (gtk.ResponseType, error) {
dialog, err := d.createDialog()
if err != nil {
return gtk.RESPONSE_REJECT, err
}
response := dialog.Run()
dialog.Destroy()
return response, nil
}
//
// Private methods
//
func (d *Dialog) createDialog() (*gtk.Dialog, error) {
dialog, err := gtk.DialogNewWithButtons(d.title, nil, gtk.DIALOG_MODAL, gtkButtons[d.buttons]...)
if err != nil {
return nil, err
}
d.dialog = dialog
content, err := dialog.GetContentArea()
if err != nil {
return nil, err
}
// Create an Overlay (for stacking widgets)
overlay, err := gtk.OverlayNew()
if err != nil {
return nil, err
}
content.Add(overlay)
drawingArea, err := d.getDrawingArea()
if err != nil {
return nil, err
}
label, err := d.getLabel(d.icon != iconNone)
if err != nil {
return nil, err
}
// Add widgets to the overlay
if drawingArea != nil {
overlay.Add(drawingArea) // Image is the base layer
}
overlay.AddOverlay(label) // Label goes on top
overlay.SetSizeRequest(d.width, 50)
if d.extra != "" {
expander, err := d.getExtraExpander()
if err != nil {
return nil, err
}
if d.extraExpand {
expander.SetExpanded(true)
}
// Adjust window height dynamically when expanding/collapsing the expander
expander.Connect("notify::expanded", func() {
if expander.GetExpanded() {
dialog.Resize(d.width, d.height+d.extraHeight) // Expand height
} else {
dialog.Resize(d.width, d.height) // Shrink height
}
})
content.PackEnd(expander, true, true, 5)
}
dialog.SetSizeRequest(d.width, d.height)
dialog.ShowAll()
return dialog, nil
}
func (d *Dialog) getExtraExpander() (*gtk.Expander, error) {
expander, err := gtk.ExpanderNew(d.extraName)
if err != nil {
return nil, err
}
expander.SetVExpand(true)
expander.SetHExpand(true)
scroll, err := gtk.ScrolledWindowNew(nil, nil)
if err != nil {
return nil, err
}
// Height for the expanded content
scroll.SetSizeRequest(d.width, d.extraHeight)
expander.Add(scroll)
buffer, err := gtk.TextBufferNew(nil)
if err != nil {
return nil, err
}
buffer.SetText(d.extra)
extraTextView, err := gtk.TextViewNewWithBuffer(buffer)
if err != nil {
return nil, err
}
extraTextView.SetAcceptsTab(false)
extraTextView.SetEditable(false)
extraTextView.SetWrapMode(gtk.WRAP_WORD)
extraTextView.SetMarginStart(20)
extraTextView.SetMarginEnd(20)
extraTextView.SetHExpand(true)
extraTextView.SetVExpand(true)
scroll.Add(extraTextView)
return expander, nil
}
func (d *Dialog) getLabel(hasImage bool) (*gtk.Label, error) {
label, err := gtk.LabelNew("")
if err != nil {
return nil, err
}
if d.textMarkup != "" {
label.SetMarkup(d.textMarkup)
label.SetUseMarkup(true)
} else if d.text != "" {
label.SetText(d.text)
label.SetName("headerLabel") // Set a name for CSS targeting
// Apply CSS styling
err := applyCSS(`#headerLabel { color: black; }`)
if err != nil {
log.Fatal("Failed to apply CSS:", err)
}
}
// Set margins AFTER SetHExpand and SetVExpand
label.SetHAlign(gtk.ALIGN_START)
label.SetVAlign(gtk.ALIGN_CENTER)
label.SetHExpand(true)
label.SetVExpand(false)
label.SetLineWrap(true)
label.SetLineWrapMode(pango.WRAP_WORD_CHAR)
if hasImage {
label.SetMarginStart(45)
} else {
label.SetMarginStart(10)
}
return label, nil
}
func (d *Dialog) getDrawingArea() (*gtk.DrawingArea, error) {
// Create a DrawingArea
drawingArea, _ := gtk.DrawingAreaNew()
drawingArea.SetSizeRequest(d.width, 50) // Set control size
drawingArea.SetHExpand(true)
// Connect the "draw" signal to render content
drawingArea.Connect("draw", func(da *gtk.DrawingArea, cr *cairo.Context) {
d.renderIconAndBackground(cr)
})
return drawingArea, nil
}
// renderIconAndBackground renders a background + PNG icon
func (d *Dialog) renderIconAndBackground(cr *cairo.Context) {
var pic *gdk.Pixbuf
var col = colors[d.icon]
if d.headerColor != "" {
col = d.getHeaderColor()
}
// Set background color (light blue)
width, _ := d.dialog.GetSize()
cr.SetSourceRGBA(col[0], col[1], col[2], col[3])
cr.Rectangle(0, 0, float64(width), 50)
cr.Fill()
switch d.icon {
case iconInformation:
pic, _ = gdk.PixbufNewFromBytesOnly(infoIcon)
case iconWarning:
pic, _ = gdk.PixbufNewFromBytesOnly(warningIcon)
case iconQuestion:
pic, _ = gdk.PixbufNewFromBytesOnly(questionIcon)
case iconError:
pic, _ = gdk.PixbufNewFromBytesOnly(errorIcon)
case iconCustom:
// TODO : Cache this image
pic, _ = gdk.PixbufNewFromFile(d.customIconPath)
default:
return
}
// Render Pixbuf onto Cairo surface
surface, _ := gdk.CairoSurfaceCreateFromPixbuf(pic, 0, nil)
if surface == nil {
log.Fatal("Failed to convert Pixbuf to Cairo surface")
}
// Draw image at position (9, 9)
cr.SetSourceSurface(surface, 9, 9)
cr.Paint()
}
func (d *Dialog) getHeaderColor() [4]float64 {
var color [4]float64
if len(d.headerColor) != 9 && len(d.headerColor) != 8 {
log.Fatal(fmt.Errorf("invalid color string length: %s", d.headerColor))
}
if d.headerColor[0] == '#' {
d.headerColor = d.headerColor[1:]
}
for i := 0; i < 4; i++ {
hex, err := strconv.ParseUint(d.headerColor[i*2:i*2+2], 16, 8)
if err != nil {
log.Fatal(fmt.Errorf("invalid color string: %s", d.headerColor))
}
color[i] = float64(hex) / 255.0
}
return color
}
// Apply CSS to GTK widgets
func applyCSS(css string) error {
// Create a CSS provider
provider, err := gtk.CssProviderNew()
if err != nil {
return err
}
err = provider.LoadFromData(css)
if err != nil {
return err
}
// Apply CSS to the default screen
screen, err := gdk.ScreenGetDefault()
if err != nil {
return err
}
gtk.AddProviderForScreen(screen, provider, gtk.STYLE_PROVIDER_PRIORITY_APPLICATION)
return nil
}