diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-04-24 15:41:39 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-04-26 12:06:02 +0200 |
commit | 7aa9ea071a231896a545f496acf7f43ac695d811 (patch) | |
tree | e2ca2bb96eea56add0aa9f5b4b2a59c938d20d7b /src/lib/elementary/efl_ui_grid.eo | |
parent | f3b9f7f0d8aee9bee9d9b16221a0477e21e23712 (diff) |
efl_pack: split algin and padding property
the pack interface is a general interface for how we pack things into a
container. the align and padding property has less to nothing to do with
this. Hence this commit splits the two properties into theire own
interface.
fix T7825
Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Differential Revision: https://phab.enlightenment.org/D8699
Diffstat (limited to 'src/lib/elementary/efl_ui_grid.eo')
-rw-r--r-- | src/lib/elementary/efl_ui_grid.eo | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_grid.eo b/src/lib/elementary/efl_ui_grid.eo index 6c70f36c39..54de96d210 100644 --- a/src/lib/elementary/efl_ui_grid.eo +++ b/src/lib/elementary/efl_ui_grid.eo | |||
@@ -7,7 +7,8 @@ class @beta Efl.Ui.Grid extends Efl.Ui.Layout_Base implements | |||
7 | Efl.Ui.Direction, | 7 | Efl.Ui.Direction, |
8 | Efl.Ui.Clickable, | 8 | Efl.Ui.Clickable, |
9 | Efl.Ui.Selectable, | 9 | Efl.Ui.Selectable, |
10 | Efl.Ui.Multi_Selectable | 10 | Efl.Ui.Multi_Selectable, |
11 | Efl.Gfx.Arrangement | ||
11 | { | 12 | { |
12 | [[Simple grid widget with Pack interface.]] | 13 | [[Simple grid widget with Pack interface.]] |
13 | methods { | 14 | methods { |
@@ -84,8 +85,8 @@ class @beta Efl.Ui.Grid extends Efl.Ui.Layout_Base implements | |||
84 | Efl.Pack_Linear.pack_content_get; | 85 | Efl.Pack_Linear.pack_content_get; |
85 | Efl.Pack_Layout.layout_update; | 86 | Efl.Pack_Layout.layout_update; |
86 | Efl.Pack_Layout.layout_request; | 87 | Efl.Pack_Layout.layout_request; |
87 | Efl.Pack.pack_padding { get; set; } | 88 | Efl.Gfx.Arrangement.content_padding { get; set; } |
88 | Efl.Pack.pack_align { get; set; } | 89 | Efl.Gfx.Arrangement.content_align { get; set; } |
89 | 90 | ||
90 | //Efl.Ui.Scrollable | 91 | //Efl.Ui.Scrollable |
91 | Efl.Ui.Scrollable_Interactive.match_content { set; } | 92 | Efl.Ui.Scrollable_Interactive.match_content { set; } |