diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2019-05-24 12:30:31 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2019-05-24 12:30:32 -0400 |
commit | 38d7d33354ce4d13d70f707498c267b120bf2e5a (patch) | |
tree | 4b6d9ad3f3e3089b3999d5e10a759fe7f5c73206 /src/lib/elementary/efl_ui_grid.eo | |
parent | 00851ea53b7d87c2b5be244d4fba0af9253f8039 (diff) |
Rename Efl.Ui.Direction -> Efl.Ui.Layout_Orientation
Summary:
This clarifies a bit the whole Orientation vs. Direction confusion, at the
expense of longer names (Image_Orientation vs. Layout_Orientation).
Also, the interfaces are now adjectives (Orientable) and the enums have long
names (*_Orientation).
Pretty big patch, but no functional changes.
Relates to T7863
Test Plan:
Everything builds and passes tests.
Elementary_tests show same behavior, including the "inverted" widgets, which
are the only parts which received a bit of code changes.
Proof:
https://travis-ci.org/Enlightenment/efl/builds/536277282
Reviewers: zmike, bu5hm4n, cedric
Reviewed By: zmike
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D8946
Diffstat (limited to 'src/lib/elementary/efl_ui_grid.eo')
-rw-r--r-- | src/lib/elementary/efl_ui_grid.eo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_grid.eo b/src/lib/elementary/efl_ui_grid.eo index a07aa82031..f736f1b827 100644 --- a/src/lib/elementary/efl_ui_grid.eo +++ b/src/lib/elementary/efl_ui_grid.eo | |||
@@ -4,7 +4,7 @@ class @beta Efl.Ui.Grid extends Efl.Ui.Layout_Base implements | |||
4 | Efl.Ui.Scrollable_Interactive, | 4 | Efl.Ui.Scrollable_Interactive, |
5 | Efl.Ui.Scrollbar, | 5 | Efl.Ui.Scrollbar, |
6 | Efl.Pack_Linear, Efl.Pack_Layout, | 6 | Efl.Pack_Linear, Efl.Pack_Layout, |
7 | Efl.Ui.Direction, | 7 | Efl.Ui.Layout_Orientable, |
8 | Efl.Ui.Selectable, | 8 | Efl.Ui.Selectable, |
9 | Efl.Ui.Multi_Selectable, | 9 | Efl.Ui.Multi_Selectable, |
10 | Efl.Gfx.Arrangement | 10 | Efl.Gfx.Arrangement |
@@ -60,7 +60,7 @@ class @beta Efl.Ui.Grid extends Efl.Ui.Layout_Base implements | |||
60 | Efl.Container.content_iterate; | 60 | Efl.Container.content_iterate; |
61 | Efl.Container.content_count; | 61 | Efl.Container.content_count; |
62 | 62 | ||
63 | Efl.Ui.Direction.direction { get; set; } | 63 | Efl.Ui.Layout_Orientable.orientation { get; set; } |
64 | 64 | ||
65 | //Efl.Ui.Widget | 65 | //Efl.Ui.Widget |
66 | Efl.Ui.Widget.theme_apply; | 66 | Efl.Ui.Widget.theme_apply; |