Added 3 sections of the panel

This commit is contained in:
Candifloss 2024-08-06 23:41:02 +05:30
parent 6629ee5b9d
commit ae93ac3e84
4 changed files with 40 additions and 2 deletions

View File

@ -1,10 +1,15 @@
(include "yuck/panel/panel_widg_right.yuck")
(include "yuck/panel/panel_widg_cen.yuck")
(include "yuck/panel/panel_widg_left.yuck")
(defwidget panel_widg []
(centerbox
:class "panel_widg"
:halign "fill"
:height 50
:width 200
:height 28
:width 1376
:active true
(children)
)
)

View File

@ -0,0 +1,11 @@
(defwidget panel_cen []
(box
:class "panel_cen"
:halign "center"
:height 28
:width 300
:active true
(children)
)
)

View File

@ -0,0 +1,11 @@
(defwidget panel_left []
(box
:class "panel_left"
:halign "start"
:height 28
:width 300
:active true
(children)
)
)

View File

@ -0,0 +1,11 @@
(defwidget panel_right []
(box
:class "panel_right"
:halign "end"
:height 28
:width 300
:active true
(children)
)
)