dialog skeleton

This commit is contained in:
2023-07-04 19:36:40 +02:00
parent 7874fc022f
commit 1451bd90c0
8 changed files with 162 additions and 51 deletions

View File

@@ -11,6 +11,7 @@ type ContextInterface interface {
type DomainInterface interface {
Init()
GetDialog() Dialog
}
type ScreenSettings struct {
@@ -18,15 +19,6 @@ type ScreenSettings struct {
Height int
}
type KContextScreen struct {
Type string
Value string
}
type KContext struct {
Screen KContextScreen
}
type Settings struct {
Name string
Screen *ScreenSettings