diff options
author | Hosang Kim <hosang12.kim@samsung.com> | 2020-01-10 09:26:32 +0000 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2020-01-17 17:21:09 +0100 |
commit | fbb77e7d1c3116f4187370ec9406755f38cf44be (patch) | |
tree | 429f27f90728582e79b9f53248dcab66c2e4cfb2 /src/lib/efl | |
parent | bac185e8f3ed5a17d9c29e5daf2e2038b6734767 (diff) |
efl_ui_scrollbar: change scrollbar state when theme is reloaded.
Scrollbar visible state is not synchronized when theme is reloaded.
Differential Revision: https://phab.enlightenment.org/D10649
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_ui_scrollbar.eo | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_scrollbar.eo b/src/lib/efl/interfaces/efl_ui_scrollbar.eo index 5741df6b8f..3b4696f00b 100644 --- a/src/lib/efl/interfaces/efl_ui_scrollbar.eo +++ b/src/lib/efl/interfaces/efl_ui_scrollbar.eo | |||
@@ -60,6 +60,18 @@ interface Efl.Ui.Scrollbar | |||
60 | and $[1.0] (the bottom side of the thumb is touching the bottom edge of the widget).]] | 60 | and $[1.0] (the bottom side of the thumb is touching the bottom edge of the widget).]] |
61 | } | 61 | } |
62 | } | 62 | } |
63 | @property bar_visibility { | ||
64 | [[Current visibility state of the scrollbars. | ||
65 | This is useful in @Efl.Ui.Scrollbar_Mode.auto mode where EFL decides if the scrollbars | ||
66 | are shown or hidden. See also the @[.bar,show] and @[.bar,hide] events. | ||
67 | ]] | ||
68 | get { | ||
69 | } | ||
70 | values { | ||
71 | hbar: bool; [[Whether the horizontal scrollbar is currently visible.]] | ||
72 | vbar: bool; [[Whether the vertical scrollbar is currently visible.]] | ||
73 | } | ||
74 | } | ||
63 | bar_visibility_update @protected @beta{ | 75 | bar_visibility_update @protected @beta{ |
64 | [[Update bar visibility. | 76 | [[Update bar visibility. |
65 | 77 | ||