blob: 5788ee169d6be22f560bcd06ac61eeaacb39bedc (
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
|
// This creates a simple hello world window
package linuxstatus
import (
"go.wit.com/log"
"go.wit.com/gui/gadgets"
)
func New() *LinuxStatus {
if me != nil {
log.Warn("You have done New() twice. You can only do this once")
return me
}
me = &LinuxStatus {
hidden: true,
ready: false,
}
return me
}
func (ls *LinuxStatus) InitWindow() {
if ! ls.Initialized() {
log.Warn("LinuxStatus() is not initalized yet (no parent for the window?)")
return
}
if ls.window != nil {
log.Warn("You already have a window")
ls.ready = true
return
}
ls.ready = true
log.Warn("Creating the Window")
ls.window = gadgets.NewBasicWindow(ls.parent, "Linux OS Details")
}
|