22 lines
399 B
Plaintext
22 lines
399 B
Plaintext
component EwwiiPanel () {
|
|
Box {
|
|
orinetation = "horizontal"
|
|
halign = "center"
|
|
class = "ewwii_panel"
|
|
height = config.panel_height
|
|
width = config.panel_width
|
|
|
|
Label {
|
|
widget_name = "clockwidg"
|
|
class = "clockwidg"
|
|
text = global("time_hhmm")
|
|
halign = "end"
|
|
}
|
|
Label {
|
|
widget_name = "datewidg"
|
|
class = "datewidg"
|
|
text = global("date_ddM")
|
|
halign = "end"
|
|
}
|
|
}
|
|
} |