Added 3 sections of the panel
This commit is contained in:
parent
6629ee5b9d
commit
ae93ac3e84
@ -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)
|
||||
)
|
||||
)
|
11
eww/yuck/panel/panel_widg_cen.yuck
Normal file
11
eww/yuck/panel/panel_widg_cen.yuck
Normal file
@ -0,0 +1,11 @@
|
||||
(defwidget panel_cen []
|
||||
(box
|
||||
:class "panel_cen"
|
||||
:halign "center"
|
||||
:height 28
|
||||
:width 300
|
||||
:active true
|
||||
|
||||
(children)
|
||||
)
|
||||
)
|
11
eww/yuck/panel/panel_widg_left.yuck
Normal file
11
eww/yuck/panel/panel_widg_left.yuck
Normal file
@ -0,0 +1,11 @@
|
||||
(defwidget panel_left []
|
||||
(box
|
||||
:class "panel_left"
|
||||
:halign "start"
|
||||
:height 28
|
||||
:width 300
|
||||
:active true
|
||||
|
||||
(children)
|
||||
)
|
||||
)
|
11
eww/yuck/panel/panel_widg_rightyuck
Normal file
11
eww/yuck/panel/panel_widg_rightyuck
Normal file
@ -0,0 +1,11 @@
|
||||
(defwidget panel_right []
|
||||
(box
|
||||
:class "panel_right"
|
||||
:halign "end"
|
||||
:height 28
|
||||
:width 300
|
||||
:active true
|
||||
|
||||
(children)
|
||||
)
|
||||
)
|
Loading…
Reference in New Issue
Block a user