Add about button, shift things around
This commit is contained in:
parent
ac258c51af
commit
aa14ec1579
1 changed files with 10 additions and 2 deletions
|
@ -18,6 +18,13 @@ class WelcomeWindow private constructor(parent: TApplication, flags: Int) :
|
||||||
)
|
)
|
||||||
addLabel("Welcome to", CENTERED + 13, CENTERED - 4)
|
addLabel("Welcome to", CENTERED + 13, CENTERED - 4)
|
||||||
addLabel("The ORG-NAME-WIP Secure Data Accessor", CENTERED, CENTERED - 3)
|
addLabel("The ORG-NAME-WIP Secure Data Accessor", CENTERED, CENTERED - 3)
|
||||||
|
addButton("Options", CENTERED + 13, CENTERED,
|
||||||
|
object : TAction() {
|
||||||
|
override fun DO() {
|
||||||
|
TODO("Create an options screen to open")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
addButton("Exit...", CENTERED + 28, CENTERED,
|
addButton("Exit...", CENTERED + 28, CENTERED,
|
||||||
object : TAction() {
|
object : TAction() {
|
||||||
|
@ -27,15 +34,16 @@ class WelcomeWindow private constructor(parent: TApplication, flags: Int) :
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
addButton("Options", CENTERED + 13, CENTERED,
|
addButton("About", CENTERED + 14, CENTERED + 2,
|
||||||
object : TAction() {
|
object : TAction() {
|
||||||
override fun DO() {
|
override fun DO() {
|
||||||
TODO("Create an options screen to open")
|
TODO("About page")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
//Keep in mind, whatever button/element is created last is always the one pre-selected on launch.
|
//Keep in mind, whatever button/element is created last is always the one pre-selected on launch.
|
||||||
|
// But every other element must be in order from top->bottom because weird.
|
||||||
addButton("Login", CENTERED, CENTERED,
|
addButton("Login", CENTERED, CENTERED,
|
||||||
object : TAction() {
|
object : TAction() {
|
||||||
override fun DO() {
|
override fun DO() {
|
||||||
|
|
Loading…
Reference in a new issue