Changeset View
Changeset View
Standalone View
Standalone View
src/lib/efl/interfaces/efl_ui_scrollable_interactive.eo
Show First 20 Lines • Show All 131 Lines • ▼ Show 20 Line(s) | 127 | [[Prevent the scrollable from being smaller than the minimum size of the content. | |||
---|---|---|---|---|---|
132 | that direction.]] | 132 | that direction.]] | ||
133 | set { | 133 | set { | ||
134 | } | 134 | } | ||
135 | values { | 135 | values { | ||
136 | w: bool; [[Whether to limit the minimum horizontal size]] | 136 | w: bool; [[Whether to limit the minimum horizontal size]] | ||
137 | h: bool; [[Whether to limit the minimum vertical size]] | 137 | h: bool; [[Whether to limit the minimum vertical size]] | ||
138 | } | 138 | } | ||
139 | } | 139 | } | ||
140 | @property step_size { | ||||
141 | [[Control the step size | ||||
142 | | ||||
143 | Use this call to set step size. | ||||
144 | This value is used when scroller scroll by arrow key event.]] | ||||
145 | set { | ||||
146 | } | ||||
147 | get { | ||||
148 | } | ||||
149 | values { | ||||
150 | step: Eina.Position2D; [[The step size in pixels]] | ||||
151 | } | ||||
152 | } | ||||
140 | scroll { | 153 | scroll { | ||
141 | [[Show a specific virtual region within the scroller content object. | 154 | [[Show a specific virtual region within the scroller content object. | ||
142 | 155 | | |||
143 | This will ensure all (or part if it does not fit) of the designated | 156 | This will ensure all (or part if it does not fit) of the designated | ||
144 | region in the virtual content object (0, 0 starting at the top-left of the | 157 | region in the virtual content object (0, 0 starting at the top-left of the | ||
145 | virtual content object) is shown within the scroller. This allows the scroller to "smoothly slide" | 158 | virtual content object) is shown within the scroller. This allows the scroller to "smoothly slide" | ||
146 | to this location (if configuration in general calls for transitions). It | 159 | to this location (if configuration in general calls for transitions). It | ||
147 | may not jump immediately to the new location and make take a while and | 160 | may not jump immediately to the new location and make take a while and | ||
Show All 9 Lines |